:root {
  --navy-950: #041327;
  --navy-900: #07182f;
  --navy-850: #0a213f;
  --navy-800: #0d2c54;
  --blue-700: #0866d9;
  --blue-600: #1182f2;
  --blue-500: #35a7ff;
  --blue-100: #eaf5ff;
  --cyan-300: #88d5ff;
  --green-600: #0daa60;
  --purple-600: #7250d4;
  --gold-500: #e7a328;
  --ink: #0b1832;
  --muted: #5c6680;
  --line: #dce5f0;
  --surface: #fff;
  --surface-soft: #f5f8fc;
  --shadow-sm: 0 10px 30px rgba(8, 32, 68, .08);
  --shadow-md: 0 22px 60px rgba(8, 32, 68, .16);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --font-heading: "Lato", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Open Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: auto;
}
h1, h2, h3, h4, h5, h6,
.brand,
.family-kicker,
.level-badge,
.eyebrow {
  font-family: var(--font-heading);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

body.modal-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: .7rem 1rem;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-950);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 48px 0; }
.eyebrow {
  margin: 0 0 9px;
  color: var(--blue-700);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow-light { color: #78c8ff; }
.section-heading { max-width: 900px; margin-bottom: 32px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.compact { margin-bottom: 25px; }
.section-heading h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.section-heading > p:last-child { margin: 11px auto 0; color: var(--muted); font-size: .92rem; text-wrap: balance; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(126, 175, 226, .18);
  background: rgba(4, 19, 39, .94);
  backdrop-filter: blur(18px);
}
.header-inner { position: relative; min-height: 72px; display: flex; align-items: center; gap: 24px; }
.brand { color: #fff; font-size: .96rem; font-weight: 700; text-decoration: none; letter-spacing: -.02em; white-space: nowrap; }
.primary-nav { display: flex; align-items: center; gap: 21px; margin-left: auto; }
.primary-nav a { position: relative; color: #dbeeff; font-size: .81rem; font-weight: 600; text-decoration: none; }
.primary-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--blue-500); transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; background: rgba(255,255,255,.07); cursor: pointer; }
.menu-toggle span:not(.sr-only) { width: 21px; height: 2px; display: block; margin: 4px auto; background: #fff; }

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: .7rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid rgba(53,167,255,.28); outline-offset: 3px; }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); box-shadow: 0 12px 26px rgba(8, 102, 217, .28); }
.button-light { color: var(--navy-900); background: #fff; }
.button-whatsapp { color: #fff; background: var(--green-600); }
.button-outline { color: var(--blue-700); border-color: #8fbceb; background: #fff; }
.button-large { min-height: 50px; padding: .84rem 1.25rem; }
.text-button { padding: 0; border: 0; color: var(--blue-700); background: transparent; font-size: .8rem; font-weight: 700; text-decoration: none; cursor: pointer; }

.hero {
  overflow: hidden;
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 78% 24%, rgba(28, 133, 255, .24), transparent 27%),
    linear-gradient(125deg, var(--navy-950), var(--navy-900) 50%, #06264c);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(86,165,245,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86,165,245,.25) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent 0, #000 44%, #000 100%);
}
.hero-layout { position: relative; z-index: 1; min-height: 610px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 30px; padding-top: 48px; padding-bottom: 48px; }
.hero-copy h1 { max-width: 680px; margin: 0; font-size: clamp(2.35rem, 4.25vw, 4.25rem); line-height: 1.02; letter-spacing: -.052em; }
.hero-copy h1 span { color: #3cadff; }
.hero-lead { max-width: 680px; margin: 18px 0 0; color: #c4d7ee; font-size: .94rem; }
.hero-points { display: flex; flex-wrap: nowrap; gap: 8px; margin-top: 21px; }
.hero-points span { padding: 7px 9px; border: 1px solid rgba(126,200,255,.24); border-radius: 999px; color: #dcefff; background: rgba(255,255,255,.06); font-size: .66rem; font-weight: 600; white-space: nowrap; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.hero-visual { min-height: 500px; display: grid; place-items: center; }
.hero-visual svg { width: min(100%, 590px); filter: drop-shadow(0 28px 55px rgba(0,0,0,.32)); }

.trainer { background: #fff; }
.trainer-panel { display: grid; grid-template-columns: 252px minmax(0,1fr); gap: 34px; align-items: start; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, #f9fcff, #f2f7fd); box-shadow: var(--shadow-sm); }
.trainer-media { display: grid; gap: 12px; }
.trainer-video { overflow: hidden; aspect-ratio: 16/9; border: 1px solid #cfddeb; border-radius: 14px; background: var(--navy-950); box-shadow: 0 16px 34px rgba(7,31,66,.16); }
.trainer-video video { width: 100%; height: 100%; object-fit: contain; }
.award-strip { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; padding: 13px; border: 1px solid #d6e2ef; border-radius: 12px; background: #fff; }
.award-strip span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--blue-700); }
.award-strip p { margin: 0; color: #3d4963; font-size: .72rem; line-height: 1.45; }
.trainer-copy h3 { margin: 0 0 13px; font-size: 1.45rem; line-height: 1.2; }
.trainer-copy h3 span { display: block; margin-top: 5px; color: var(--muted); font-size: .86rem; font-weight: 600; }
.trainer-copy > p { margin: 0 0 11px; color: var(--muted); font-size: .9rem; }
.book-heading { margin-top: 17px; }
.book-heading h4 { margin: 0; font-size: 1rem; }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 10px; }
.book-card { min-width: 0; display: grid; grid-template-columns: 72px 1fr; gap: 11px; align-items: center; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.book-card img { width: 72px; height: 105px; object-fit: cover; border-radius: 7px; box-shadow: 0 6px 14px rgba(0,0,0,.13); }
.book-card h5 { margin: 0; font-size: .78rem; line-height: 1.3; }
.book-card p { margin: 5px 0 8px; color: var(--muted); font-size: .69rem; line-height: 1.4; }
.book-card a { display: inline-flex; padding: 6px 9px; border-radius: 7px; color: #fff; background: var(--blue-700); font-size: .66rem; font-weight: 700; text-decoration: none; }

.programs { background: linear-gradient(180deg, #f5f8fc, #fff); padding-top: 28px; }
.comparison { padding-top: 28px; }
.audience { padding-top: 28px; }
.program-family-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.program-family { overflow: hidden; display: flex; min-height: 100%; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.family-waf { border-top: 4px solid var(--blue-600); }
.family-ea { border-top: 4px solid var(--purple-600); }
.family-header { min-height: 230px; padding: 25px 25px 21px; color: #fff; background: linear-gradient(145deg, #07254b, #0c3b73); }
.family-ea .family-header { background: linear-gradient(145deg, #211b52, #5a36a8); }
.family-kicker { margin: 0 0 8px; color: #7bd0ff; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.family-ea .family-kicker { color: #d1bdff; }
.family-header h3 { margin: 0; font-size: clamp(1.3rem, 1.9vw, 1.85rem); line-height: 1.15; letter-spacing: -.03em; }
.family-header > p:last-child { margin: 11px 0 0; color: #d0e2f6; font-size: .8rem; }
.family-ea .family-header > p:last-child { color: #e4dcf7; }
.level-grid { display: grid; flex: 1; grid-template-columns: 1fr 1fr; gap: 12px; align-items: stretch; padding: 16px; }
.level-card { display: flex; min-height: 228px; height: 100%; flex-direction: column; padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.level-foundation { background: #f6fbff; }
.level-advanced { background: #f8f5ff; }
.level-badge { width: fit-content; padding: 4px 8px; border-radius: 999px; color: var(--blue-700); background: var(--blue-100); font-size: .66rem; font-weight: 700; text-transform: uppercase; }
.level-advanced .level-badge { color: #5b38b0; background: #eee8ff; }
.level-card strong { margin-top: 13px; font-size: 1rem; }
.level-card p { margin: 8px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.level-actions { display: flex; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.module-panel { margin: 0 16px 16px; padding: 16px; border: 1px solid #d5e2f0; border-radius: 14px; background: #f7fbff; }
.module-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 12px; }
.module-panel h4 { margin: 0; font-size: .96rem; }
.module-close { padding: 5px 8px; border: 1px solid #b7cae0; border-radius: 7px; color: var(--blue-700); background: #fff; font-size: .7rem; font-weight: 700; cursor: pointer; }
.module-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; counter-reset: module; }
.module-list li { position: relative; min-height: 57px; padding: 10px 10px 10px 43px; border: 1px solid #dce7f2; border-radius: 9px; background: #fff; counter-increment: module; }
.module-list li::before { content: counter(module, decimal-leading-zero); position: absolute; top: 10px; left: 10px; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; color: #fff; background: var(--blue-700); font-size: .64rem; font-weight: 700; }
.family-ea .module-list li::before { background: var(--purple-600); }
.module-list strong { display: block; font-size: .78rem; line-height: 1.3; }
.module-list span { display: block; margin-top: 3px; color: var(--muted); font-size: .7rem; line-height: 1.4; }
.waf-exclusive { margin: 0 16px 16px; border: 1px solid #cddff1; border-radius: 14px; background: #f7fbff; }
.waf-exclusive summary { padding: 14px 16px; color: var(--navy-800); font-size: .81rem; font-weight: 700; cursor: pointer; }
.waf-exclusive-body { display: grid; gap: 15px; padding: 0 16px 16px; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.pillar-grid span { padding: 9px 7px; border-radius: 8px; color: #fff; background: linear-gradient(135deg, var(--blue-700), #0b3f83); font-size: .68rem; font-weight: 700; text-align: center; }
.difference-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.difference-grid article { padding: 11px; border: 1px solid #dce7f2; border-radius: 9px; background: #fff; }
.difference-grid strong { display: block; font-size: .72rem; }
.difference-grid p { margin: 5px 0 0; color: var(--muted); font-size: .66rem; line-height: 1.4; }
.advisory-card { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px; border-radius: 10px; color: #fff; background: var(--navy-800); }
.advisory-card h4 { margin: 0; font-size: .84rem; }
.advisory-card .eyebrow { color: #7ed0ff; }
.advisory-card .button { flex-shrink: 0; }

.comparison { background: #f4f7fb; }
.comparison-stack { display: grid; gap: 20px; }
.comparison-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.comparison-card h3 { margin: 0; padding: 16px 20px; color: #fff; background: var(--navy-800); font-size: 1rem; }
.comparison-card:nth-child(2) h3 { background: #3c2f7e; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 13px 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
thead th { color: #fff; background: var(--blue-700); font-size: .78rem; }
thead th:first-child { color: var(--ink); background: #edf3fa; }
thead th:last-child { background: var(--purple-600); }
tbody th { width: 22%; background: #fafbfd; font-size: .76rem; }
tbody td { width: 39%; color: #33415a; font-size: .82rem; font-weight: 400; line-height: 1.32; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }

.audience { background: #fff; }
.audience-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.audience-panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.audience-panel-head { padding: 17px 20px; color: #fff; background: var(--navy-800); }
.audience-panel:nth-child(2) .audience-panel-head { background: #3f2f81; }
.audience-panel-head span { color: #8bd5ff; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.audience-panel-head h3 { margin: 3px 0 0; font-size: 1.15rem; }
.audience-levels { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.audience-levels > div { padding: 17px; }
.audience-levels > div + div { border-left: 1px solid var(--line); }
.audience-levels h4 { margin: 0 0 10px; color: var(--blue-700); font-size: .8rem; }
.audience-levels > div:last-child h4 { color: var(--purple-600); }
.chip-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.chip-grid span { padding: 6px 8px; border: 1px solid #d8e3ef; border-radius: 999px; color: #33415a; background: #f7f9fc; font-size: .66rem; font-weight: 600; }
.audience-bullets {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.audience-bullets li {
  position: relative;
  padding-left: 16px;
  color: #33415a;
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.32;
}
.audience-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-700);
  font-weight: 700;
}
.audience-levels > div:last-child .audience-bullets li::before {
  color: var(--purple-600);
}

.outcomes { color: #fff; background: linear-gradient(135deg, var(--navy-950), #0c3b72); }
.outcomes .section-heading h2 { color: #fff; }
.outcome-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.outcome-groups article { padding: 23px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); background: rgba(255,255,255,.06); }
.outcome-groups h3 { margin: 0 0 13px; font-size: 1rem; }
.outcome-groups ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.outcome-groups li { position: relative; padding-left: 23px; color: #d9e7f8; font-size: .82rem; }
.outcome-groups li::before { content: "✓"; position: absolute; left: 0; color: #60c4ff; font-weight: 700; }

.benefits { background: #fff; }
.benefit-grid { overflow: hidden; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.benefit-grid article { min-height: 175px; padding: 20px; border-right: 1px solid var(--line); }
.benefit-grid article:last-child { border-right: 0; }
.benefit-grid span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; color: var(--blue-700); background: var(--blue-100); font-size: .72rem; font-weight: 700; }
.benefit-grid h3 { margin: 13px 0 6px; font-size: .9rem; }
.benefit-grid p { margin: 0; color: #33415a; font-size: .82rem; font-weight: 400; line-height: 1.32; }

.format { background: #f4f7fb; }
.format .section-heading { max-width: none; }
.format-table-wrap { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.format-table thead th { color: #fff; background: var(--blue-700); }
.format-table thead th:first-child { color: #fff; background: var(--navy-800); width: 215px; }
.format-table tbody th { background: #f8fafc; }

.faqs { background: #fff; }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 45px; align-items: start; }
.faq-intro { position: sticky; top: 105px; }
.faq-intro p:last-child { color: var(--muted); }
.faq-list { display: grid; gap: 9px; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 7px 18px rgba(8,32,68,.05); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; gap: 15px; align-items: center; padding: 14px 16px; border: 0; color: var(--ink); background: transparent; text-align: left; font-size: .8rem; font-weight: 700; cursor: pointer; }
.faq-item i { width: 25px; height: 25px; display: grid; flex: 0 0 25px; place-items: center; border-radius: 50%; color: var(--blue-700); background: var(--blue-100); font-style: normal; transition: transform .2s ease; }
.faq-item button[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-item div { padding: 0 16px 14px; }
.faq-item p { margin: 0; color: var(--muted); font-size: .76rem; }

.contact { color: #fff; background: var(--navy-950); }
.contact-copy { margin-bottom: 28px; }
.contact-bottom { display: grid; grid-template-columns: 0.8fr .52fr; gap: 24px; align-items: start; }
.contact-copy h2 { color: #fff; }
.contact-copy > p:not(.eyebrow) { color: #c6d8ed; }
.contact-reassurance { display: grid; gap: 8px; margin-top: 18px; }
.contact-reassurance span { position: relative; padding-left: 22px; color: #dce9f8; font-size: .78rem; font-weight: 600; }
.contact-reassurance span::before { content: "✓"; position: absolute; left: 0; color: #4ed98e; font-weight: 700; }
.contact-form { display: grid; gap: 10px; padding: 22px; border: 1px solid #9aa6b4; border-radius: var(--radius-md); background: #b8c2ce; }
.contact-form label { color: #2d3a4e; text-transform: uppercase; letter-spacing: .05em; }
.contact-form label > span.label-text { color: #2d3a4e; }
.contact-form .label-opt { color: #7a8a9b; text-transform: none; letter-spacing: 0; font-weight: 400; }
.contact-form input, .contact-form select, .contact-form textarea { color: #1a2a45; background: #cfd6df; border-color: #9aa6b4; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9aabbf; }
.contact-form .privacy-note { color: #5a6a80; }
.form-req-note { margin: 0; color: #4a5568; font-size: .72rem; }
.req-star { color: #c0392b; text-decoration: none; font-style: normal; margin-left: 1px; }
.button-send { display: inline-flex; align-items: center; gap: 8px; color: #fff; background: #5e6978; box-shadow: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
label { display: grid; gap: 5px; color: #dce9f8; font-size: .72rem; font-weight: 700; }
label > span { color: #94acc8; font-weight: 600; }
input, textarea, select { width: 100%; border: 1px solid rgba(191,217,242,.25); border-radius: 8px; color: #fff; background: rgba(255,255,255,.08); }
input, select { min-height: 42px; padding: 0 11px; }
textarea { min-height: 84px; padding: 10px 11px; resize: vertical; }
select option { color: var(--ink); background: #fff; }
.privacy-note { margin: 0; color: #9db1c8; font-size: .67rem; line-height: 1.4; }
.privacy-note a { color: #000; }
.form-status { min-height: 0; margin: 0; font-size: .72rem; font-weight: 600; }
.form-status:empty { display: none; }
.form-status.success { color: #6bf0a6; }
.form-status.error { color: #ff9d9d; }
.contact-sidebar { padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.05); }
.contact-sidebar h3 { margin: 0 0 16px; color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-sidebar p { margin: 15px 0 0; color: #9fb4cb; font-size: .69rem; }
.contact-sidebar h3 { font-size: 1rem; font-weight: 700; letter-spacing: normal; text-transform: none; color: #fff; margin-bottom: 4px; }
.sidebar-intro { margin: 0 0 16px !important; color: #9fb4cb; font-size: .76rem; line-height: 1.5; }

.footer-contact-link { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; color: #c3d1e3; font-size: .74rem; text-decoration: none; overflow-wrap: anywhere; transition: color .15s; }
.footer-contact-link:hover { color: #fff; }
.footer-contact-link .sidebar-icon { flex-shrink: 0; }

.sidebar-link { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; color: #dce9f8; font-size: .78rem; text-decoration: none; transition: color .15s ease; overflow-wrap: anywhere; }
.sidebar-link:last-of-type { margin-bottom: 0; }
.sidebar-link:hover { color: #fff; }

.sidebar-icon { flex-shrink: 0; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 7px; }
.sidebar-icon-email { background: rgba(255,255,255,.12); color: #a8c4e0; }
.sidebar-icon-linkedin { background: #0a66c2; color: #fff; }
.sidebar-icon-whatsapp { background: #25d366; color: #fff; }

.sidebar-text { line-height: 1.35; }

.site-footer { color: #b8c7db; background: #020c19; }
.footer-main { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 28px; padding-top: 20px; padding-bottom: 14px; }
.footer-title { margin: 0; color: #fff; font-size: .88rem; font-family: var(--font-heading); font-weight: 700; }
.footer-main h3 { margin: 0 0 6px; color: #fff; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-main p { margin: 4px 0 0; font-size: .72rem; }
.footer-main nav, .footer-main > div:last-child { display: flex; flex-direction: column; align-items: flex-start; }
.footer-main a { margin: 0 0 4px; color: #c3d1e3; font-size: .72rem; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 9px; padding-bottom: 10px; border-top: 1px solid rgba(255,255,255,.1); font-size: .67rem; }
.footer-bottom p { margin: 0; }

.modal[hidden] { display: none; }
.modal { position: fixed; z-index: 3000; inset: 0; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(1,9,20,.76); backdrop-filter: blur(5px); }
.modal-dialog { position: relative; z-index: 1; width: min(500px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: 29px; border-radius: 20px; background: #fff; box-shadow: 0 30px 80px rgba(0,0,0,.38); }
.modal-dialog h2 { margin: 0; font-size: 1.8rem; line-height: 1.1; }
.modal-dialog > p:not(.eyebrow) { color: var(--muted); }
.modal-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: #edf3f8; font-size: 1.35rem; cursor: pointer; }
.modal-form { display: grid; gap: 11px; }
.modal-form label { color: var(--navy-800); }
.modal-form input, .modal-form select { color: var(--ink); border-color: #ced9e6; background: #fff; }
.mobile-cta { display: none; }

@media (max-width: 1100px) {
  .header-actions { display: none; }
  .menu-toggle { display: block; order: 3; margin-left: auto; }
  .primary-nav { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; margin: 0; padding: 15px 20px 20px; border: 1px solid rgba(255,255,255,.12); border-top: 0; border-radius: 0 0 14px 14px; background: var(--navy-900); box-shadow: var(--shadow-md); }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { padding: 8px 0; font-size: .92rem; }
  .primary-nav a::after { display: none; }
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trainer-panel { grid-template-columns: 224px 1fr; }
  .program-family-grid { grid-template-columns: 1fr; }
  .family-header { min-height: 0; }
  .audience-panels { grid-template-columns: 1fr; }
  .contact-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 850px) {
  .section-pad { padding: 38px 0; }
  .hero-layout { min-height: 0; grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 42px; text-align: center; }
  .hero-copy h1, .hero-lead { margin-inline: auto; }
  .hero-points, .hero-actions { justify-content: center; }
  .hero-points { flex-wrap: wrap; }
  .hero-visual { min-height: 410px; }
  .trainer-panel { grid-template-columns: 1fr; }
  .trainer-media { width: min(100%, 520px); margin-inline: auto; }
  .book-grid { grid-template-columns: 1fr 1fr; }
  .level-grid { grid-template-columns: 1fr 1fr; }
  .comparison-card h3 { font-size: .95rem; }
  .outcome-groups { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid article { border-bottom: 1px solid var(--line); }
  .benefit-grid article:nth-child(2n) { border-right: 0; }
  .benefit-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .faq-layout { grid-template-columns: 1fr; gap: 24px; }
  .faq-intro { position: static; }
  .contact-sidebar { display: block; }
  .footer-main { grid-template-columns: 1.3fr .8fr 1fr; gap: 25px; }
}

@media (max-width: 680px) {
  .container { width: min(var(--container), calc(100% - 26px)); }
  body { padding-bottom: 62px; }
  .section-heading h2, .faq-intro h2, .contact-copy h2 { font-size: 1.9rem; }
  .hero-copy h1 { font-size: clamp(2.15rem, 10vw, 3.45rem); }
  .hero-lead { font-size: .96rem; }
  .hero-points { display: grid; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 340px; }
  .trainer-panel { padding: 18px; }
  .book-grid { grid-template-columns: 1fr; }
  .level-grid { grid-template-columns: 1fr; }
  .level-card { min-height: 205px; }
  .pillar-grid, .difference-grid { grid-template-columns: 1fr 1fr; }
  .advisory-card { align-items: stretch; flex-direction: column; }
  .advisory-card .button { width: 100%; }
  table, thead, tbody, tr, th, td { display: block; }
  thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  tbody { display: grid; gap: 11px; padding: 12px; }
  tbody tr { overflow: hidden; border: 1px solid var(--line); border-radius: 11px; background: #fff; box-shadow: var(--shadow-sm); }
  tbody th { width: 100%; padding: 11px 12px; border-bottom: 1px solid var(--line); background: #edf3fa; }
  tbody td { width: 100%; display: grid; grid-template-columns: 95px 1fr; gap: 8px; padding: 11px 12px; }
  tbody td::before { content: attr(data-label); color: var(--blue-700); font-size: .66rem; font-weight: 700; text-transform: uppercase; }
  .audience-levels { grid-template-columns: 1fr; }
  .audience-levels > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article, .benefit-grid article:nth-child(2n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-grid article:last-child { border-bottom: 0; }
  .format-table-wrap { overflow: visible; border: 0; box-shadow: none; background: transparent; }
  .format-table tbody { padding: 0; }
  .format-table tbody td::before { content: none; }
  .format-table tbody td { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .contact-sidebar { display: block; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
  .mobile-cta { position: fixed; z-index: 2000; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(255,255,255,.15); background: rgba(4,19,39,.97); backdrop-filter: blur(12px); }
  .mobile-cta button, .mobile-cta a { min-height: 44px; display: grid; place-items: center; border: 0; border-radius: 8px; color: #fff; font-size: .78rem; font-weight: 700; text-decoration: none; }
  .mobile-cta button { background: var(--blue-700); }
  .mobile-cta a { background: var(--green-600); }
}

@media (max-width: 430px) {
  .pillar-grid, .difference-grid { grid-template-columns: 1fr; }
  .book-card { grid-template-columns: 64px 1fr; }
  .book-card img { width: 64px; height: 94px; }
  .modal-dialog { padding: 26px 19px 21px; }
}


/* Condensed Program Format and Delivery table */
.format.section-pad {
  padding-top: 44px;
  padding-bottom: 48px;
}
.format .section-heading {
  margin-bottom: 22px;
}
.format .section-heading h2 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}
.format .section-heading p:last-child {
  margin-top: 8px;
  font-size: .9rem;
}
.format-table {
  font-size: .78rem;
  line-height: 1.32;
}
.format-table thead th {
  padding: 9px 13px;
}
.format-table thead th:first-child {
  width: 175px;
}
.format-table tbody th,
.format-table tbody td {
  padding: 8px 13px;
}
.format-table tbody th {
  font-size: .76rem;
}
.format-table tbody td {
  color: #33415a;
  font-size: .82rem;
  font-weight: 400;
}
@media (max-width: 700px) {
  .format.section-pad {
    padding-top: 34px;
    padding-bottom: 38px;
  }
  .format-table tbody th,
  .format-table tbody td {
    padding: 10px 12px;
  }
}


/* Program A/B tile redesign — matches the supplied dark card reference */
.program-family-grid {
  align-items: stretch;
}

.program-family {
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(135, 180, 235, .34);
  border-radius: 9px;
  background: linear-gradient(145deg, #073367, #08264f 72%);
  box-shadow: 0 16px 34px rgba(6, 20, 45, .14);
}

.program-family.family-ea {
  border-color: rgba(187, 162, 255, .34);
  background: linear-gradient(145deg, #2b215f, #3d2684 72%);
}

.family-waf,
.family-ea {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.family-header {
  position: relative;
  min-height: 205px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 18px;
  align-items: center;
  padding: 27px 28px 18px;
  background: transparent;
}

.family-header-copy {
  min-width: 0;
}

.family-kicker {
  margin-bottom: 9px;
  color: #93cfff;
  font-size: .66rem;
  letter-spacing: .12em;
}

.family-ea .family-kicker {
  color: #cbbdff;
}

.family-header h3 {
  max-width: 390px;
  font-size: clamp(1.05rem, 1.55vw, 1.48rem);
  line-height: 1.26;
  letter-spacing: -.02em;
}

.family-header > p:last-child,
.family-header-copy > p:last-child {
  margin-top: 15px;
  color: #d8e9fb;
  font-size: .76rem;
  line-height: 1.55;
  text-wrap: balance;
}

.family-ea .family-header-copy > p:last-child {
  color: #e7defe;
}

.family-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  align-self: start;
  margin-top: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.35), rgba(84,169,245,.36) 45%, rgba(45,110,189,.32));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 10px 24px rgba(0,0,0,.18);
}

.family-ea .family-icon {
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.38), rgba(177,141,255,.34) 45%, rgba(92,56,182,.34));
}

.family-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #d6f1ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.family-ea .family-icon svg {
  stroke: #f1eaff;
}

.level-grid {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 28px 15px;
}

.level-card {
  min-height: 75px;
  justify-content: center;
  align-items: center;
  padding: 14px 10px;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 6px;
  background: linear-gradient(180deg, #ffffff, #eef5ff);
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

.family-ea .level-card {
  background: linear-gradient(180deg, #ffffff, #f3efff);
}

.level-badge {
  padding: 0;
  border-radius: 0;
  color: #0c3b73;
  background: transparent;
  font-size: .64rem;
  line-height: 1.2;
  letter-spacing: .04em;
}

.family-ea .level-badge,
.level-advanced .level-badge {
  color: #3e2a83;
  background: transparent;
}

.level-card strong {
  margin-top: 4px;
  color: #193354;
  font-size: .76rem;
  line-height: 1.2;
}

.level-card p,
.level-actions {
  display: none;
}

.level-card-action {
  margin: 6px 0 0;
  padding: 0;
  border: 0;
  color: #0756c9;
  background: transparent;
  font-size: .61rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.family-ea .level-card-action {
  color: #5732b1;
}

.family-view-details {
  align-self: center;
  margin: 1px auto 20px;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.94);
  background: transparent;
  font-size: .68rem;
  font-weight: 700;
  cursor: pointer;
}

.family-view-details:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.module-panel {
  background: rgba(255,255,255,.96);
}

@media (max-width: 900px) {
  .family-header {
    grid-template-columns: minmax(0, 1fr) 76px;
    min-height: 190px;
    padding: 24px 22px 16px;
  }

  .family-icon {
    width: 72px;
    height: 72px;
  }

  .family-icon svg {
    width: 40px;
    height: 40px;
  }

  .level-grid {
    padding-inline: 22px;
  }
}

@media (max-width: 560px) {
  .family-header {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .family-icon {
    display: none;
  }

  .level-grid {
    grid-template-columns: 1fr;
  }

  .level-card {
    min-height: 68px;
  }
}


/* Program tile refinements and golden details CTA */
.program-family-grid {
  align-items: stretch;
}

.program-family {
  display: flex;
  flex-direction: column;
}

.family-header {
  height: 205px;
  min-height: 205px;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.level-card {
  width: 100%;
  height: 78px;
  min-height: 78px;
  max-height: 78px;
}

.level-card strong {
  white-space: nowrap;
}

.family-view-details {
  display: none !important;
}

.program-details-cta {
  padding: 22px 24px 24px;
  border: 1px solid rgba(184, 128, 34, .42);
  border-radius: 12px;
  color: #201406;
  background: linear-gradient(135deg, #f6c56a, #d49122 48%, #a7670f);
  box-shadow: 0 14px 34px rgba(109, 68, 10, .18);
  text-align: center;
}

.program-details-cta h3 {
  margin: 0;
  color: #191005;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.program-details-cta p {
  margin: 4px 0 13px;
  color: rgba(32, 20, 6, .82);
  font-size: .82rem;
  font-weight: 600;
}

.program-details-cta .button {
  min-height: 38px;
  padding: .55rem 1.15rem;
  border-radius: 7px;
  color: #0b2346;
  background: #fff;
  box-shadow: 0 8px 18px rgba(82, 49, 4, .18);
  font-size: .72rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .family-header {
    height: auto;
    min-height: 190px;
  }

  .level-card {
    height: 74px;
    min-height: 74px;
    max-height: 74px;
  }

  .program-details-cta {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .family-header {
    min-height: 0;
  }

  .level-grid {
    grid-template-columns: 1fr;
  }

  .level-card {
    height: auto;
    min-height: 68px;
    max-height: none;
  }

  .program-details-cta h3 {
    font-size: 1rem;
  }
}


/* Final requested refinements: compact CTA, independent program-card expansion, reduced upper gaps */
.program-family-grid {
  align-items: start;
}

.program-family {
  align-self: start;
  min-height: 390px;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.program-details-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px 18px 15px;
  border-radius: 10px;
}

.advisory-cta {
  padding: 13px 18px 15px;
  border: 1px solid rgba(10, 36, 90, .3);
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #07254b, #1e3a8a 48%, #0b2460);
  box-shadow: 0 14px 34px rgba(7, 26, 64, .22);
  text-align: center;
}

.advisory-eyebrow {
  margin: 0 0 4px;
  color: #7dd3fc;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.advisory-cta h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: .96rem;
  line-height: 1.18;
  letter-spacing: -.01em;
}

.advisory-cta .button {
  min-height: 32px;
  padding: .42rem .95rem;
  border-radius: 6px;
  color: #fff;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  font-size: .66rem;
  font-weight: 700;
}

.program-details-cta h3 {
  margin: 3px 0 9px;
  font-size: .96rem;
  line-height: 1.18;
}

.program-details-cta p {
  order: -1;
  margin: 0 0 2px;
  color: rgba(32, 20, 6, .6);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.2;
}

.program-details-cta .button {
  min-height: 32px;
  padding: .42rem .95rem;
  border-radius: 6px;
  font-size: .66rem;
}

.comparison.section-pad {
  padding-top: 42px;
}

.audience.section-pad {
  padding-top: 40px;
}

.format.section-pad {
  padding-top: 30px;
}

.faqs.section-pad {
  padding-top: 38px;
}

.contact.section-pad {
  padding-top: 36px;
}

@media (max-width: 900px) {
  .program-family {
    min-height: 0;
  }

  .cta-row {
    grid-template-columns: 1fr;
  }

  .program-details-cta,
  .advisory-cta {
    padding: 13px 16px 15px;
  }

  .comparison.section-pad,
  .audience.section-pad,
  .format.section-pad,
  .faqs.section-pad,
  .contact.section-pad {
    padding-top: 32px;
  }
}

@media (max-width: 560px) {
  .program-details-cta {
    margin-top: 12px;
    padding: 12px 14px 14px;
  }

  .program-details-cta h3 {
    font-size: .9rem;
  }

  .program-details-cta p {
    font-size: .7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* Balanced typography, Option 1 hero illustration */
@media (min-width: 851px) {
  .hero-points { width: max-content; max-width: 100%; }
}

/* Font Option 2: Lato headings + Open Sans body */
body,
p,
li,
td,
th,
label,
input,
select,
textarea,
button,
a {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.eyebrow,
.family-kicker,
.level-badge {
  font-family: var(--font-heading);
}

.primary-nav a,
.button,
.text-button,
.book-card a,
.module-close,
.waf-exclusive summary,
.faq-item button,
.mobile-cta button,
.mobile-cta a {
  font-weight: 600;
}

.hero-copy h1,
.section-heading h2,
.faq-intro h2,
.contact-copy h2,
.family-header h3,
.trainer-copy h3 {
  font-weight: 700;
}

.hero-lead,
.section-heading > p:last-child,
.trainer-copy > p,
.family-header > p:last-child,
.level-card p,
.module-list span,
.book-card p,
.faq-item p {
  font-weight: 400;
}



/* Final fix: keep Program A and Program B boxes independent during module expansion */
.program-family-grid {
  align-items: start !important;
  grid-auto-rows: auto !important;
}

.program-family {
  height: auto !important;
  align-self: start !important;
}

.program-family .module-panel:not([hidden]) {
  max-height: 520px;
  overflow-y: auto;
}

@media (min-width: 1100px) {
  .trainer .section-heading,
  .programs .section-heading,
  .comparison .section-heading,
  .audience .section-heading,
  .outcomes .section-heading,
  .benefits .section-heading {
    max-width: none;
  }
  .trainer .section-heading h2,
  .programs .section-heading h2,
  .comparison .section-heading h2,
  .audience .section-heading h2,
  .outcomes .section-heading h2,
  .benefits .section-heading h2 {
    white-space: nowrap;
    font-size: 2rem;
  }
  .programs .section-heading > p:last-child {
    white-space: nowrap;
    font-size: 1rem;
  }
}
