.elementor-25683 .elementor-element.elementor-element-2e6939e{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:stretch;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-25683 .elementor-element.elementor-element-5f0505b{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-5f0505b */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1a3358;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e9c8;
  --teal: #1d9e75;
  --teal-light: #e1f5ee;
  --purple: #6b46c1;
  --purple-light: #f3eafd;
  --cream: #faf9f6;
  --white: #ffffff;
  --text: #0a1628;
  --text-muted: #4a5568;
  --text-hint: #8896aa;
  --border: rgba(10,22,40,0.10);
  --border-gold: rgba(201,168,76,0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(10,22,40,0.10);
  --shadow-card: 0 2px 12px rgba(10,22,40,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

/* ════════ NAV ════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(8px);
  padding: 14px 24px;
}
.nav-inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 65px; }
.nav-logo span {
  font-family: 'Playfair Display', serif; font-weight: 600; font-size: 16px; color: var(--white);
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13px; font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--navy); border-radius: 20px;
  padding: 9px 20px; font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-toggle { display: none; }

/* ════════ HERO ════════ */
.hero {
  background: var(--navy);
  padding: 70px 24px 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -160px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -200px; left: -160px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,158,117,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1500px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid var(--border-gold);
  border-radius: 20px; padding: 5px 16px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 22px;
}
.hero-eyebrow span { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; }
.hero h1 {
  font-family: 'Playfair Display', serif; font-weight: 600;
  font-size: clamp(34px, 4.6vw, 54px); line-height: 1.15; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p.lead {
  color: rgba(255,255,255,0.62); font-size: 17px; font-weight: 300;
  max-width: 480px; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-gold {
  background: var(--gold); color: var(--navy); border: none;
  border-radius: var(--radius-sm); padding: 15px 30px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.01em; transition: background 0.15s, transform 0.1s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline-light {
  background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm); padding: 15px 30px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.15s;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat-num {
  font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600;
  color: var(--gold-light); display: block; line-height: 1; margin-bottom: 4px;
}
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }

/* ── Hero preview card ── */
.preview-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  overflow: hidden;
  transform: rotate(1.2deg);
}
.preview-card-header {
  background: var(--navy-mid); padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.preview-card-header .dot-row { display: flex; gap: 6px; }
.preview-card-header .dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.preview-card-header .tag {
  font-size: 10px; color: var(--gold-light); letter-spacing: 0.08em; text-transform: uppercase;
}
.preview-card-body { padding: 22px; }
.preview-label {
  font-size: 11px; color: var(--text-hint); letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 14px;
}
.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.preview-stat {
  border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px;
  position: relative; overflow: hidden;
}
.preview-stat::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; }
.preview-stat.gold::after { background: var(--gold); }
.preview-stat.green::after { background: var(--teal); }
.preview-stat-label { font-size: 10px; color: var(--text-hint); margin-bottom: 4px; letter-spacing: 0.03em; }
.preview-stat-val {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; color: var(--text); line-height: 1;
}
.preview-stat-val.green { color: var(--teal); }
.preview-bars { display: flex; align-items: flex-end; gap: 10px; height: 90px; padding: 0 4px; }
.preview-bar { flex: 1; border-radius: 6px 6px 0 0; position: relative; }
.preview-bar span {
  position: absolute; top: -18px; left: 0; right: 0; text-align: center;
  font-size: 9px; color: var(--text-hint); font-weight: 600;
}
.preview-caption {
  font-size: 12px; color: var(--text-muted); text-align: center; padding-top: 14px; border-top: 1px solid var(--border); margin-top: 14px;
}
.preview-caption strong { color: var(--navy); }

/* ════════ SECTION GENERAL ════════ */
.section { padding: 80px 24px; max-width: 1500px; margin: 0 auto; }
.section-tight { padding-top: 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.section-eyebrow span { width: 14px; height: 1.5px; background: var(--gold); display: inline-block; }
.section-head h2 {
  font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.01em; margin-bottom: 14px; color: var(--navy);
}
.section-head p { color: var(--text-muted); font-size: 16px; }

/* ════════ HOW IT WORKS ════════ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-card);
}
.step-num {
  font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 600; color: var(--gold);
  letter-spacing: 0.08em; margin-bottom: 14px;
}
.step-card h3 {
  font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--navy);
  margin-bottom: 10px;
}
.step-card p { color: var(--text-muted); font-size: 13.5px; }

/* ════════ PROGRAM CARDS ════════ */
.programs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.program-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  overflow: hidden; transition: box-shadow 0.2s, transform 0.2s;
}
.program-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.program-card.featured { border: 1.5px solid var(--border-gold); position: relative; }
.program-band {
  height: 6px; width: 100%;
}
.program-band.ifrs-cert { background: var(--teal); }
.program-band.dipifr { background: var(--navy-light); }
.program-band.dataanalysis { background: var(--purple); }
.program-band.powerbi { background: var(--gold); }

.program-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.program-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-hint); margin-bottom: 8px;
}
.program-card h3 {
  font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--navy);
  margin-bottom: 10px; line-height: 1.25;
}
.program-card p.desc { color: var(--text-muted); font-size: 13px; margin-bottom: 16px; flex: 1; }
.program-includes {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600;
  color: var(--gold); background: var(--gold-pale); border-radius: 14px; padding: 4px 10px;
  margin-bottom: 14px; align-self: flex-start;
}
.program-roi {
  background: var(--cream); border-radius: 10px; padding: 10px 12px; margin-bottom: 16px;
  font-size: 12px; color: var(--text-muted);
}
.program-roi b { color: var(--navy); font-family: 'Playfair Display', serif; font-size: 15px; }
.program-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy); font-weight: 600; font-size: 13px; text-decoration: none;
  border-top: 1px solid var(--border); padding-top: 14px; margin-top: auto;
  transition: color 0.15s, gap 0.15s;
}
.program-link:hover { color: var(--teal); gap: 10px; }

