/* ============================================================
   MMHCM — Myanmar Human Capital Management
   Design System + Components
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Navy — dark surfaces */
  --navy-950: #07142A;
  --navy-900: #0A1B33;
  --navy-800: #0E2440;
  --navy-700: #143258;
  --navy-600: #1E456F;

  /* Steel blue — secondary */
  --blue-600: #245A99;
  --blue-500: #2E6CB0;
  --blue-400: #4F8BD0;
  --blue-200: #BBD3EC;
  --blue-50:  #EAF2FB;

  /* Gold / amber — primary accent */
  --gold-700: #B57F12;
  --gold-600: #C68A14;
  --gold-500: #E0A526;
  --gold-400: #F2B83D;
  --gold-200: #F6D58C;
  --gold-50:  #FBF2DC;

  /* Neutrals (cool-warm slate) */
  --ink:      #0E1B2E;
  --slate-700:#33425A;
  --slate-600:#465775;
  --slate-500:#5E6E88;
  --slate-400:#8493A8;
  --slate-300:#B7C1D0;
  --line:     #E5EAF1;
  --line-2:   #EEF2F7;
  --surface:  #F6F8FC;
  --surface-2:#EEF3FA;
  --white:    #FFFFFF;

  /* Semantic */
  --bg: var(--white);
  --text: var(--ink);
  --muted: var(--slate-500);
  --accent: var(--gold-500);
  --ring: var(--blue-400);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(14,27,46,.06);
  --sh-sm: 0 2px 8px rgba(14,27,46,.06), 0 1px 2px rgba(14,27,46,.04);
  --sh-md: 0 10px 30px rgba(14,27,46,.08), 0 2px 6px rgba(14,27,46,.05);
  --sh-lg: 0 24px 60px rgba(10,27,51,.16), 0 8px 20px rgba(10,27,51,.08);
  --sh-gold: 0 12px 30px rgba(224,165,38,.28);

  /* Type */
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-my: "Noto Sans Myanmar", "Plus Jakarta Sans", sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --header-h: 76px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

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

