:root {
  --ink: #0f172a;
  --muted: #5e6b7d;
  --line: #dce4ea;
  --soft: #f8fafc;
  --panel: #ffffff;
  --navy: #0f172a;
  --blue: #1e3a8a;
  --teal: #1e3a8a;
  --gold: #f2b41b;
  --green: #2563eb;
  --shadow: 0 24px 70px rgba(7, 17, 31, .14);
  --radius: 8px;
  --brand-blue: #1e3a8a;
  --brand-brown: #5c4033;
  --brand-gold: #f2b41b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfcfd;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow { max-width: 860px; }

.section-pad { padding: 76px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - 1140px) / 2));
  background: rgba(251, 252, 253, .84);
  border-bottom: 1px solid rgba(220, 228, 234, .72);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled { box-shadow: 0 12px 34px rgba(7, 17, 31, .08); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: white;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 40px;
  object-fit: contain;
  border-radius: var(--radius);
}

.brand strong,
.brand small { display: block; line-height: 1.15; }

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 13px;
  border-radius: var(--radius);
  color: #253349;
  font-weight: 650;
  font-size: 14px;
}

.nav a:hover,
.nav a[aria-current="page"] { background: #eef4f3; color: var(--ink); }

.nav .nav-cta {
  background: var(--ink);
  color: #fff;
}

.nav .nav-cta.alt {
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  padding-bottom: 72px;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, .96), rgba(30, 58, 138, .88), rgba(92, 64, 51, .68)),
    url("workshop.png") center / cover no-repeat;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(251, 252, 253, .94));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.product-hero .eyebrow,
.cta-band .eyebrow { color: #76e0cd; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
  margin-bottom: 12px;
}

.hero-lede,
.page-hero p,
.section-heading p {
  color: #dbe7ea;
  font-size: 17px;
  max-width: 680px;
}

.section-heading p,
.page-hero p { color: var(--muted); }

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), #12ad92);
  color: #fff;
  box-shadow: 0 12px 30px rgba(12, 143, 131, .25);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary.light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}