/* ════════ CALCULATOR EMBED SECTION ════════ */
.calc-section {
  background: var(--navy); padding: 80px 24px; position: relative; overflow: hidden;
}
.calc-section::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.calc-section-inner { max-width: 1500px; margin: 0 auto; position: relative; z-index: 2; }
.calc-section .section-head h2 { color: var(--white); }
.calc-section .section-head p { color: rgba(255,255,255,0.55); }
.calc-section .section-eyebrow { color: var(--gold-light); }
.calc-section .section-eyebrow span { background: var(--gold); }

.calc-frame-wrap {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
.calc-frame-bar {
  background: var(--navy-mid); padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.calc-frame-bar .dot-row { display: flex; gap: 6px; }
.calc-frame-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.calc-frame-bar .url {
  font-size: 11px; color: rgba(255,255,255,0.4); font-family: monospace;
}
.calc-frame-bar .open-link {
  font-size: 12px; color: var(--gold-light); text-decoration: none; font-weight: 600;
}
.calc-frame iframe { width: 100%; height: 760px; border: none; display: block; }
.calc-fallback {
  padding: 60px 30px; text-align: center; color: var(--text-muted);
}
.calc-fallback .btn-gold { margin-top: 18px; }

/* ════════ ROUTE MAP / WHICH PROGRAM ════════ */
.route-table-wrap { overflow-x: auto; }
.route-table {
  width: 100%; border-collapse: collapse; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden;
  min-width: 720px;
}
.route-table th {
  background: var(--navy); color: var(--white); font-size: 12px; font-weight: 600;
  text-align: left; padding: 14px 18px; letter-spacing: 0.02em;
}
.route-table td {
  padding: 16px 18px; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--text-muted); vertical-align: top;
}
.route-table tr:last-child td { border-bottom: none; }
.route-table td:first-child { color: var(--navy); font-weight: 600; }
.route-table .tag {
  display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 12px;
  background: var(--teal-light); color: var(--teal); margin-top: 4px;
}

/* ════════ TESTIMONIAL / TRUST STRIP ════════ */
.trust-strip {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: 28px 32px;
  display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap;
  text-align: center;
}
.trust-item { font-size: 13px; color: var(--text-muted); }
.trust-item strong { color: var(--navy); display: block; font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 4px; }
.trust-sep { width: 1px; height: 36px; background: var(--border); }

/* ════════ FINAL CTA ════════ */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius); padding: 56px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; right: -100px; top: -100px; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(201,168,76,0.1);
}
.final-cta h2 {
  font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(24px, 3.2vw, 34px);
  color: var(--white); margin-bottom: 14px; position: relative; z-index: 2;
}
.final-cta p { color: rgba(255,255,255,0.6); margin-bottom: 28px; font-size: 15px; position: relative; z-index: 2; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ════════ FOOTER ════════ */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.45); padding: 40px 24px 28px;
  text-align: center; font-size: 12px;
}
.footer a { color: var(--gold-light); text-decoration: none; }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 18px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .preview-card { transform: none; max-width: 480px; margin: 0 auto; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .programs-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 18px 80px; }
  .section { padding: 56px 18px; }
  .hero-stats { gap: 22px; }
  .trust-strip { gap: 20px; padding: 22px; }
  .trust-sep { display: none; }
  .calc-frame iframe { height: 640px; }
}/* End custom CSS */