/* ---------- Burmese ---------- */
:lang(my), .lang-my { font-family: var(--font-my); }
.lang-my body, body.lang-my { font-family: var(--font-my); }
body.lang-my { line-height: 1.85; }
[data-my]:not([data-en]) { font-family: var(--font-my); line-height: 1.85; }
body.lang-my h1, body.lang-my h2, body.lang-my h3 { line-height: 1.45; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.display {
  font-size: clamp(2.6rem, 1.6rem + 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.1rem, 1.4rem + 2.8vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1rem + .7vw, 1.45rem); }
p  { color: var(--slate-600); text-wrap: pretty; }
.lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.3rem); color: var(--slate-600); line-height: 1.55; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before { content:""; width: 22px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.eyebrow.on-dark { color: var(--gold-400); }
.eyebrow.center { justify-content: center; }
.text-gold { color: var(--gold-500); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1340px; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-sm { padding-block: clamp(44px, 6vw, 72px); }
.bg-surface { background: var(--surface); }
.bg-surface-2 { background: var(--surface-2); }
.bg-navy { background: var(--navy-900); color: #fff; }
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; }
.stack-sm > * + * { margin-top: 10px; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--navy-900);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: .98rem; letter-spacing: -.01em;
  padding: 14px 22px; border-radius: var(--r-pill);
  border: 1.5px solid transparent; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn i, .btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: var(--sh-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(224,165,38,.4); background: linear-gradient(180deg, #F8C457, var(--gold-500)); }
.btn-secondary {
  background: #fff; color: var(--navy-800); border-color: var(--line);
  box-shadow: var(--sh-xs);
}
.btn-secondary:hover { border-color: var(--blue-400); color: var(--navy-900); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.btn-navy { background: var(--navy-900); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--blue-600); }
.link-arrow svg { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(7,20,42,.4); background: rgba(10,27,51,.92); backdrop-filter: blur(10px); }
.nav {
  height: var(--header-h);
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__lockup { height: 46px; width: auto; display: block; border-radius: 8px; }
.footer-brand .brand__lockup { height: 54px; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 11px; overflow: hidden;
  background: var(--navy-950); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  display: grid; place-items: center;
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; transform: scale(1.55); }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-weight: 800; font-size: 1.22rem; letter-spacing: -.01em; color: #fff; }
.brand__name .h { color: var(--gold-400); }
.brand__name .dot { color: var(--gold-400); font-weight: 800; }
.brand__sub { font-size: .58rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--blue-200); margin-top: 3px; white-space: nowrap; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.nav__link {
  position: relative; padding: 9px 14px; border-radius: var(--r-sm);
  color: #C7D4E6; font-weight: 600; font-size: .96rem;
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav__link.active { color: #fff; }
.nav__link.active::after {
  content:""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--gold-400); border-radius: 2px;
}
.nav__spacer { flex: 1; }
.nav__right { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex; align-items: center; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-pill); padding: 3px; gap: 2px;
}
.lang-switch button, .lang-switch a {
  display: inline-flex; align-items: center; text-decoration: none;
  background: transparent; border: 0; color: #B9C7DC; font-weight: 700; font-size: .82rem;
  padding: 5px 11px; border-radius: var(--r-pill); transition: all .18s var(--ease);
}
.lang-switch button[aria-pressed="true"], .lang-switch a[aria-pressed="true"] { background: var(--gold-500); color: var(--navy-900); }
.lang-switch button[data-lang="my"], .lang-switch a[data-lang="my"] { font-family: var(--font-my); }
.nav__cta { padding: 11px 18px; font-size: .92rem; }
.nav__toggle {
  display: none; width: 44px; height: 44px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: #fff;
  align-items: center; justify-content: center;
}
.nav__toggle svg { width: 22px; height: 22px; }

/* mobile menu panel */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--navy-950); padding: 24px var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a.m-link {
  color: #E4ECF7; font-weight: 700; font-size: 1.2rem; padding: 16px 8px;
  border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu a.m-link svg { width: 18px; height: 18px; color: var(--gold-400); }
.mobile-menu .m-actions { margin-top: 22px; display: grid; gap: 12px; }
.mobile-menu .lang-switch { align-self: flex-start; margin-top: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #C3D0E2; padding-top: clamp(56px, 7vw, 84px); }
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
}
.footer-brand .brand__name { font-size: 1.35rem; }
.footer-brand p { color: #93A4BE; margin-top: 16px; max-width: 30ch; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.footer-col ul { margin-top: 18px; display: grid; gap: 12px; }
.footer-col a { color: #A9B8CE; font-size: .96rem; transition: color .18s var(--ease); }
.footer-col a:hover { color: var(--gold-400); }
.footer-cta h4 { color:#fff; }
.footer-cta p { color:#93A4BE; margin: 12px 0 18px; font-size:.95rem; }
.social { display: flex; gap: 10px; margin-top: 20px; }
.social a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: #C3D0E2;
  transition: all .2s var(--ease);
}
.social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.social svg { width: 19px; height: 19px; }
.footer-bottom {
  margin-top: clamp(44px, 6vw, 64px); border-top: 1px solid rgba(255,255,255,.09);
  padding-block: 26px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  color: #7E90AB; font-size: .9rem;
}
.footer-bottom .links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold-400); }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: radial-gradient(120% 130% at 78% 0%, var(--navy-700) 0%, var(--navy-900) 42%, var(--navy-950) 100%);
  color: #fff; overflow: hidden; padding-block: clamp(56px, 8vw, 104px) clamp(72px, 9vw, 120px);
}
.hero::before {
  content:""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 60% at 12% 18%, rgba(79,139,208,.18), transparent 70%),
    radial-gradient(34% 50% at 92% 80%, rgba(224,165,38,.14), transparent 70%);
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero h1 { color: #fff; margin: 18px 0 0; }
.hero h1 .text-gold { color: var(--gold-400); }
.hero .lead { color: #C6D4E8; margin-top: 22px; max-width: 42ch; }
.hero .btn-group { margin-top: 34px; }
.hero-meta { margin-top: 30px; display: flex; align-items: center; gap: 16px; color: #93A6C2; font-size: .9rem; }
.hero-meta .avatars { display: flex; }
.hero-meta .avatars span {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--navy-900); margin-left: -10px;
  background-size: cover; display: grid; place-items: center; font-weight: 800; font-size: .8rem; color: #fff;
}
.hero-meta .avatars span:first-child { margin-left: 0; }

/* trust strip */
.trust { border-top: 1px solid var(--line); }
.trust__label { text-align: center; color: var(--slate-500); font-weight: 600; font-size: .92rem; }
.trust__logos { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 56px); }
.logo-chip { display: flex; align-items: center; gap: 10px; color: var(--slate-400); font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; opacity: .85; transition: opacity .2s var(--ease), color .2s; }
.logo-chip:hover { opacity: 1; color: var(--slate-600); }
.logo-chip .dotmark { width: 26px; height: 26px; border-radius: 7px; background: linear-gradient(135deg, var(--blue-200), var(--slate-300)); }
.logo-chip .dotmark.g { background: linear-gradient(135deg, var(--gold-200), var(--gold-400)); }

/* ---------- Dashboard mockup ---------- */
.mockup {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: #fff; box-shadow: var(--sh-lg); border: 1px solid rgba(255,255,255,.5);
  transform: perspective(1600px) rotateY(-7deg) rotateX(2deg); transform-origin: left center;
}
.mockup__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: var(--surface); border-bottom: 1px solid var(--line); }
.mockup__bar .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--slate-300); }
.mockup__bar .dot:nth-child(2){ background:#E6C36B; } .mockup__bar .dot:nth-child(3){ background:#9FC79F; }
.mockup__bar .url { margin-left: 10px; font-size: .72rem; color: var(--slate-400); font-weight: 600; background:#fff; border:1px solid var(--line); border-radius: var(--r-pill); padding: 4px 12px; }
.mockup__body { display: grid; grid-template-columns: 64px 1fr; min-height: 360px; }
.mockup__rail { background: var(--navy-900); padding: 16px 0; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.mockup__rail .ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #8FA6C6; }
.mockup__rail .ico svg { width: 19px; height: 19px; }
.mockup__rail .ico.active { background: rgba(224,165,38,.16); color: var(--gold-400); }
.mockup__main { padding: 18px; background: linear-gradient(180deg,#fff, #FAFCFF); }
.mk-row { display: flex; align-items: center; justify-content: space-between; }
.mk-h { font-weight: 800; font-size: .98rem; color: var(--ink); letter-spacing: -.01em; }
.mk-sub { font-size: .72rem; color: var(--slate-400); font-weight: 600; }
.mk-pill { font-size: .68rem; font-weight: 700; color: var(--gold-700); background: var(--gold-50); border:1px solid var(--gold-200); padding: 4px 10px; border-radius: var(--r-pill); }
.mk-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 14px; }
.mk-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 12px; }
.mk-stat .v { font-weight: 800; font-size: 1.18rem; color: var(--ink); letter-spacing: -.02em; }
.mk-stat .l { font-size: .68rem; color: var(--slate-400); font-weight: 600; margin-top: 2px; }
.mk-stat .v small { font-size: .62rem; color: #2E9E6B; font-weight: 800; margin-left: 5px; }
.mk-card { margin-top: 12px; background:#fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px; }
.mk-chart { display: flex; align-items: flex-end; gap: 8px; height: 96px; margin-top: 12px; }
.mk-chart .bar { flex: 1; border-radius: 6px 6px 3px 3px; background: linear-gradient(180deg, var(--blue-400), var(--blue-600)); position: relative; }
.mk-chart .bar.g { background: linear-gradient(180deg, var(--gold-400), var(--gold-600)); }
.mk-legend { display:flex; gap:14px; margin-top:10px; font-size:.66rem; color:var(--slate-400); font-weight:600;}
.mk-legend span{display:flex;align-items:center;gap:6px;}
.mk-legend i{width:9px;height:9px;border-radius:3px;display:inline-block;}
.mk-list { margin-top: 12px; display: grid; gap: 8px; }
.mk-li { display: flex; align-items: center; gap: 10px; background:#fff; border:1px solid var(--line); border-radius: var(--r-sm); padding: 9px 11px; }
.mk-li .av { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg,var(--blue-400),var(--navy-700)); color:#fff; display:grid; place-items:center; font-size:.68rem; font-weight:800; }
.mk-li .nm { font-size: .76rem; font-weight: 700; color: var(--ink); }
.mk-li .rl { font-size: .66rem; color: var(--slate-400); }
.mk-li .tag { margin-left: auto; font-size: .64rem; font-weight: 700; padding: 3px 9px; border-radius: var(--r-pill); }
.tag-paid { color:#2E9E6B; background:#E7F6EE; } .tag-due { color: var(--gold-700); background: var(--gold-50); }

/* Float badges anchor to the product visual (right column), not the whole hero grid. */
.hero-visual { position: relative; }
.float-badge {
  position: absolute; background: #fff; border-radius: var(--r-md); box-shadow: var(--sh-md);
  padding: 11px 14px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line-2);
}
.float-badge .ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color:#fff; }
.float-badge .ic svg { width: 18px; height: 18px; }
.float-badge .t1 { font-size: .82rem; font-weight: 800; color: var(--ink); line-height: 1.1; }
.float-badge .t2 { font-size: .68rem; color: var(--slate-400); font-weight: 600; }
.float-badge.b1 { top: -18px; right: -18px; }
.float-badge.b2 { bottom: -22px; left: 26px; }

/* ---------- Module cards ---------- */
.module-grid { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.module-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.module-card {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  overflow: hidden;
}
.module-card::after {
  content:""; position: absolute; left:0; top:0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold-400), var(--blue-400)); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.module-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--blue-200); }
.module-card:hover::after { transform: scaleX(1); }
.module-card:hover .module-ico { background: var(--navy-900); color: var(--gold-400); }
.module-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.module-ico svg { width: 25px; height: 25px; }
.module-card h3 { font-size: 1.12rem; }
.module-card .tag { color: var(--slate-500); font-size: .92rem; line-height: 1.45; margin: 0; }
.module-card .more { margin-top: auto; padding-top: 6px; display: inline-flex; align-items: center; gap: 6px; color: var(--blue-600); font-weight: 700; font-size: .88rem; white-space: nowrap; }
.module-card .more svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.module-card:hover .more svg { transform: translateX(4px); }
.module-num { position: absolute; top: 18px; right: 20px; font-size: .78rem; font-weight: 800; color: var(--slate-300); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: radial-gradient(120% 130% at 80% 10%, var(--navy-700), var(--navy-900) 55%, var(--navy-950)); color: #fff; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px); }
.cta-band::before { content:""; position: absolute; inset:0; background: radial-gradient(40% 80% at 88% 50%, rgba(224,165,38,.18), transparent 70%); pointer-events: none; }
.cta-band__inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { color: #C6D4E8; margin-top: 12px; max-width: 40ch; }

/* ---------- Feature list ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.feature-item { display: flex; gap: 14px; background:#fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px; transition: border-color .2s var(--ease), box-shadow .2s; }
.feature-item:hover { border-color: var(--blue-200); box-shadow: var(--sh-sm); }
.feature-item .chk { flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px; background: var(--gold-50); color: var(--gold-600); display: grid; place-items: center; }
.feature-item .chk svg { width: 17px; height: 17px; }
.feature-item h4 { font-size: 1.02rem; font-weight: 700; }
.feature-item p { margin-top: 5px; font-size: .92rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-600); font-weight: 700; font-size: .92rem; white-space: nowrap; }
.breadcrumb svg { width: 17px; height: 17px; }
.breadcrumb:hover { color: var(--navy-800); }

/* ---------- Module hero ---------- */
.mod-hero { background: var(--surface); border-bottom: 1px solid var(--line); }
.mod-hero__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.mod-hero__ico { width: 78px; height: 78px; border-radius: 20px; background: var(--navy-900); color: var(--gold-400); display: grid; place-items: center; box-shadow: var(--sh-md); }
.mod-hero__ico svg { width: 38px; height: 38px; }
.mod-hero h1 { margin: 22px 0 0; }
.mod-hero .tag { color: var(--gold-600); font-weight: 700; margin-top: 12px; font-size: 1.1rem; }
.mod-hero .summary { margin-top: 16px; max-width: 46ch; }
.mod-hero .btn-group { margin-top: 28px; }
.mod-visual { background:#fff; border:1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-md); padding: 26px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.price-card {
  position: relative; background:#fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 32px;
  display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.price-card.featured { border: 1.5px solid var(--gold-400); box-shadow: var(--sh-lg); background: linear-gradient(180deg, #fff, var(--gold-50) 360%); transform: translateY(-8px); }
.price-card.featured:hover { transform: translateY(-12px); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(180deg,var(--gold-400),var(--gold-500)); color: var(--navy-900); font-weight: 800; font-size: .76rem; letter-spacing: .04em; padding: 7px 16px; border-radius: var(--r-pill); box-shadow: var(--sh-gold); text-transform: uppercase; white-space: nowrap; }
.price-card h3 { font-size: 1.35rem; }
.price-card .blurb { color: var(--slate-500); font-size: .95rem; margin-top: 6px; min-height: 44px; }
.price-amt { margin-top: 20px; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price-amt .num { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.price-amt .per { color: var(--slate-500); font-size: .92rem; font-weight: 600; }
.price-card .divider { height: 1px; background: var(--line); margin: 24px 0; }
.price-feats { display: grid; gap: 13px; }
.price-feats li { display: flex; gap: 11px; align-items: flex-start; color: var(--slate-700); font-size: .95rem; }
.price-feats li svg { width: 19px; height: 19px; color: var(--gold-600); flex-shrink: 0; margin-top: 1px; }
.price-card .btn { margin-top: 28px; }
.price-note { text-align: center; color: var(--slate-500); font-size: .92rem; margin-top: 30px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-aside .vp { display: flex; gap: 14px; margin-top: 22px; }
.contact-aside .vp .ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; background: var(--navy-900); color: var(--gold-400); display: grid; place-items: center; }
.contact-aside .vp .ic svg { width: 20px; height: 20px; }
.contact-aside .vp h4 { font-size: 1.02rem; }
.contact-aside .vp p { font-size: .92rem; margin-top: 3px; }
.steps { counter-reset: s; margin-top: 14px; display: grid; gap: 14px; }
.steps li { display: flex; gap: 14px; align-items: flex-start; }
.steps li::before { counter-increment: s; content: counter(s); flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--gold-50); color: var(--gold-700); border:1px solid var(--gold-200); font-weight: 800; display: grid; place-items: center; font-size: .9rem; }
.steps li span { font-weight: 700; color: var(--ink); }
.steps li p { font-size: .9rem; margin-top: 2px; }
.trust-note { margin-top: 26px; padding: 16px 18px; background: var(--navy-900); color: #C6D4E8; border-radius: var(--r-md); display: flex; gap: 12px; font-size: .9rem; align-items: center; }
.trust-note svg { width: 22px; height: 22px; color: var(--gold-400); flex-shrink: 0; }

.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-md); padding: clamp(26px, 4vw, 40px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-top: 18px; }
.field:first-child { margin-top: 0; }
.field label { font-weight: 700; font-size: .9rem; color: var(--slate-700); }
.field label .req { color: #C0392B; }
.field label .opt { color: var(--slate-400); font-weight: 600; }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-md); background: var(--surface);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-400); background:#fff; box-shadow: 0 0 0 4px var(--blue-50); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #D9534F; background: #FCF3F2; }
.field .err { color: #C0392B; font-size: .82rem; font-weight: 600; display: none; }
.field.invalid .err { display: block; }
.form-foot { margin-top: 24px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-foot p { font-size: .82rem; color: var(--slate-400); }
.form-success { display: none; text-align: center; padding: 18px 8px; }
.form-success.show { display: block; animation: pop .4s var(--ease); }
.form-success .ic { width: 72px; height: 72px; border-radius: 50%; background: #E7F6EE; color: #2E9E6B; display: grid; place-items: center; margin: 0 auto 22px; }
.form-success .ic svg { width: 38px; height: 38px; }
.form-success h3 { font-size: 1.5rem; }
.form-success p { margin-top: 12px; max-width: 34ch; margin-inline: auto; }
@keyframes pop { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: none; } }

/* thank-you confirmation page */
.thankyou-badge { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 8px; display: grid; place-items: center; color: #fff; background: linear-gradient(180deg, #34C77B, #2E9E6B); box-shadow: 0 14px 34px rgba(46,158,107,.45); animation: pop .5s var(--ease) both; }
.thankyou-badge svg { width: 42px; height: 42px; stroke-width: 2.5; }
.thankyou-next { max-width: 560px; margin-inline: auto; text-align: center; }
.thankyou-next .eyebrow, .thankyou-next .steps { text-align: left; }
.thankyou-next .steps { display: inline-grid; }
.thankyou-next .trust-note { justify-content: center; }

/* intent chips on contact */
.intent-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.intent-chip { border: 1.5px solid var(--line); background:#fff; border-radius: var(--r-pill); padding: 8px 16px; font-weight: 700; font-size: .9rem; color: var(--slate-600); transition: all .18s var(--ease); }
.intent-chip[aria-pressed="true"] { border-color: var(--gold-400); background: var(--gold-50); color: var(--gold-700); }

/* ---------- Page hero (generic) ---------- */
.page-hero { background: radial-gradient(120% 130% at 80% 0%, var(--navy-700), var(--navy-900) 55%, var(--navy-950)); color:#fff; padding-block: clamp(52px, 7vw, 88px); }
.page-hero h1 { color:#fff; margin-top: 16px; }
.page-hero p { color:#C6D4E8; margin-top: 16px; max-width: 56ch; }
.page-hero.center { text-align: center; }
.page-hero.center .section-head { margin-inline: auto; }

/* ---------- Reveal ----------
   Visible is the BASE state; the entrance is an additive animation that
   JS adds when in view and removes after it finishes. This keeps content
   visible even if animations are throttled/frozen. */
.reveal { opacity: 1; transform: none; }
@keyframes revealIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .reveal.anim { animation: revealIn .7s var(--ease) both; }
  .reveal.anim[data-d="1"]{ animation-delay: .06s; } .reveal.anim[data-d="2"]{ animation-delay: .12s; }
  .reveal.anim[data-d="3"]{ animation-delay: .18s; } .reveal.anim[data-d="4"]{ animation-delay: .24s; }
  .reveal.anim[data-d="5"]{ animation-delay: .30s; } .reveal.anim[data-d="6"]{ animation-delay: .36s; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } }

/* ---------- Stat row ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-row .stat { text-align: center; }
.stat-row .stat .v { font-size: clamp(2rem,1.4rem+1.6vw,2.8rem); font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.stat-row .stat.on-dark .v { color: #fff; }
.stat-row .stat .v .text-gold { color: var(--gold-500); }
.stat-row .stat .l { color: var(--slate-500); font-weight: 600; margin-top: 4px; font-size: .95rem; }
.stat-row .stat.on-dark .l { color: #9FB1CC; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .module-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 960px) {
  .nav__links, .nav__right .lang-switch, .nav__right .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav { gap: 12px; }
  .hero-grid { grid-template-columns: 1fr; }
  .mockup { transform: none; margin-top: 12px; }
  .mod-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card.featured { transform: none; } .price-card.featured:hover{ transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .module-grid, .module-grid.cols-3 { grid-template-columns: repeat(2,1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2,1fr); gap: 28px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .module-grid, .module-grid.cols-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-badge { display: none; }
  .brand__sub { display: none; }
  .brand__lockup { height: 38px; }
}

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--gold-500); color: var(--navy-900); font-weight: 700;
  padding: 10px 16px; border-radius: var(--r-pill); transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- ASP.NET validation states ---------- */
.field-error, .field .text-danger { color: #C0392B; font-size: .82rem; font-weight: 600; }
.field input.input-validation-error,
.field select.input-validation-error,
.field textarea.input-validation-error { border-color: #D9534F; background: #FCF3F2; }
.validation-summary-errors { color: #C0392B; font-size: .9rem; }
.validation-summary-valid { display: none; }

/* Contact: office address card */
.office address { font-style: normal; color: var(--muted); line-height: 1.7; margin: 6px 0 0; }
.office-card { display: flex; gap: 14px; margin-top: 14px; }
.office-card .ic {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-50, #eef3ff); color: var(--blue-600, #2f5bea);
}
.office-card h4 { margin: 0; font-size: 1rem; }