.btn-dark { background: var(--ink); color: #fff; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span,
.pillars span {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 8px 12px;
  color: #dcecef;
  font-size: 13px;
  font-weight: 700;
}

.product-console,
.product-panel,
.document-preview,
.contact-panel,
.contact-form {
  border-radius: var(--radius);
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.3);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.console-top span:first-child { background: var(--gold); }
.console-top strong { margin-left: auto; font-size: 13px; color: var(--muted); }

.console-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.metric-card,
.dashboard-panel,
.mini-grid a,
.solution-card,
.statement-grid article,
.feature-list article,
.course-grid article,
.preview-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.metric-card {
  padding: 16px;
}

.metric-card small,
.preview-card small,
.document-preview span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.metric-card strong {
  display: block;
  margin: 5px 0;
  font-size: 22px;
}

.metric-card.green { border-left: 4px solid var(--teal); }
.metric-card.gold { border-left: 4px solid var(--gold); }

.dashboard-panel { padding: 16px; }
.panel-heading { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.panel-heading span { color: var(--muted); font-size: 13px; }

.progress-list div { margin-top: 12px; }
.progress-list span { display: block; color: var(--muted); font-size: 13px; margin-bottom: 6px; }
.progress-list b { display: block; height: 8px; border-radius: 99px; background: linear-gradient(90deg, var(--teal), var(--gold)); }

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mini-grid a {
  padding: 14px;
  font-weight: 800;
  color: #203047;
  background: #f8faf9;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.intent-strip {
  padding: 22px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.intent-card {
  display: grid;
  align-content: start;
  min-height: 142px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 12px 36px rgba(7, 17, 31, .06);
}

.intent-card span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.intent-card strong {
  font-size: 16px;
  line-height: 1.2;
}

.intent-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.align-left { text-align: left; margin-left: 0; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.solution-card {
  padding: 20px;
  min-height: 282px;
  display: flex;
  flex-direction: column;
}

.product-thumb,
.feature-image,
.product-hero-image,
.card-image {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.product-thumb {
  aspect-ratio: 16 / 10;
  margin-bottom: 14px;
}

.solution-card.navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.solution-card p { color: var(--muted); }
.solution-card.navy p { color: #c8d4df; }
.solution-card a { margin-top: auto; color: var(--teal); font-weight: 800; }

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: #e8f5f1;
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}

.split-band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-grid,
.preview-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.split-grid p { color: var(--muted); font-size: 17px; }

.capability-list,
.statement-grid {
  display: grid;
  gap: 14px;
}

.capability-list div,
.statement-grid article {
  padding: 22px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.capability-list strong,
.capability-list span,
.statement-grid strong,
.statement-grid p { display: block; }

.capability-list span,
.statement-grid p { color: var(--muted); margin: 7px 0 0; }

.preview-stack { display: grid; gap: 16px; }

.brand-visual {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.preview-card {
  min-height: 190px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}

.preview-card::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto auto;
  width: 150px;
  height: 84px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(12,143,131,.16), rgba(201,151,47,.18));
  border: 1px solid rgba(12,143,131,.2);
}

.preview-card h3 { max-width: 430px; position: relative; }

.cta-band {
  padding: 64px 0;
  background: var(--navy);
  color: #fff;
}

.faq-section {
  background: #fff;
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.faq-grid h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.cta-grid h2 { margin-bottom: 0; max-width: 760px; }

.portal-showcase {
  display: grid;
  grid-template-columns: 1fr minmax(320px, .8fr);
  gap: 42px;
  align-items: center;
}

.portal-showcase p {
  color: var(--muted);
  font-size: 17px;
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.portal-card {
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.portal-card.dark {
  background: var(--navy);
  color: #fff;
  border-color: rgba(255,255,255,.12);
}

.portal-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.portal-card span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.portal-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.15;
}

.portal-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.portal-card.dark p {
  color: #cbd5e1;
}

.proof-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.proof-story p {
  color: var(--muted);
  font-size: 17px;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.proof-stats span {
  display: block;
  min-height: 132px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 17, 31, .08);
  color: var(--muted);
}

.proof-stats strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portal-tile {
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(7, 17, 31, .08);
}

.portal-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}

.portal-tile strong,
.portal-tile span,
.portal-tile a {
  display: block;
}

.portal-tile strong {
  font-size: 20px;
  line-height: 1.2;
}

.portal-tile span {
  color: var(--muted);
  margin: 10px 0 18px;
}

.portal-tile a {
  color: var(--blue);
  font-weight: 900;
}

.page-hero {
  background:
    linear-gradient(180deg, #ffffff, #f4f8f8);
  border-bottom: 1px solid var(--line);
}

.about-proof {
  padding-top: 44px;
  padding-bottom: 44px;
  background: #fff;
}

.page-hero h1,
.product-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.product-hero {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0b524b);
}

.business-product {
  background: linear-gradient(135deg, #081529, #1f2c43 56%, #80601f);
}

.training-product {
  background: linear-gradient(135deg, #1e3a8a, #0f172a 58%, #5c4033);
}

.ict-product {
  background: linear-gradient(135deg, #0f172a, #1e3a8a 58%, #5c4033);
}

.training-hero,
.cbt-hero {
  background: linear-gradient(135deg, #f9fbfb, #eef8f5);
}

.product-panel {
  padding: 28px;
}

.product-hero-image {
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
}

.document-preview .product-hero-image {
  margin-bottom: 22px;
}

.product-panel h2 { color: var(--ink); font-size: 34px; }

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.check-list span {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #f4faf8;
  color: #244039;
  font-weight: 750;
}

.document-preview {
  padding: 34px;
  min-height: 420px;
}

.document-preview h2 { font-size: 38px; }
.document-preview p { color: var(--muted); }
.document-preview div {
  height: 16px;
  margin-top: 18px;
  border-radius: 99px;
  background: #e9edf0;
}
.document-preview div:nth-of-type(2) { width: 78%; }
.document-preview div:nth-of-type(3) { width: 58%; background: #d9c38b; }

.pillars,
.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pillars span {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  text-align: center;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 180px minmax(240px, .8fr) 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px;
}

.feature-image {
  aspect-ratio: 16 / 10;
}

.feature-list article > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-list h2 { font-size: 24px; margin: 0; }
.feature-list p { margin: 0; color: var(--muted); }

.course-grid article {
  padding: 22px;
  min-height: 170px;
}

.card-image {
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
}

.course-grid strong,
.course-grid span {
  display: block;
}

.course-grid strong { font-size: 18px; margin-bottom: 10px; }
.course-grid span { color: var(--muted); }

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 17, 31, .08);
}

.program-card.featured {
  border-color: rgba(30, 58, 138, .26);
  box-shadow: var(--shadow);
}

.program-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 16px;
}

.program-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.program-card strong {
  font-size: 20px;
  line-height: 1.2;
}

.program-card p {
  color: var(--muted);
  margin: 10px 0 18px;
}

.program-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-grid article {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.audience-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.audience-grid strong {
  display: block;
  font-size: 24px;
  line-height: 1.15;
}

.audience-grid p {
  color: var(--muted);
  margin: 12px 0 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #243349;
  font-weight: 800;
  font-size: 14px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea { resize: vertical; }

.contact-panel { padding: 30px; }
.contact-method { display: grid; gap: 4px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-method strong { color: var(--ink); }
.contact-method a { color: var(--teal); font-weight: 800; }
.fine-print { color: var(--muted); font-size: 13px; margin-top: 22px; }

.site-footer {
  padding: 44px 0;
  background: #06101d;
  color: #d9e1e7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 34px;
}

.footer-brand { color: #fff; margin-bottom: 18px; }
.site-footer p { color: #9dacb8; max-width: 430px; }
.site-footer a { display: block; color: #d9e1e7; margin-top: 8px; }
.site-footer span { display: block; color: #d9e1e7; margin-top: 8px; }
.site-footer strong { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 980px) {
  .site-header { padding: 14px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px; }

  .hero-grid,
  .split-grid,
  .preview-grid,
  .contact-grid,
  .cta-grid,
  .portal-showcase,
  .proof-story {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .portal-grid,
  .program-grid,
  .audience-grid,
  .proof-stats,
  .course-grid,
  .pillars,
  .intent-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1140px); }
  .section-pad { padding: 54px 0; }
  .hero {
    padding-top: 64px;
    padding-bottom: 56px;
  }
  .brand small { display: none; }
  h1 { font-size: 38px; }
  h2 { font-size: 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .product-console { margin-bottom: 20px; }
  .solution-grid,
  .portal-grid,
  .program-grid,
  .audience-grid,
  .proof-stats,
  .course-grid,
  .pillars,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .intent-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .intent-card { min-height: auto; }
  .mini-grid { grid-template-columns: 1fr; }
  .panel-heading { display: block; }
  .hero-actions,
  .cta-actions,
  .portal-actions { flex-direction: column; }
  .btn { width: 100%; }
  .footer-bottom { flex-direction: column; }
}
