/* =========================================================================
   ComplianceScan.ai — Design System
   Premium compliance / AI-SaaS visual language
   ========================================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy:       #0F172A;
  --navy-900:   #0B1220;
  --navy-800:   #1E293B;
  --navy-700:   #334155;
  --navy-600:   #475569;
  --blue:       #2563EB;
  --blue-600:   #1D4ED8;
  --blue-400:   #60A5FA;
  --emerald:    #10B981;
  --emerald-600:#059669;
  --emerald-300:#6EE7B7;

  /* Neutrals */
  --white:      #FFFFFF;
  --bg:         #FFFFFF;
  --bg-soft:    #F8FAFC;
  --bg-soft-2:  #F1F5F9;
  --border:     #E6EAF0;
  --border-2:   #E2E8F0;
  --text:       #0F172A;
  --muted:      #5A6B85;
  --muted-2:    #8595AD;

  /* Effects */
  --radius:     14px;
  --radius-lg:  22px;
  --radius-sm:  10px;
  --radius-pill:999px;
  --shadow-xs:  0 1px 2px rgba(15,23,42,.06);
  --shadow-sm:  0 2px 8px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md:  0 12px 28px -10px rgba(15,23,42,.14), 0 4px 10px -4px rgba(15,23,42,.08);
  --shadow-lg:  0 30px 60px -22px rgba(15,23,42,.30), 0 10px 24px -12px rgba(15,23,42,.16);
  --shadow-blue:0 22px 50px -20px rgba(37,99,235,.50);
  --ring:       0 0 0 1px rgba(15,23,42,.06);

  --gradient-brand: linear-gradient(120deg, #2563EB 0%, #1D4ED8 55%, #10B981 130%);
  --gradient-navy:  linear-gradient(160deg, #0F172A 0%, #16233E 55%, #0B1220 100%);

  --maxw: 1200px;
  --gutter: 24px;

  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1320px; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-tight { padding-block: clamp(48px, 6vw, 80px); }
.bg-soft { background: var(--bg-soft); }
.bg-navy { background: var(--navy); color: #E7ECF5; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }

/* ---------- Typographic helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); white-space: nowrap;
}
.eyebrow.on-dark { color: var(--emerald-300); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 4px rgba(16,185,129,.18); }

.display { font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 800; line-height: 1.02; }
.h-section { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 700; }
.h-card { font-size: 1.22rem; font-weight: 700; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted); line-height: 1.6; }
.bg-navy .lead { color: #A9B6CC; }
.muted { color: var(--muted); }
.text-grad {
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 16px; }
.section-head .eyebrow { margin-bottom: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 15.5px;
  padding: 14px 24px; border-radius: var(--radius-pill); border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-2px); }
.btn-emerald { background: var(--emerald); color: #04261b; box-shadow: 0 18px 40px -18px rgba(16,185,129,.6); }
.btn-emerald:hover { background: var(--emerald-600); color:#fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.22); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-lg { padding: 17px 30px; font-size: 16.5px; }
.btn-text { color: var(--blue); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.btn-text svg { width: 16px; height: 16px; transition: transform .2s ease; }
.btn-text:hover svg { transform: translateX(4px); }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; padding: 6px 13px; border-radius: var(--radius-pill);
  background: var(--bg-soft-2); color: var(--navy-700); border: 1px solid var(--border-2);
}
.pill.blue  { background: rgba(37,99,235,.08);  color: var(--blue-600);    border-color: rgba(37,99,235,.16); }
.pill.green { background: rgba(16,185,129,.10); color: var(--emerald-600); border-color: rgba(16,185,129,.18); }
.pill.glass { background: rgba(255,255,255,.06); color:#CDD7EA; border-color: rgba(255,255,255,.14); }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .3s ease, border-color .3s ease;
}
.card.hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #D7E0EE; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(37,99,235,.08); color: var(--blue); margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon.green { background: rgba(16,185,129,.10); color: var(--emerald-600); }
.card-icon.navy  { background: var(--navy); color: #fff; }

/* program card */
.prog-card { display: flex; flex-direction: column; gap: 14px; }
.prog-card .iso-tag {
  align-self: flex-start; font-family: var(--font-head); font-weight: 700;
  font-size: 12px; letter-spacing: .04em; color: var(--blue-600);
  background: rgba(37,99,235,.07); padding: 5px 11px; border-radius: 8px;
}
.prog-card h3 { font-size: 1.12rem; }
.prog-card .meta { display: flex; gap: 16px; font-size: 13.5px; color: var(--muted); margin-top: auto; padding-top: 6px; }
.prog-card .meta span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.prog-card .meta svg { width: 16px; height: 16px; flex: none; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 22px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ---------- Stats ---------- */
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.1rem, 3.4vw, 3rem); line-height: 1; letter-spacing: -.03em; }
.stat .num .text-grad { display: inline; }
.stat .label { margin-top: 8px; font-size: 14.5px; color: var(--muted); font-weight: 600; }
.bg-navy .stat .label { color: #92A2BD; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; letter-spacing: -.02em; }
.logo .logo-mark { width: 44px; height: 44px; flex: none; }
.logo .logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo .logo-name { font-size: 19px; color: var(--navy); }
.logo .logo-name .ai { color: var(--emerald-600); }
.logo .logo-by { font-family: var(--font-body); font-weight: 600; font-size: 10.5px; letter-spacing: .005em; color: var(--muted); margin-top: 5px; }
.logo.on-dark .logo-name { color: #fff; }
.logo.on-dark .logo-name .ai { color: var(--emerald-300); }
.logo.on-dark .logo-by { color: #8294B0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-xs); }
.nav { display: flex; align-items: center; gap: 28px; height: 72px; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--navy-700);
  padding: 9px 13px; border-radius: 9px; transition: color .2s, background .2s; position: relative;
}
.nav-links a:hover { color: var(--navy); background: var(--bg-soft-2); }
.nav-links a.active { color: var(--blue-600); }

/* nav dropdown (Training → Lead Auditor courses) */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item.has-dd > a { display: inline-flex; align-items: center; gap: 5px; font-size: 15px; font-weight: 600; color: var(--navy-700); padding: 9px 13px; border-radius: 9px; transition: color .2s, background .2s; }
.nav-item.has-dd > a:hover { color: var(--navy); background: var(--bg-soft-2); }
.nav-item.has-dd > a.active { color: var(--blue-600); }
.dd-caret { width: 13px; height: 13px; transition: transform .25s ease; }
.nav-item.has-dd:hover .dd-caret { transform: rotate(180deg); }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); min-width: 480px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s ease, transform .2s ease; padding-top: 12px; z-index: 120; }
.nav-item.has-dd:hover .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dd-inner { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 16px; }
.dd-head { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); padding: 4px 10px 12px; }
.dd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dd-course { display: flex; flex-direction: column; gap: 1px; padding: 9px 12px; border-radius: 10px; transition: background .15s; }
.dd-course:hover { background: var(--bg-soft); }
.dd-iso { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--navy); letter-spacing: -.01em; }
.dd-fam { font-size: 12px; color: var(--muted); }
.dd-foot { margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--border); }
.dd-foot a { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; font-weight: 700; font-size: 13.5px; color: var(--blue-600); border-radius: 9px; transition: background .15s; }
.dd-foot a:hover { background: rgba(37,99,235,.06); }
.dd-foot svg { width: 16px; height: 16px; }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border-2); background:#fff; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; color: var(--navy); }
@media (max-width: 1080px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { margin-left: auto; }
}
/* mobile menu */
.mobile-menu { display: none; position: fixed; inset: 72px 0 0 0; z-index: 99; background: #fff; padding: 24px var(--gutter); overflow:auto; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; font-size: 18px; font-weight: 600; color: var(--navy); padding: 15px 6px; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { width: 100%; margin-top: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #97A6C0; padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer-col a { display: block; padding: 6px 0; color: #97A6C0; font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-about p { font-size: 14.5px; margin: 18px 0; max-width: 320px; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 56px; padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; background: rgba(255,255,255,.06); color:#B7C3DB; transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--blue); color: #fff; }
.footer-social svg { width: 17px; height: 17px; }

/* powered-by carbonscan */
.powered {
  display: inline-flex; align-self: flex-start; width: fit-content; align-items: center; gap: 9px; padding: 9px 15px; border-radius: 999px;
  background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.22); color: var(--emerald-600);
  font-size: 13px; font-weight: 600; line-height: 1; white-space: nowrap; transition: background .2s, transform .2s;
}
.powered:hover { background: rgba(16,185,129,.14); transform: translateY(-1px); }
.powered .leaf { width: 17px; height: 17px; flex-shrink: 0; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.shown { opacity: 1 !important; transform: none !important; transition: none !important; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Misc decorative ---------- */
.grid-bg {
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
}
.dot-bg {
  background-image: radial-gradient(rgba(15,23,42,.06) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
}
.glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none; }

/* page hero (interior) */
.page-hero { position: relative; overflow: hidden; background: var(--gradient-navy); color: #E7ECF5; padding-block: clamp(72px, 11vw, 132px) clamp(56px, 8vw, 96px); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .display { color: #fff; max-width: 14ch; }
.page-hero .lead { color: #A9B6CC; max-width: 60ch; margin-top: 20px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #8294B2; margin-bottom: 22px; white-space: nowrap; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }

/* checklist */
.checklist li { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; font-size: 15.5px; color: var(--navy-700); }
.checklist .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(16,185,129,.12); color: var(--emerald-600); display: grid; place-items: center; margin-top: 1px; }
.checklist .tick svg { width: 13px; height: 13px; }
.bg-navy .checklist li { color: #C3CEE0; }

/* tag list */
.taglist { display: flex; flex-wrap: wrap; gap: 10px; }

/* divider label */
.kicker-line { display:flex; align-items:center; gap:14px; color: var(--muted-2); font-size:13px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; }
.kicker-line::before, .kicker-line::after { content:""; height:1px; background: var(--border-2); flex:1; }

/* =========================================================================
   Course detail pages (Lead Auditor) + training course cards
   ========================================================================= */
.container.narrow { max-width: 860px; }

/* hero */
.course-hero-grid { display:grid; grid-template-columns: 1.25fr .85fr; gap: clamp(32px,5vw,64px); align-items:start; }
@media (max-width:980px){ .course-hero-grid { grid-template-columns:1fr; } }
.hero-facts { display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
.hero-fact { display:inline-flex; align-items:center; gap:8px; font-size:13.5px; font-weight:600; color:#DCE5F4; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); padding:9px 14px; border-radius:var(--radius-pill); }
.hero-fact svg { width:16px; height:16px; color:var(--emerald-300); }
.hero-cta { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }

/* glance card */
.glance-card { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.14); border-radius:var(--radius-lg); padding:28px; backdrop-filter:blur(8px); }
.glance-card h3 { color:#fff; font-size:1.15rem; margin-bottom:16px; }
.glance-list { display:flex; flex-direction:column; }
.glance-list .g-row { display:flex; justify-content:space-between; gap:16px; padding:11px 0; border-top:1px solid rgba(255,255,255,.08); }
.glance-list .g-row:first-child { border-top:none; }
.glance-list dt { font-size:13px; color:#8FA0BD; font-weight:600; flex:none; }
.glance-list dd { font-size:13.5px; color:#E7ECF5; font-weight:600; text-align:right; }

/* agenda */
.agenda { display:flex; flex-direction:column; gap:14px; max-width:920px; }
.agenda-row { display:grid; grid-template-columns:120px 1fr; gap:24px; align-items:start; padding:22px 26px; background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); box-shadow:var(--shadow-sm); }
@media (max-width:620px){ .agenda-row { grid-template-columns:1fr; gap:8px; } }
.agenda-day { font-family:var(--font-head); font-weight:800; font-size:1.05rem; color:var(--blue-600); }
.agenda-body { font-size:15px; color:var(--navy-700); line-height:1.6; }

/* career cards */
.career-num { width:38px; height:38px; border-radius:11px; display:grid; place-items:center; font-family:var(--font-head); font-weight:800; font-size:15px; color:var(--blue-600); background:rgba(37,99,235,.08); }

/* exam band */
.exam-band { display:grid; grid-template-columns:1.3fr .7fr; gap:clamp(28px,4vw,56px); align-items:center; background:var(--gradient-navy); border-radius:var(--radius-lg); padding:clamp(32px,4vw,52px); color:#E7ECF5; position:relative; overflow:hidden; }
@media (max-width:860px){ .exam-band { grid-template-columns:1fr; } }
.exam-band h2 { color:#fff; }
.exam-badges { display:flex; flex-direction:column; gap:12px; }
.accred-badge { display:inline-flex; align-items:center; gap:9px; font-family:var(--font-head); font-weight:700; font-size:13px; color:var(--navy); background:#fff; border:1px solid var(--border-2); padding:9px 14px; border-radius:11px; box-shadow:var(--shadow-xs); }
.accred-badge svg { width:17px; height:17px; color:var(--emerald-600); }
.accred-badge.lg { font-size:15px; padding:14px 20px; justify-content:center; }
.accred-badge.lg svg { width:20px; height:20px; }

/* training page: lead auditor course cards */
.la-card { display:flex; flex-direction:column; gap:0; padding:0; overflow:hidden; }
.la-card .la-card-top { padding:24px 24px 18px; }
.la-card .la-iso { display:inline-block; font-family:var(--font-head); font-weight:700; font-size:12.5px; letter-spacing:.03em; padding:5px 11px; border-radius:8px; }
.la-card .la-card-head { display:flex; align-items:center; justify-content:space-between; gap:10px; }
.la-card .la-role { font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--muted-2); white-space:nowrap; }
.la-card h3 { font-size:1.18rem; margin-top:14px; }
.la-card .la-fam { font-size:13.5px; color:var(--muted); margin-top:4px; }
.la-card .la-meta { display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.la-card .la-chip { display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:600; color:var(--navy-700); background:var(--bg-soft-2); border:1px solid var(--border-2); padding:5px 10px; border-radius:var(--radius-pill); }
.la-card .la-chip svg { width:13px; height:13px; color:var(--blue); }
.la-card .la-foot { margin-top:auto; display:flex; align-items:center; justify-content:space-between; padding:16px 24px; border-top:1px solid var(--border); background:var(--bg-soft); }
.la-card .la-foot .accr { font-size:12px; font-weight:600; color:var(--muted); }
.la-card .la-foot .go { display:inline-flex; align-items:center; gap:6px; font-weight:700; font-size:14px; color:var(--blue-600); }
.la-card .la-foot .go svg { width:16px; height:16px; transition:transform .2s ease; }
.la-card:hover .la-foot .go svg { transform:translateX(4px); }

/* =========================================================================
   Certification pages — benefits, process, AI readiness tool, certificate
   ========================================================================= */
.iaf-hero { width:124px; height:124px; margin:0 auto; background:#fff; border-radius:20px; display:grid; place-items:center; padding:16px; box-shadow:0 18px 40px -20px rgba(0,0,0,.5); }
.iaf-hero img { max-width:100%; max-height:100%; }

.bene-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; align-content:start; }
@media (max-width:560px){ .bene-grid { grid-template-columns:1fr; } }
.bene { display:flex; align-items:center; gap:12px; padding:18px; background:#fff; border:1px solid var(--border); border-radius:14px; box-shadow:var(--shadow-xs); font-weight:600; color:var(--navy-700); font-size:14.5px; }
.bene-ic { width:34px; height:34px; border-radius:9px; flex:none; display:grid; place-items:center; }
.bene-ic svg { width:17px; height:17px; }

/* 7-step process — connected timeline (landing-page style) */
.timeline7 { position:relative; display:grid; grid-template-columns:repeat(7,1fr); gap:14px; }
.timeline7::before { content:""; position:absolute; top:27px; left:6%; right:6%; height:3px; background:linear-gradient(90deg,var(--blue),var(--emerald)); border-radius:999px; z-index:0; }
@media (max-width:1024px){ .timeline7 { grid-template-columns:repeat(4,1fr); } .timeline7::before { display:none; } }
@media (max-width:680px){ .timeline7 { grid-template-columns:repeat(2,1fr); } }
@media (max-width:440px){ .timeline7 { grid-template-columns:1fr; } }
.timeline7 .tl-step { position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; text-align:center; }
.timeline7 .tl-node { width:54px; height:54px; border-radius:50%; background:#fff; border:3px solid var(--blue); color:var(--blue); display:grid; place-items:center; font-family:var(--font-head); font-weight:800; font-size:19px; box-shadow:0 6px 18px -7px rgba(37,99,235,.45); margin-bottom:18px; }
.timeline7 .tl-step:nth-child(n+5) .tl-node { border-color:var(--emerald); color:var(--emerald-600); box-shadow:0 6px 18px -7px rgba(16,185,129,.45); }
.timeline7 .tl-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:20px 18px; box-shadow:var(--shadow-sm); height:100%; width:100%; transition:transform .2s ease, box-shadow .25s ease; }
.timeline7 .tl-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.timeline7 .tl-card h3 { font-size:1rem; margin-bottom:8px; }
.timeline7 .tl-card p { font-size:13px; color:var(--muted); line-height:1.5; }
.timeline7 .ai-flag { display:inline-flex; align-items:center; gap:5px; margin-top:12px; font-size:10.5px; font-weight:700; color:var(--emerald-600); background:rgba(16,185,129,.10); padding:4px 9px; border-radius:999px; }
.timeline7 .ai-flag svg { width:11px; height:11px; }

/* per-standard graphic */
.cert-emblem { width:80px; height:80px; border-radius:20px; display:grid; place-items:center; color:#fff; margin-bottom:20px; box-shadow:0 18px 36px -14px rgba(15,23,42,.45); }
.cert-emblem svg { width:40px; height:40px; }
.cert-hero-motif { position:absolute; right:-20px; bottom:-50px; width:min(360px,40vw); height:min(360px,40vw); color:#fff; opacity:.07; z-index:1; pointer-events:none; }
.cert-hero-motif svg { width:100%; height:100%; stroke-width:.9; }
@media (max-width:980px){ .cert-hero-motif { width:230px; height:230px; right:-30px; bottom:-30px; } }

/* AI readiness tool */
.rd-tool { max-width:900px; margin:0 auto; background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); box-shadow:var(--shadow-md); overflow:hidden; }
.rd-intro { padding:clamp(28px,4vw,46px); text-align:center; }
.rd-intro-ic { width:58px; height:58px; border-radius:16px; margin:0 auto 18px; display:grid; place-items:center; background:rgba(37,99,235,.1); color:var(--blue); }
.rd-intro-ic svg { width:28px; height:28px; }
.rd-form { margin-top:26px; max-width:560px; margin-inline:auto; text-align:left; }
.rd-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; }
@media (max-width:560px){ .rd-row { grid-template-columns:1fr; } }
.rd-form input { width:100%; padding:13px 15px; border:1px solid var(--border-2); border-radius:11px; font-family:inherit; font-size:15px; color:var(--navy); background:var(--bg-soft); transition:border-color .2s, box-shadow .2s, background .2s; }
.rd-form input:focus { outline:none; border-color:var(--blue); box-shadow:0 0 0 3px rgba(37,99,235,.12); background:#fff; }
.rd-form input.err { border-color:#EF4444; box-shadow:0 0 0 3px rgba(239,68,68,.12); }
.rd-form .btn { width:100%; margin-top:6px; }
.rd-note { font-size:12px; color:var(--muted-2); margin-top:12px; text-align:center; }
.rd-panel { padding:clamp(24px,3vw,38px); }
.rd-panel-head { display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; padding-bottom:22px; border-bottom:1px solid var(--border); }
.rd-meter { text-align:center; flex:none; }
.rd-ring { width:96px; height:96px; border-radius:50%; background:conic-gradient(var(--bg-soft-2) 0%, var(--bg-soft-2) 0); display:grid; place-items:center; position:relative; transition:background .5s ease; }
.rd-ring::before { content:""; position:absolute; inset:10px; background:#fff; border-radius:50%; }
.rd-ring span { position:relative; z-index:1; font-family:var(--font-head); font-weight:800; font-size:22px; color:var(--navy); }
.rd-meter-lbl { font-size:12px; font-weight:700; margin-top:8px; color:var(--muted); }
.rd-list { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:22px; }
@media (max-width:680px){ .rd-list { grid-template-columns:1fr; } }
.rd-item { position:relative; display:flex; align-items:center; gap:12px; padding:13px 15px; border:1px solid var(--border); border-radius:12px; cursor:pointer; transition:background .15s, border-color .15s; }
.rd-item:hover { background:var(--bg-soft); border-color:#D7E0EE; }
.rd-item input { position:absolute; opacity:0; width:0; height:0; }
.rd-box { width:24px; height:24px; border-radius:7px; border:2px solid var(--border-2); flex:none; display:grid; place-items:center; color:#fff; transition:all .15s; }
.rd-box svg { width:14px; height:14px; opacity:0; transition:opacity .15s; }
.rd-item input:checked + .rd-box { background:var(--emerald); border-color:var(--emerald); }
.rd-item input:checked + .rd-box svg { opacity:1; }
.rd-txt { font-size:14px; color:var(--navy-700); font-weight:500; }
.rd-item input:checked ~ .rd-txt { color:var(--navy); }
.rd-actions { display:flex; align-items:center; gap:16px; margin-top:22px; flex-wrap:wrap; }
.rd-count { font-size:13px; color:var(--muted); font-weight:600; }
#rdRun.scanning { opacity:.9; pointer-events:none; }
.rd-result { margin-top:22px; padding:24px; border:1px solid var(--border); border-radius:var(--radius-lg); background:var(--bg-soft); }
.rd-result-head { display:flex; align-items:center; gap:20px; }
.rd-score { font-family:var(--font-head); font-weight:800; font-size:2.6rem; line-height:1; }
.rd-result-band { font-family:var(--font-head); font-weight:700; font-size:1.2rem; }
.rd-rec { margin-top:18px; }
.rd-rec-h { font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--muted-2); margin-bottom:8px; }
.rd-rec ul { display:grid; gap:6px; }
.rd-rec li { font-size:14px; color:var(--navy-700); padding-left:20px; position:relative; }
.rd-rec li::before { content:"\2192"; position:absolute; left:0; color:var(--blue); font-weight:700; }
.rd-cta-row { display:flex; gap:12px; flex-wrap:wrap; margin-top:20px; }

/* sample certificate */
.cert-doc { position:relative; background:#fff; border-radius:14px; box-shadow:var(--shadow-lg); overflow:hidden; }
.cert-ribbon { height:8px; background:var(--gradient-brand); }
.cert-inner { padding:clamp(20px,2.6vw,32px); border:2px solid var(--border-2); margin:14px; border-radius:10px; text-align:center; }
.cert-head { display:flex; align-items:flex-start; justify-content:space-between; text-align:left; gap:14px; }
.cert-brand { display:flex; align-items:center; gap:10px; font-family:var(--font-head); font-size:15px; line-height:1.2; }
.cert-mark svg { width:34px; height:34px; }
.cert-brand b { color:var(--navy); } .cert-brand .ai { color:var(--emerald-600); }
.cert-sub { font-size:10px; color:var(--muted); font-weight:600; letter-spacing:.04em; font-family:var(--font-body); }
.cert-no { font-size:10px; color:var(--muted); text-align:right; white-space:nowrap; } .cert-no b { color:var(--navy); font-size:12px; }
.cert-title { font-family:var(--font-head); font-weight:800; font-size:clamp(1.2rem,2.4vw,1.7rem); color:var(--navy); margin-top:16px; }
.cert-line { font-size:12.5px; color:var(--muted); margin-top:12px; }
.cert-org { font-family:var(--font-head); font-weight:700; font-size:1.05rem; color:var(--navy); margin-top:6px; }
.cert-std { font-family:var(--font-head); font-weight:800; font-size:1.3rem; margin-top:8px; }
.cert-scope { font-size:11.5px; color:var(--muted-2); margin-top:10px; max-width:46ch; margin-inline:auto; }
.cert-foot { display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-top:24px; text-align:left; }
.cert-dates { display:flex; flex-direction:column; gap:8px; font-size:10px; color:var(--muted); } .cert-dates b { color:var(--navy); font-size:12px; }
.cert-seal { display:flex; flex-direction:column; align-items:center; gap:6px; font-size:10px; color:var(--muted); text-align:center; line-height:1.3; }
.cert-seal img { width:58px; height:auto; }
.cert-verify { display:flex; align-items:center; gap:8px; font-size:10px; color:var(--muted); line-height:1.3; } .cert-verify b { color:var(--navy); }
.cert-qr .qr { display:grid; grid-template-columns:repeat(7,1fr); grid-auto-rows:1fr; width:42px; height:42px; gap:1px; padding:3px; background:#fff; border:1px solid var(--border-2); border-radius:6px; }
.cert-qr .qr i { background:transparent; } .cert-qr .qr i.on { background:var(--navy); }

/* AI agent section + readiness cockpit (certification pages) */
.ai-feats { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:24px; }
@media (max-width:560px){ .ai-feats { grid-template-columns:1fr; } }
.ai-feat { display:flex; gap:12px; align-items:flex-start; }
.ai-feat .ai-fic { width:38px; height:38px; border-radius:10px; flex:none; display:grid; place-items:center; background:rgba(96,165,250,.14); color:#93B4FF; }
.ai-feat .ai-fic svg { width:19px; height:19px; }
.ai-feat h4 { color:#fff; font-size:14.5px; font-family:var(--font-head); font-weight:700; }
.ai-feat p { color:#9FB0CC; font-size:12.5px; margin-top:3px; line-height:1.5; }
.aic { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.10); border-radius:22px; padding:24px; backdrop-filter:blur(8px); }
.aic-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.aic-head > span:first-child { font-size:11px; font-weight:700; letter-spacing:.12em; color:#8FA0BD; }
.aic-live { display:inline-flex; align-items:center; gap:6px; font-size:11px; color:#6EE7B7; font-weight:700; letter-spacing:.06em; }
.aic-live i { width:7px; height:7px; border-radius:50%; background:#10B981; box-shadow:0 0 0 4px rgba(16,185,129,.18); }
.aic-main { display:flex; align-items:center; gap:18px; }
.aic-ring { width:84px; height:84px; border-radius:50%; background:conic-gradient(#10B981 94%, rgba(255,255,255,.08) 0); display:grid; place-items:center; position:relative; flex:none; }
.aic-ring::before { content:""; position:absolute; inset:8px; background:#0B1220; border-radius:50%; }
.aic-ring b { position:relative; z-index:1; font-family:var(--font-head); font-size:20px; color:#fff; }
.aic-ready { font-family:var(--font-head); font-weight:700; color:#fff; font-size:18px; }
.aic-upd { color:#8FA0BD; font-size:12.5px; margin-top:2px; }
.aic-std { display:flex; align-items:center; justify-content:space-between; margin-top:18px; padding:14px 16px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:14px; }
.aic-std > span:first-child { color:#CDD7EA; font-family:var(--font-head); font-weight:700; font-size:14px; }
.aic-badge { font-size:12px; font-weight:700; color:#6EE7B7; background:rgba(16,185,129,.12); border:1px solid rgba(16,185,129,.25); padding:4px 12px; border-radius:999px; }
.aic-gap { margin-top:14px; padding:16px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:14px; }
.aic-gap-h { display:flex; align-items:center; gap:8px; color:#93B4FF; font-size:12px; font-weight:700; margin-bottom:12px; }
.aic-gap-h svg { width:15px; height:15px; }
.aic-chips { display:flex; flex-wrap:wrap; gap:8px; }
.aic-chip { display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:600; color:#CDD7EA; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.09); padding:6px 11px; border-radius:999px; }
.aic-chip svg { width:12px; height:12px; }
.aic-chip.wait { color:#F4C77B; }

/* animated world map (about page) */
.about-map { position:relative; width:100%; aspect-ratio:4/3; min-height:320px; border-radius:20px; overflow:hidden; border:1px solid rgba(255,255,255,.08); background:radial-gradient(circle at 62% 42%, rgba(37,99,235,.16), transparent 62%); }
.am-dots { position:absolute; inset:0; }
.am-dot { position:absolute; width:3px; height:3px; border-radius:50%; background:rgba(148,178,224,.26); transform:translate(-50%,-50%); }
.am-arcs { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; }
.am-arc { fill:none; stroke:url(#amg); stroke-width:.7; stroke-dasharray:4 6; opacity:.55; animation:am-flow 2.6s linear infinite; }
@keyframes am-flow { to { stroke-dashoffset:-20; } }
.am-pin { position:absolute; transform:translate(-50%,-50%); z-index:3; }
.am-core { display:block; width:11px; height:11px; border-radius:50%; background:var(--emerald); box-shadow:0 0 0 4px rgba(16,185,129,.22), 0 0 12px rgba(16,185,129,.8); }
.am-pin.hq .am-core { width:14px; height:14px; background:#fff; box-shadow:0 0 0 5px rgba(96,165,250,.4), 0 0 18px rgba(96,165,250,.95); }
.am-pin::after { content:""; position:absolute; inset:0; margin:auto; width:11px; height:11px; border-radius:50%; border:2px solid rgba(16,185,129,.5); animation:am-ping 2.6s ease-out infinite; }
.am-pin.hq::after { border-color:rgba(96,165,250,.65); }
@keyframes am-ping { 0%{transform:scale(1);opacity:.85;} 100%{transform:scale(3.6);opacity:0;} }
.am-lbl { position:absolute; left:50%; top:-24px; transform:translateX(-50%); white-space:nowrap; font-size:10.5px; font-weight:700; color:#fff; background:rgba(15,23,42,.82); padding:2px 8px; border-radius:6px; border:1px solid rgba(255,255,255,.14); opacity:0; transition:opacity .2s; }
.am-pin:hover .am-lbl, .am-pin.hq .am-lbl { opacity:1; }
@media (prefers-reduced-motion: reduce){ .am-arc, .am-pin::after { animation:none; } }

/* site-wide WhatsApp button */
.wa-fab { position:fixed; right:22px; bottom:22px; z-index:300; width:56px; height:56px; border-radius:50%; background:#25D366; color:#fff; display:grid; place-items:center; box-shadow:0 12px 28px -8px rgba(37,211,102,.6); transition:transform .2s ease, box-shadow .2s ease; }
.wa-fab:hover { transform:translateY(-3px) scale(1.05); box-shadow:0 16px 34px -8px rgba(37,211,102,.7); }
.wa-fab svg { width:30px; height:30px; }
.wa-fab::before { content:""; position:absolute; inset:0; border-radius:50%; border:2px solid rgba(37,211,102,.5); animation:am-ping 2.6s ease-out infinite; }
@media (prefers-reduced-motion: reduce){ .wa-fab::before { animation:none; } }

/* about page — animated four-pillar cards */
#pillars .card { position:relative; overflow:hidden; transition:transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease; }
#pillars .card > * { position:relative; z-index:1; }
#pillars .card::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background:var(--gradient-brand); transform:scaleX(0); transform-origin:left; transition:transform .45s ease; z-index:2; }
#pillars .card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:#D7E0EE; }
#pillars .card:hover::before { transform:scaleX(1); }
#pillars .card::after { content:""; position:absolute; inset:0; z-index:0; background:linear-gradient(120deg, transparent 32%, rgba(96,165,250,.14) 50%, transparent 68%); transform:translateX(-120%); transition:transform .8s ease; pointer-events:none; }
#pillars .card:hover::after { transform:translateX(120%); }
#pillars .card-icon { transition:transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease; animation:pillar-float 4.5s ease-in-out infinite; }
#pillars .card:nth-child(2) .card-icon { animation-delay:.6s; }
#pillars .card:nth-child(3) .card-icon { animation-delay:1.2s; }
#pillars .card:nth-child(4) .card-icon { animation-delay:1.8s; }
#pillars .card:hover .card-icon { transform:scale(1.14) rotate(-6deg); box-shadow:0 14px 26px -10px rgba(37,99,235,.5); }
#pillars .card-icon svg { transition:transform .4s ease; }
#pillars .card:hover .card-icon svg { transform:scale(1.08); }
#pillars .card h3 { transition:color .25s ease; }
#pillars .card:hover h3 { color:var(--blue-600); }
@keyframes pillar-float { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-7px); } }
@media (prefers-reduced-motion: reduce){ #pillars .card-icon { animation:none; } #pillars .card::after { display:none; } }

/* ---- blog thumbnails (graphic) ---- */
.post .thumb { height:172px; position:relative; overflow:hidden; }
.post .thumb-ic { position:absolute; right:-12px; bottom:-18px; width:128px; height:128px; color:#fff; opacity:.2; pointer-events:none; }
.post .thumb-ic svg { width:100%; height:100%; }
.post .thumb .iso { position:absolute; left:22px; bottom:18px; font-family:var(--font-head); font-weight:800; font-size:1.55rem; color:#fff; letter-spacing:-.02em; z-index:2; }
.post .thumb .tcat { position:absolute; top:16px; left:16px; font-size:11px; font-weight:700; letter-spacing:.04em; color:#fff; background:rgba(255,255,255,.18); padding:5px 11px; border-radius:999px; backdrop-filter:blur(4px); z-index:2; }
.post .thumb .grid-bg { position:absolute; inset:0; opacity:.4; }
.post:hover .thumb-ic { transform:scale(1.06) translateY(-4px); transition:transform .4s ease; }

/* ---- featured post graphic ---- */
.feat .fthumb .fthumb-ic { position:absolute; right:-20px; bottom:-30px; width:230px; height:230px; color:#fff; opacity:.12; }
.feat .fthumb .fthumb-ic svg { width:100%; height:100%; }

/* ---- lead-capture modal ---- */
.blog-modal { position:fixed; inset:0; z-index:400; display:none; align-items:center; justify-content:center; padding:20px; background:rgba(11,18,32,.6); backdrop-filter:blur(4px); }
.blog-modal.open { display:flex; animation:bm-fade .2s ease; }
@keyframes bm-fade { from{ opacity:0; } to{ opacity:1; } }
.bm-card { position:relative; width:100%; max-width:440px; background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); padding:36px 34px; text-align:center; animation:bm-pop .25s cubic-bezier(.2,.7,.2,1); }
@keyframes bm-pop { from{ transform:translateY(14px) scale(.97); opacity:0; } to{ transform:none; opacity:1; } }
.bm-x { position:absolute; top:14px; right:16px; width:32px; height:32px; border-radius:9px; border:none; background:var(--bg-soft-2); color:var(--muted); font-size:20px; line-height:1; cursor:pointer; transition:background .15s; }
.bm-x:hover { background:var(--border-2); color:var(--navy); }
.bm-ic { width:56px; height:56px; border-radius:15px; margin:0 auto 16px; display:grid; place-items:center; background:rgba(37,99,235,.1); color:var(--blue); }
.bm-ic svg { width:28px; height:28px; }
.bm-card h3 { font-size:1.4rem; }
.bm-card > p { color:var(--muted); font-size:14.5px; margin-top:10px; }
.bm-form { display:flex; flex-direction:column; gap:11px; margin-top:22px; text-align:left; }
.bm-form input { width:100%; padding:13px 15px; border:1px solid var(--border-2); border-radius:11px; font-family:inherit; font-size:15px; color:var(--navy); background:var(--bg-soft); transition:border-color .2s, box-shadow .2s; }
.bm-form input:focus { outline:none; border-color:var(--blue); box-shadow:0 0 0 3px rgba(37,99,235,.12); background:#fff; }
.bm-form input.err { border-color:#EF4444; box-shadow:0 0 0 3px rgba(239,68,68,.12); }
.bm-form .btn { width:100%; margin-top:4px; }
.bm-skip { background:none; border:none; color:var(--muted); font-size:13.5px; font-weight:600; cursor:pointer; padding:6px; }
.bm-skip:hover { color:var(--navy); }

/* ---- single article page ---- */
.post-hero { position:relative; overflow:hidden; background:var(--gradient-navy); color:#E7ECF5; padding-block:clamp(64px,9vw,104px) clamp(40px,6vw,64px); }
.post-hero-ic { position:absolute; right:-30px; top:50%; transform:translateY(-50%); width:min(340px,38vw); height:min(340px,38vw); color:#fff; opacity:.08; z-index:1; }
.post-hero-ic svg { width:100%; height:100%; stroke-width:.9; }
.post-meta { display:flex; align-items:center; gap:12px; margin-top:20px; font-size:13.5px; color:#9FB0CC; font-weight:600; }
.post-meta .dotsep { width:4px; height:4px; border-radius:50%; background:#5A6B85; }
.article > div, .article-lead { max-width:720px; }
.article-lead { font-size:clamp(1.1rem,1.6vw,1.32rem); color:var(--navy-700); line-height:1.7; font-weight:500; }
.article > div { margin-top:32px; }
.article h2 { font-size:1.5rem; margin-bottom:12px; }
.article p { font-size:16.5px; color:var(--navy-700); line-height:1.75; }
.article-cta { display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; margin-top:44px; padding:28px 30px; background:var(--bg-soft); border:1px solid var(--border); border-radius:var(--radius-lg); max-width:720px; }

/* ---- footer CTA band ---- */
.footer-cta { position:relative; overflow:hidden; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; background:var(--gradient-brand); border-radius:var(--radius-lg); padding:clamp(28px,4vw,42px); margin-bottom:56px; }
.footer-cta .fc-left { position:relative; z-index:2; }
.footer-cta .fc-left h3 { color:#fff; font-size:clamp(1.4rem,2.4vw,1.95rem); }
.footer-cta .fc-left p { color:rgba(255,255,255,.92); font-size:15px; margin-top:8px; max-width:48ch; }
.footer-cta .fc-act { display:flex; gap:12px; flex-wrap:wrap; position:relative; z-index:2; }
.footer-cta .fc-act .btn-primary { background:#fff; color:var(--blue-600); }
.footer-cta .fc-act .btn-primary:hover { background:#fff; transform:translateY(-2px); }
.footer-cta .fc-act .btn-ghost.on-dark { border-color:rgba(255,255,255,.55); color:#fff; }
.footer-cta .fc-act .btn-ghost.on-dark:hover { background:rgba(255,255,255,.12); border-color:#fff; }

/* footer legal / company address */
.footer-legal { font-style:normal; font-size:13px; color:#8A98B5; line-height:1.7; margin:16px 0 4px; }
.footer-legal strong { color:#C7D2E4; font-weight:700; }

/* HRDF page: claimable banner + program groups */
.hrdf-banner { display:flex; align-items:center; gap:18px; background:#fff; border:1px solid var(--border); border-radius:18px; padding:18px 24px; box-shadow:var(--shadow-sm); margin-bottom:34px; }
@media (max-width:560px){ .hrdf-banner { flex-direction:column; text-align:center; } }
.hrdf-banner .hb-logo { width:78px; height:78px; flex:none; display:grid; place-items:center; background:#fff; border:1px solid var(--border-2); border-radius:14px; padding:9px; }
.hrdf-banner .hb-logo img { max-width:100%; max-height:100%; object-fit:contain; }
.hrdf-banner b { font-family:var(--font-head); font-size:1.05rem; color:var(--navy); }
.hrdf-banner p { font-size:14px; color:var(--muted); margin-top:3px; }
.pp-group { margin-bottom:32px; }
.pp-group:last-child { margin-bottom:0; }
.pp-group-h { margin-bottom:14px; }
.pp-group-h b { font-family:var(--font-head); font-size:1.12rem; color:var(--navy); display:block; }
.pp-group-h span { font-size:13px; color:var(--muted); }

/* cta band */
.cta-band { position:relative; overflow:hidden; background:var(--gradient-navy); border-radius:var(--radius-lg); padding:clamp(36px,5vw,64px); }

/* delivery format cards (shared — used on training + course pages) */
.fmt-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
@media (max-width:820px){ .fmt-grid{ grid-template-columns:1fr 1fr; } }
.fmt { text-align:center; padding:28px 20px; }
.fmt .fic { width:54px; height:54px; border-radius:15px; display:grid; place-items:center; margin:0 auto 16px; background:rgba(37,99,235,.08); color:var(--blue); }
.fmt .fic svg { width:27px; height:27px; }
.fmt h4 { font-size:1.05rem; }
.fmt p { font-size:13.5px; color:var(--muted); margin-top:6px; }

/* accreditation logos (real brand marks) */
.accr-strip { display:flex; flex-wrap:wrap; gap:16px; justify-content:center; align-items:stretch; }
.accr-card { flex:1 1 200px; max-width:280px; display:grid; place-items:center; background:#fff; border:1px solid var(--border); border-radius:14px; padding:16px 20px; box-shadow:var(--shadow-xs); min-height:112px; }
.accr-card .accr-img { max-height:70px; max-width:190px; width:auto; height:auto; object-fit:contain; display:block; }
.accr-strip.on-dark .accr-card { background:#fff; border-color:rgba(255,255,255,.5); }
.exam-badges .accr-card { width:100%; max-width:none; min-height:76px; padding:14px 22px; }

/* trainers */
.trainer-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:900px){ .trainer-grid{ grid-template-columns:1fr; } }
.trainer-card { display:flex; gap:16px; align-items:flex-start; }
.trainer-badge { width:52px; height:52px; border-radius:14px; flex:none; display:grid; place-items:center; background:var(--gradient-brand); color:#fff; }
.trainer-badge svg { width:25px; height:25px; }

/* two-level training dropdown */
.dropdown.wide { min-width:720px; }
.dropdown.wide .dd-inner { padding:0; overflow:hidden; }
.dd-2pane { display:grid; grid-template-columns:236px 1fr; }
.dd-cats { padding:14px; background:var(--bg-soft); border-right:1px solid var(--border); display:flex; flex-direction:column; gap:4px; }
.dd-cat { display:flex; align-items:center; gap:11px; text-align:left; padding:11px 13px; border-radius:12px; background:transparent; border:1px solid transparent; transition:background .15s, border-color .15s; }
.dd-cat:hover, .dd-cat.active { background:#fff; border-color:var(--border); box-shadow:var(--shadow-xs); }
.dd-cat .dd-cat-ic { width:34px; height:34px; border-radius:9px; flex:none; display:grid; place-items:center; background:rgba(37,99,235,.08); color:var(--blue); }
.dd-cat .dd-cat-ic svg { width:18px; height:18px; }
.dd-cat .dd-cat-tx { flex:1; min-width:0; }
.dd-cat-label { font-family:var(--font-head); font-weight:700; font-size:14px; color:var(--navy); display:block; }
.dd-cat-desc { font-size:11px; color:var(--muted); display:block; margin-top:1px; }
.dd-cat .dd-cat-go { width:15px; height:15px; color:var(--muted-2); flex:none; transition:transform .15s; }
.dd-cat.active .dd-cat-go { color:var(--blue); transform:translateX(2px); }
.dd-stage { padding:16px; }
.dd-panel { display:none; }
.dd-panel.active { display:block; }


/* ===== Landing-page additions (merged from new design) ===== */
.prog-card .card-icon { margin-bottom: 0; }

.prog-card .prog-desc { font-size: 14px; color: var(--muted); line-height: 1.5; margin-top: -2px; }

.prog-card .prog-carbon { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; margin-top: auto; font-size: 11.5px; font-weight: 700; color: var(--emerald-600); background: rgba(16,185,129,.09); border: 1px solid rgba(16,185,129,.2); padding: 5px 10px; border-radius: 999px; white-space: nowrap; }

.prog-card .prog-carbon svg { width: 13px; height: 13px; }

/* accreditation bar (CQI/IRCA, Exemplar Global) */

.accred-bar { display: flex; align-items: center; gap: 20px 28px; flex-wrap: wrap; padding: 20px 26px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 18px; }

.accred-bar .lbl { font-size: 12.5px; font-weight: 700; letter-spacing: .05em; color: var(--muted); text-transform: uppercase; line-height: 1.5; flex: 0 0 auto; max-width: 230px; }

.accred-logos { display: flex; align-items: stretch; gap: 16px; flex: 1 1 360px; }

.accred-chip { flex: 1 1 0; min-width: 170px; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px 28px; box-shadow: var(--shadow-xs); }

.accred-chip img { height: 46px; width: auto; max-width: 100%; object-fit: contain; display: block; }

.accred-chip.seal img { height: 58px; }

/* ---------- Promo ribbon ---------- */

.promo-bar { position: relative; z-index: 101; background: var(--gradient-brand); color: #fff; }

.promo-bar.hidden { display: none; }

.promo-inner { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 9px 46px; font-size: 13.5px; font-weight: 600; text-align: center; flex-wrap: wrap; }

.promo-inner .np { font-size: 10.5px; font-weight: 800; letter-spacing: .1em; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.32); padding: 3px 9px; border-radius: 999px; }

.promo-inner .pmsg { display: inline-flex; align-items: center; gap: 8px; }

.promo-inner .pmsg svg { width: 16px; height: 16px; }

.promo-inner .pb-link { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: var(--blue-600); font-weight: 700; padding: 6px 15px; border-radius: 999px; font-size: 13px; cursor: pointer; border: none; font-family: inherit; transition: transform .2s, box-shadow .2s; }

.promo-inner .pb-link:hover { transform: translateY(-1px); box-shadow: 0 8px 18px -6px rgba(0,0,0,.45); }

.promo-inner .pb-link svg { width: 15px; height: 15px; }

.promo-close { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; border: none; background: rgba(255,255,255,.14); border-radius: 7px; color: #fff; display: grid; place-items: center; cursor: pointer; }

.promo-close:hover { background: rgba(255,255,255,.26); }

.promo-close svg { width: 15px; height: 15px; }

/* ---------- Lead-capture modal ---------- */

.modal-backdrop { position: fixed; inset: 0; background: rgba(11,18,32,.62); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity .25s ease; }

.modal-backdrop.open { display: flex; opacity: 1; }

.modal { background: #fff; border-radius: 22px; max-width: 880px; width: 100%; overflow: hidden; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: .82fr 1fr; transform: translateY(14px) scale(.98); transition: transform .3s cubic-bezier(.2,.7,.2,1); max-height: 92vh; }

.modal-backdrop.open .modal { transform: none; }

@media (max-width: 720px) { .modal { grid-template-columns: 1fr; } .modal-aside { display: none; } }

.modal-aside { background: var(--gradient-navy); color: #fff; padding: 34px; position: relative; overflow: hidden; }

.modal-aside .glow { width: 320px; height: 320px; background: #1E40AF; top: -120px; right: -100px; opacity: .4; }

.modal-aside .ma-in { position: relative; z-index: 2; }

.book { width: 132px; aspect-ratio: 3/4; border-radius: 6px 12px 12px 6px; background: linear-gradient(150deg,#1D4ED8,#0F172A); box-shadow: 0 24px 44px -16px rgba(0,0,0,.6); border-left: 5px solid rgba(255,255,255,.25); padding: 18px 14px; display: flex; flex-direction: column; gap: 7px; margin-bottom: 26px; }

.book .bk-tag { font-size: 9px; font-weight: 800; letter-spacing: .1em; color: var(--emerald-300); }

.book .bk-title { font-family: var(--font-head); font-weight: 800; font-size: 15px; line-height: 1.1; color: #fff; }

.book .bk-sub { font-size: 9.5px; color: #A9B6CC; margin-top: auto; }

.modal-aside h3 { color: #fff; font-size: 1.3rem; }

.modal-aside .ma-list { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

.modal-aside .ma-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: #C3CEE0; }

.modal-aside .ma-list .tk { flex: none; width: 18px; height: 18px; border-radius: 50%; background: rgba(16,185,129,.18); color: var(--emerald-300); display: grid; place-items: center; margin-top: 1px; }

.modal-aside .ma-list .tk svg { width: 11px; height: 11px; }

.modal-body { padding: 36px; position: relative; overflow: auto; }

.modal-close { position: absolute; right: 16px; top: 16px; width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--border-2); background: #fff; display: grid; place-items: center; cursor: pointer; color: var(--navy-700); z-index: 3; }

.modal-close:hover { background: var(--bg-soft-2); }

.modal-close svg { width: 18px; height: 18px; }

.modal-body .ff { margin-bottom: 15px; }

.modal-body .ff.row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 0; }

@media (max-width: 460px) { .modal-body .ff.row { grid-template-columns: 1fr; gap: 0; } .modal-body .ff.row .ff { margin-bottom: 15px; } }

.modal-body label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-700); margin-bottom: 6px; }

.modal-body input { width: 100%; padding: 12px 14px; border: 1px solid var(--border-2); border-radius: 10px; font-family: inherit; font-size: 15px; color: var(--navy); transition: border-color .2s, box-shadow .2s; }

.modal-body input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }

.modal-success { display: none; text-align: center; padding: 20px 0; }

.modal-success.show { display: block; }

.modal-success .ms-ic { width: 64px; height: 64px; border-radius: 50%; background: rgba(16,185,129,.12); color: var(--emerald-600); display: grid; place-items: center; margin: 0 auto 18px; }

.modal-success .ms-ic svg { width: 32px; height: 32px; }

/* selectable chips inside modal */

.chip-select { display: flex; flex-wrap: wrap; gap: 8px; }

.chip-check { position: relative; display: inline-flex; }

.chip-check input { position: absolute; opacity: 0; width: 0; height: 0; }

.chip-check > span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border: 1px solid var(--border-2); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--navy-700); cursor: pointer; transition: background .15s, border-color .15s, color .15s; user-select: none; white-space: nowrap; }

.chip-check input:checked + span { background: rgba(37,99,235,.08); border-color: var(--blue); color: var(--blue-600); }

.chip-check input:focus-visible + span { box-shadow: 0 0 0 3px rgba(37,99,235,.18); }

.chip-check .ck { width: 15px; height: 15px; border-radius: 5px; border: 1.5px solid var(--border-2); display: grid; place-items: center; transition: background .15s, border-color .15s; flex: none; }

.chip-check input:checked + span .ck { background: var(--blue); border-color: var(--blue); }

.chip-check .ck svg { width: 10px; height: 10px; color: #fff; opacity: 0; transition: opacity .15s; }

.chip-check input:checked + span .ck svg { opacity: 1; }

.intent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.chip-check.big { display: block; }

.chip-check.big > span { justify-content: center; padding: 12px 14px; font-size: 14px; }

/* ===== interactive certification stepper ===== */

.timeline-hint { display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:30px; }

.timeline-hint .pill-14 { display:inline-flex; align-items:center; gap:8px; background:var(--navy); color:#fff; font-weight:700; font-size:13.5px; padding:9px 16px; border-radius:999px; }

.timeline-hint .pill-14 svg { width:16px; height:16px; color:var(--emerald-300); }

.cert-tabs { display:flex; position:relative; margin:8px 0 30px; overflow-x:auto; overflow-y:hidden; scrollbar-width:none; padding:4px 0 12px; }

.cert-tabs::-webkit-scrollbar { display:none; }

.cert-tabs::before { content:""; position:absolute; top:26px; left:8%; right:8%; height:2px; background:var(--border-2); z-index:0; }

.cert-tab { flex:1 0 130px; display:flex; flex-direction:column; align-items:center; gap:9px; cursor:pointer; position:relative; z-index:1; padding:0 6px; text-align:center; background:none; border:none; font-family:inherit; }

.cert-tab .node { width:52px; height:52px; border-radius:50%; background:#fff; border:2px solid var(--border-2); display:grid; place-items:center; font-family:var(--font-head); font-weight:800; font-size:18px; color:var(--muted); transition:all .25s; }

.cert-tab .node svg { width:22px; height:22px; }

.cert-tab .tl { font-size:13px; font-weight:700; color:var(--navy-700); line-height:1.2; white-space:nowrap; }

.cert-tab .td { font-size:11px; color:var(--muted); font-weight:600; white-space:nowrap; }

.cert-tab.done .node { border-color:var(--emerald); background:var(--emerald); color:#fff; }

.cert-tab.active .node { border-color:var(--blue); background:var(--blue); color:#fff; box-shadow:0 10px 22px -6px rgba(37,99,235,.55); transform:scale(1.1); }

.cert-tab.active .tl { color:var(--blue-600); }

.cert-detail { display:grid; grid-template-columns:1fr 1.12fr; gap:38px; align-items:center; background:#fff; border:1px solid var(--border); border-radius:24px; padding:34px; box-shadow:var(--shadow-md); }

.cert-detail .day-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(37,99,235,.08); color:var(--blue-600); font-weight:700; font-size:13px; padding:6px 13px; border-radius:999px; }

.cert-detail .day-badge.ongoing { background:rgba(16,185,129,.10); color:var(--emerald-600); }

.cert-detail h3 { font-size:1.55rem; margin:14px 0 10px; }

.cert-detail .d-desc { color:var(--muted); font-size:15.5px; line-height:1.6; }

.ai-callout { margin-top:18px; padding:14px 16px; background:linear-gradient(120deg,rgba(37,99,235,.07),rgba(16,185,129,.07)); border:1px solid rgba(37,99,235,.16); border-radius:14px; display:flex; gap:12px; align-items:flex-start; }

.ai-callout .ic { width:34px; height:34px; border-radius:10px; flex:none; background:var(--gradient-brand); display:grid; place-items:center; }

.ai-callout .ic svg { width:18px; height:18px; color:#fff; }

.ai-callout .t { font-size:13.5px; color:var(--navy-700); line-height:1.5; }

.ai-callout .t b { color:var(--navy); display:block; font-family:var(--font-head); font-size:12px; letter-spacing:.04em; text-transform:uppercase; margin-bottom:2px; }

.act-list { margin-top:16px; display:flex; flex-direction:column; gap:9px; }

.act-list li { display:flex; gap:10px; align-items:flex-start; font-size:14px; color:var(--navy-700); }

.act-list .tk { flex:none; width:20px; height:20px; border-radius:50%; background:rgba(16,185,129,.12); color:var(--emerald-600); display:grid; place-items:center; margin-top:1px; }

.act-list .tk svg { width:12px; height:12px; }

.cert-nav { display:flex; gap:10px; margin-top:24px; }

.cert-nav button { display:inline-flex; align-items:center; gap:6px; font-family:var(--font-body); font-weight:700; font-size:14px; padding:10px 16px; border-radius:999px; border:1px solid var(--border-2); background:#fff; color:var(--navy); cursor:pointer; transition:all .2s; }

.cert-nav button:hover:not(:disabled) { border-color:var(--navy); }

.cert-nav button:disabled { opacity:.4; cursor:default; }

.cert-nav button.next { background:var(--blue); color:#fff; border-color:var(--blue); }

.cert-nav button svg { width:16px; height:16px; }

/* SaaS screen mock */

.saas { background:linear-gradient(168deg,#15233F,#0D192F); border:1px solid rgba(255,255,255,.10); border-radius:18px; padding:18px; box-shadow:var(--shadow-lg); }

.saas-bar { display:flex; align-items:center; gap:7px; padding-bottom:13px; border-bottom:1px solid rgba(255,255,255,.08); margin-bottom:14px; }

.saas-bar .d { width:9px; height:9px; border-radius:50%; }

.saas-bar .u { margin-left:8px; font-size:11px; color:#7E90B0; font-weight:600; }

.saas-bar .live { margin-left:auto; display:inline-flex; align-items:center; gap:6px; font-size:10px; font-weight:700; color:var(--emerald-300); }

.saas-bar .live i { width:6px; height:6px; border-radius:50%; background:var(--emerald); }

.saas-h { display:flex; align-items:center; gap:9px; margin-bottom:12px; }

.saas-h .hi { width:28px; height:28px; border-radius:8px; background:var(--gradient-brand); display:grid; place-items:center; flex:none; }

.saas-h .hi svg { width:15px; height:15px; color:#fff; }

.saas-h .ht { font-family:var(--font-head); font-weight:700; color:#fff; font-size:13.5px; }

.saas-h .hs { font-size:11px; color:#7E90B0; }

.srow { display:flex; align-items:center; justify-content:space-between; gap:10px; padding:11px 13px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); border-radius:11px; margin-bottom:8px; }

.srow:last-child { margin-bottom:0; }

.srow .sl { display:flex; align-items:center; gap:10px; min-width:0; }

.srow .si { width:26px; height:26px; border-radius:7px; display:grid; place-items:center; flex:none; }

.srow .sn { color:#D7E0F0; font-size:12.5px; font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

.srow .ss { color:#7E90B0; font-size:10.5px; }

.s-tag { font-size:10px; font-weight:700; padding:3px 9px; border-radius:999px; white-space:nowrap; }

.s-tag.ok { background:rgba(16,185,129,.16); color:var(--emerald-300); }

.s-tag.warn { background:rgba(245,158,11,.16); color:#FCD34D; }

.s-tag.blue { background:rgba(37,99,235,.18); color:#93B4FF; }

.s-tag.mut { background:rgba(148,163,184,.16); color:#C2CDDF; }

.sbar { height:6px; border-radius:999px; background:rgba(255,255,255,.09); overflow:hidden; width:84px; flex:none; }

.sbar i { display:block; height:100%; border-radius:999px; background:var(--gradient-brand); }

.saas-foot { margin-top:12px; padding-top:12px; border-top:1px solid rgba(255,255,255,.08); display:flex; align-items:center; justify-content:space-between; font-size:11px; color:#9FB0CC; }

.saas-foot b { color:#fff; font-family:var(--font-head); }

.cert-ribbon-screen { text-align:center; padding:14px 0 6px; }

.cert-ribbon-screen .seal { width:60px; height:60px; border-radius:50%; margin:0 auto 12px; background:radial-gradient(circle at 35% 30%,#FDE68A,#D4A017 72%,#A9780C); display:grid; place-items:center; color:#6b4e00; box-shadow:inset 0 0 0 3px rgba(255,255,255,.45); }

.cert-ribbon-screen .seal svg { width:26px; height:26px; }

.cert-ribbon-screen .ct { font-family:var(--font-head); font-weight:800; color:#fff; font-size:1.1rem; }

.cert-ribbon-screen .cs { font-size:11.5px; color:#9FB0CC; margin-top:4px; }
