:root {
  --aba-navy: #0B1F3A;
  --aba-navy-2: #06172D;
  --aba-blue: #2563EB;
  --aba-cyan: #22D3EE;
  --aba-sky: #E6F4FF;
  --aba-sand: #D9C6A5;
  --aba-white: #F8FAFC;
  --aba-charcoal: #1F2937;
  --aba-slate: #64748B;
  --aba-light: #E5E7EB;
  --aba-card: #FFFFFF;
  --aba-radius-sm: 14px;
  --aba-radius: 22px;
  --aba-radius-lg: 34px;
  --aba-shadow: 0 24px 70px rgba(11, 31, 58, .12);
  --aba-shadow-soft: 0 16px 42px rgba(11, 31, 58, .08);
  --aba-border: 1px solid rgba(100, 116, 139, .18);
  --aba-container: 1180px;
  --aba-font-heading: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --aba-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--aba-font-body);
  color: var(--aba-charcoal);
  background: var(--aba-white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.aba-menu-open { overflow: hidden; }

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

img { max-width: 100%; height: auto; display: block; }

button, input, textarea, select { font: inherit; }

svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aba-container {
  width: min(var(--aba-container), calc(100% - 40px));
  margin-inline: auto;
}

.aba-skip-link {
  position: fixed;
  left: 20px;
  top: 14px;
  transform: translateY(-140%);
  padding: 10px 14px;
  z-index: 9999;
  background: var(--aba-navy);
  color: #fff;
  border-radius: 999px;
}

.aba-skip-link:focus { transform: translateY(0); }

/* Header */
.aba-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(248, 250, 252, .86);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(229, 231, 235, .72);
  transition: box-shadow .25s ease, background .25s ease;
}

.aba-site-header.is-scrolled {
  background: rgba(248, 250, 252, .94);
  box-shadow: 0 12px 34px rgba(11, 31, 58, .08);
}

.aba-header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

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

.aba-logo-img,
.aba-logo-custom img {
  width: 214px;
  max-height: 56px;
  object-fit: contain;
}

.aba-logo-custom .custom-logo-link { display: inline-flex; }

.aba-primary-nav { justify-self: end; }

.aba-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.aba-nav-list a {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--aba-navy);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.aba-nav-list a:hover,
.aba-nav-list a:focus-visible {
  background: var(--aba-sky);
  color: var(--aba-blue);
  outline: none;
}

.aba-header-cta,
.aba-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -.01em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.aba-header-cta,
.aba-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--aba-blue), #1554DB);
  box-shadow: 0 14px 30px rgba(37, 99, 235, .24);
}

.aba-header-cta:hover,
.aba-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, .32);
}

.aba-btn-secondary {
  color: var(--aba-blue);
  background: #fff;
  border: 1px solid rgba(37, 99, 235, .35);
}

.aba-btn-secondary:hover {
  border-color: var(--aba-blue);
  box-shadow: 0 14px 30px rgba(37, 99, 235, .12);
  transform: translateY(-2px);
}

.aba-btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
}

.aba-btn-ghost:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-2px);
}

.aba-btn-icon svg { display: block; font-size: 18px; }

.aba-btn-full { width: 100%; }

.aba-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--aba-sky);
  color: var(--aba-navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.aba-mobile-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.aba-mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.aba-mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.aba-mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.aba-main { overflow: hidden; }

.aba-hero {
  position: relative;
  padding: 84px 0 58px;
  background:
    radial-gradient(circle at 22% 12%, rgba(34, 211, 238, .10), transparent 28%),
    radial-gradient(circle at 83% 10%, rgba(37, 99, 235, .10), transparent 32%),
    linear-gradient(180deg, #fff 0%, var(--aba-white) 100%);
}

.aba-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(37, 99, 235, .11) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, #000 0 28%, transparent 52%);
  opacity: .8;
  pointer-events: none;
}

.aba-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  pointer-events: none;
}

.aba-bg-shape-one {
  width: 400px;
  height: 400px;
  right: -170px;
  top: 26px;
  background: rgba(230, 244, 255, .88);
}

.aba-bg-shape-two {
  width: 220px;
  height: 220px;
  left: -110px;
  bottom: 60px;
  background: rgba(34, 211, 238, .10);
}

.aba-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 58px;
  align-items: center;
}

.aba-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 999px;
  background: rgba(230, 244, 255, .66);
  color: var(--aba-blue);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.aba-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--aba-cyan);
  box-shadow: 0 0 0 5px rgba(34, 211, 238, .14);
}

.aba-hero h1,
.aba-section h2,
.aba-final-cta h2 {
  font-family: var(--aba-font-heading);
  color: var(--aba-navy);
  letter-spacing: -.055em;
  line-height: 1.04;
}

.aba-hero h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(44px, 5.1vw, 74px);
  font-weight: 800;
}

.aba-hero h1 span,
.aba-section h2 span,
.aba-final-cta h2 span { color: var(--aba-cyan); }

.aba-hero-copy > p {
  max-width: 610px;
  margin: 24px 0 30px;
  color: var(--aba-slate);
  font-size: 18px;
}

.aba-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.aba-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.aba-hero-proof div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(229, 231, 235, .72);
  box-shadow: 0 12px 32px rgba(11, 31, 58, .05);
}

.aba-hero-proof svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 10px;
  color: var(--aba-blue);
  background: var(--aba-sky);
}

.aba-hero-proof strong {
  color: var(--aba-navy);
  font-size: 13px;
  line-height: 1.2;
}

.aba-hero-proof span {
  color: var(--aba-slate);
  font-size: 12px;
  line-height: 1.35;
}

/* Dashboard */
.aba-dashboard-card {
  position: relative;
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .82)),
    radial-gradient(circle at 100% 100%, rgba(34, 211, 238, .20), transparent 42%);
  border: 1px solid rgba(229, 231, 235, .86);
  box-shadow: var(--aba-shadow);
}

.aba-dashboard-card::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -18px;
  width: 168px;
  height: 168px;
  background: linear-gradient(135deg, rgba(34, 211, 238, .46), rgba(37, 99, 235, .12));
  clip-path: polygon(0 70%, 75% 0, 100% 0, 100% 25%, 28% 100%, 0 100%);
  opacity: .55;
  pointer-events: none;
}

.aba-dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.aba-dashboard-head span,
.aba-metric span,
.aba-flow span {
  display: block;
  color: var(--aba-slate);
  font-size: 12px;
  font-weight: 700;
}

.aba-dashboard-head strong {
  display: block;
  color: var(--aba-navy);
  font-size: 19px;
  letter-spacing: -.02em;
}

.aba-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(34, 211, 238, .12);
  color: var(--aba-blue);
  font-size: 12px;
  font-weight: 800;
}

.aba-live-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--aba-cyan);
}

.aba-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.aba-metric {
  min-height: 126px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #F4F8FF);
  border: var(--aba-border);
}

.aba-metric strong {
  display: block;
  color: var(--aba-navy);
  font-size: 34px;
  line-height: 1;
  margin-top: 10px;
  letter-spacing: -.05em;
}

.aba-metric small { color: var(--aba-slate); font-weight: 700; }

.aba-metric i {
  display: block;
  height: 28px;
  margin-top: 14px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, transparent 0 25%, rgba(37, 99, 235, .8) 26% 30%, transparent 31% 48%, rgba(34, 211, 238, .8) 49% 53%, transparent 54% 100%),
    linear-gradient(180deg, rgba(230, 244, 255, .5), rgba(230, 244, 255, 0));
}

.aba-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: var(--aba-border);
}

.aba-flow > div {
  min-height: 152px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #F8FAFC, #EEF7FF);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.aba-flow b {
  display: inline-flex;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 10px;
  background: #fff;
  color: var(--aba-navy);
  font-size: 12px;
  box-shadow: 0 6px 18px rgba(11, 31, 58, .06);
}

.aba-flow em {
  height: 2px;
  background: linear-gradient(90deg, var(--aba-blue), var(--aba-cyan));
  position: relative;
}

.aba-flow em::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--aba-cyan);
  border-right: 2px solid var(--aba-cyan);
  transform: translateY(-50%) rotate(45deg);
}

.aba-flow-ai svg {
  width: 52px;
  height: 52px;
  margin-inline: auto;
  color: var(--aba-blue);
}

.aba-chart-line {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 10px;
  height: 112px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(230, 244, 255, .56), rgba(34, 211, 238, .16));
  overflow: hidden;
}

.aba-chart-line::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 26px;
  height: 64px;
  background: linear-gradient(135deg, transparent 0 20%, var(--aba-blue) 21% 22%, transparent 23% 42%, var(--aba-cyan) 43% 44%, transparent 45% 62%, var(--aba-blue) 63% 64%, transparent 65% 100%);
  opacity: .65;
}

.aba-chart-line span {
  flex: 1;
  min-width: 28px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--aba-cyan), var(--aba-blue));
  opacity: .84;
}

.aba-chart-line span:nth-child(1) { height: 24%; }
.aba-chart-line span:nth-child(2) { height: 38%; }
.aba-chart-line span:nth-child(3) { height: 44%; }
.aba-chart-line span:nth-child(4) { height: 58%; }
.aba-chart-line span:nth-child(5) { height: 74%; }
.aba-chart-line span:nth-child(6) { height: 94%; }

/* Shared sections */
.aba-section { padding: 78px 0; }

.aba-section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.aba-section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
}

.aba-section-head p {
  margin: 16px auto 0;
  color: var(--aba-slate);
  max-width: 680px;
  font-size: 17px;
}

.aba-card-grid { display: grid; gap: 22px; }
.aba-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.aba-card,
.aba-module-card,
.aba-seminar-card,
.aba-price-main,
.aba-deposit-card,
.aba-faq-item {
  background: var(--aba-card);
  border: var(--aba-border);
  box-shadow: var(--aba-shadow-soft);
}

.aba-card {
  padding: 26px;
  border-radius: var(--aba-radius);
}

.aba-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--aba-blue);
  background: var(--aba-sky);
}

.aba-icon svg { width: 28px; height: 28px; }

.aba-card h3,
.aba-module-card h3,
.aba-pillars h3,
.aba-audience-row h3,
.aba-method-row h3,
.aba-seminar-card h3 {
  margin: 18px 0 9px;
  font-family: var(--aba-font-heading);
  color: var(--aba-navy);
  line-height: 1.18;
  letter-spacing: -.025em;
}

.aba-card p,
.aba-module-card p,
.aba-pillars p,
.aba-audience-row p,
.aba-method-row p,
.aba-seminar-card p {
  margin: 0;
  color: var(--aba-slate);
  font-size: 14px;
}

.aba-problems { padding-top: 48px; background: linear-gradient(180deg, var(--aba-white), #fff); }

.aba-problem-card { min-height: 218px; }

.aba-problem-card:hover,
.aba-module-card:hover,
.aba-outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(11, 31, 58, .12);
}

.aba-problem-card,
.aba-module-card,
.aba-outcome-card { transition: transform .24s ease, box-shadow .24s ease; }

/* Solution */
.aba-solution {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 18% 50%, rgba(34, 211, 238, .20), transparent 24%),
    linear-gradient(135deg, var(--aba-navy), #06172D 62%, #071428);
}

.aba-solution::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .22;
}

.aba-solution .aba-container { position: relative; }

.aba-section-head-dark h2 { color: #fff; }

.aba-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(14px);
}

.aba-pillars article {
  padding: 36px;
  text-align: center;
}

.aba-pillars article + article { border-left: 1px solid rgba(255, 255, 255, .14); }

.aba-hex-icon {
  width: 76px;
  height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aba-cyan);
  background: rgba(34, 211, 238, .08);
  border: 2px solid rgba(34, 211, 238, .5);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}

.aba-hex-icon svg { width: 34px; height: 34px; }

.aba-pillars h3 { color: #fff; }
.aba-pillars p { color: rgba(230, 244, 255, .78); }

/* Audience */
.aba-audience {
  background: linear-gradient(180deg, #fff, var(--aba-white));
}

.aba-audience-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.aba-audience-row article {
  position: relative;
  min-height: 176px;
  padding: 24px 16px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(229, 231, 235, .82);
  box-shadow: 0 12px 30px rgba(11, 31, 58, .05);
}

.aba-audience-row article::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: var(--aba-sky);
  z-index: 0;
}

.aba-audience-row svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  color: var(--aba-blue);
}

.aba-audience-row h3 { font-size: 16px; margin-top: 26px; }
.aba-audience-row p { font-size: 13px; }

/* Outcomes */
.aba-outcomes { background: #fff; }

.aba-outcome-card {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.aba-outcome-card svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--aba-blue);
}

.aba-outcome-card p {
  color: var(--aba-navy);
  font-weight: 800;
  line-height: 1.35;
}

/* Modules */
.aba-modules {
  background:
    linear-gradient(180deg, var(--aba-white), #fff),
    radial-gradient(circle at 8% 20%, rgba(34, 211, 238, .10), transparent 25%);
}

.aba-module-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.aba-module-card {
  position: relative;
  padding: 24px;
  min-height: 266px;
  border-radius: 22px;
  overflow: hidden;
}

.aba-module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(230, 244, 255, .58), transparent 55%);
  pointer-events: none;
}

.aba-module-card > * { position: relative; }

.aba-module-card > span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--aba-blue);
  font-size: 14px;
  font-weight: 900;
}

.aba-module-card h3 { min-height: 48px; font-size: 17px; }
.aba-module-card p { font-size: 13px; }

/* Method */
.aba-method { padding-top: 54px; background: #fff; }

.aba-method-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}

.aba-method-row article > div {
  width: 86px;
  height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--aba-blue);
  background: linear-gradient(180deg, var(--aba-sky), rgba(230, 244, 255, .35));
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, .10);
}

.aba-method-row svg { width: 38px; height: 38px; }
.aba-method-row h3 { font-size: 16px; }
.aba-method-row p { font-size: 13px; }

/* Intro */
.aba-intro {
  background:
    radial-gradient(circle at 18% 25%, rgba(34, 211, 238, .12), transparent 24%),
    linear-gradient(180deg, #F0F8FF, var(--aba-sky));
}

.aba-intro-grid {
  display: grid;
  grid-template-columns: .76fr 1.18fr .72fr;
  gap: 24px;
  align-items: center;
}

.aba-intro-copy > span,
.aba-mentor-copy > span,
.aba-price-main > span,
.aba-deposit-card > span {
  display: inline-flex;
  color: var(--aba-blue);
  font-weight: 900;
  letter-spacing: .02em;
}

.aba-intro-copy h2 {
  margin: 5px 0 18px;
  max-width: 320px;
  font-size: clamp(30px, 3.2vw, 46px);
}

.aba-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.aba-check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--aba-charcoal);
  font-weight: 700;
}

.aba-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 211, 238, .14);
  color: var(--aba-blue);
  font-size: 12px;
  font-weight: 900;
}

.aba-avatar-proof {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

.aba-avatar-proof span {
  width: 36px;
  height: 36px;
  border: 3px solid var(--aba-sky);
  border-radius: 999px;
  margin-left: -8px;
  background: linear-gradient(135deg, var(--aba-sand), var(--aba-blue));
}

.aba-avatar-proof span:first-child { margin-left: 0; }
.aba-avatar-proof span:nth-child(2) { background: linear-gradient(135deg, var(--aba-cyan), var(--aba-blue)); }
.aba-avatar-proof span:nth-child(3) { background: linear-gradient(135deg, #fff, var(--aba-sand)); }

.aba-avatar-proof strong {
  margin-left: 10px;
  color: var(--aba-navy);
  font-size: 13px;
}

.aba-video-card {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #122949, #071427);
  box-shadow: var(--aba-shadow);
}

.aba-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(34, 211, 238, .22), transparent 34%),
    linear-gradient(180deg, transparent 35%, rgba(0,0,0,.62));
}

.aba-video-person {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64%;
  height: 88%;
  background: url('../img/instructor-placeholder.svg') center bottom/contain no-repeat;
  filter: saturate(.95);
}

.aba-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--aba-blue);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
}

.aba-play svg { margin-left: 4px; width: 30px; height: 30px; }

.aba-video-card > span {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 18px 22px;
  color: #fff;
  font-weight: 900;
}

.aba-seminar-card {
  padding: 24px;
  border-radius: 24px;
}

.aba-seminar-card h3 { margin-top: 0; }

.aba-seminar-card p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: var(--aba-navy);
  font-weight: 800;
}

.aba-seminar-card p svg { color: var(--aba-blue); width: 22px; height: 22px; }
.aba-seminar-card .aba-btn { margin-top: 18px; }
.aba-seminar-card small { display: block; text-align: center; color: var(--aba-slate); margin-top: 12px; }

/* Pricing */
.aba-pricing {
  background: #fff;
  padding-top: 70px;
  padding-bottom: 70px;
}

.aba-pricing-grid {
  display: grid;
  grid-template-columns: .85fr 1.4fr .85fr;
  gap: 28px;
  align-items: stretch;
}

.aba-price-main,
.aba-deposit-card {
  border-radius: 26px;
  padding: 30px;
}

.aba-price-main {
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(34, 211, 238, .28), transparent 30%),
    linear-gradient(135deg, var(--aba-navy), #06172D);
}

.aba-price-main span { color: rgba(230, 244, 255, .82); }

.aba-price-main strong,
.aba-deposit-card strong {
  display: block;
  margin: 16px 0 6px;
  font-family: var(--aba-font-heading);
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -.06em;
}

.aba-price-main small,
.aba-deposit-card small { font-size: .36em; letter-spacing: 0; }

.aba-price-main p { margin: 0; color: rgba(230, 244, 255, .78); font-weight: 700; }

.aba-price-notes {
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.aba-deposit-card {
  background: linear-gradient(180deg, #FBF5EA, #fff);
  border-color: rgba(217, 198, 165, .55);
}

.aba-deposit-card > span { color: var(--aba-navy); }
.aba-deposit-card strong { color: var(--aba-navy); font-size: clamp(36px, 3.2vw, 52px); }
.aba-deposit-card .aba-btn { margin-top: 18px; }
.aba-deposit-card > small {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
  color: var(--aba-slate);
  font-size: 12px;
}
.aba-deposit-card > small svg { width: 16px; height: 16px; color: var(--aba-blue); }

/* Mentor */
.aba-mentor { padding-top: 24px; background: #fff; }

.aba-mentor-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 36px;
  align-items: center;
  padding: 32px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(34, 211, 238, .18), transparent 30%),
    linear-gradient(135deg, var(--aba-navy), #061427);
  box-shadow: var(--aba-shadow);
  overflow: hidden;
}

.aba-mentor-visual {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,.06);
}

.aba-mentor-visual img { width: 100%; }

.aba-mentor-copy > span { color: var(--aba-sand); }

.aba-mentor-copy h2 {
  margin: 6px 0 4px;
  font-family: var(--aba-font-heading);
  color: #fff;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -.06em;
}

.aba-mentor-copy h3 {
  margin: 0 0 18px;
  color: var(--aba-cyan);
  font-size: 18px;
}

.aba-mentor-copy p {
  max-width: 680px;
  color: rgba(230, 244, 255, .78);
  margin: 0;
}

.aba-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.aba-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .92);
  font-weight: 800;
  font-size: 13px;
}

.aba-tags svg { color: var(--aba-cyan); }

/* FAQ */
.aba-faq { background: linear-gradient(180deg, #fff, var(--aba-white)); padding-top: 58px; }

.aba-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
}

.aba-faq-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: none;
}

.aba-faq-item button {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--aba-navy);
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.aba-faq-item button i {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-right: 2px solid var(--aba-blue);
  border-bottom: 2px solid var(--aba-blue);
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.aba-faq-item.is-open button i { transform: rotate(225deg); }

.aba-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.aba-faq-item.is-open .aba-faq-panel { grid-template-rows: 1fr; }

.aba-faq-panel p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: var(--aba-slate);
}

.aba-faq-item.is-open .aba-faq-panel p { padding-bottom: 20px; }

/* Final CTA */
.aba-final-cta {
  padding: 76px 0;
  color: #fff;
  background:
    radial-gradient(circle at 86% 24%, rgba(34, 211, 238, .20), transparent 26%),
    linear-gradient(135deg, var(--aba-navy), #061427 70%, #031022);
}

.aba-final-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 40px;
  align-items: center;
}

.aba-final-cta h2 {
  max-width: 640px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
}

.aba-final-cta p { margin: 16px 0 26px; color: rgba(230, 244, 255, .82); font-size: 18px; }

.aba-growth-art {
  position: relative;
  height: 240px;
  display: flex;
  align-items: end;
  gap: 18px;
  justify-content: flex-end;
}

.aba-growth-art span {
  width: 58px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, var(--aba-cyan), var(--aba-blue));
  opacity: .82;
}

.aba-growth-art span:nth-child(1) { height: 48px; opacity: .32; }
.aba-growth-art span:nth-child(2) { height: 84px; opacity: .48; }
.aba-growth-art span:nth-child(3) { height: 124px; opacity: .66; }
.aba-growth-art span:nth-child(4) { height: 176px; }

.aba-growth-art b {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 20px;
  height: 150px;
  border-top: 12px solid var(--aba-cyan);
  border-right: 12px solid var(--aba-cyan);
  border-radius: 0 52px 0 0;
  transform: skewY(-18deg);
  opacity: .88;
}

/* Footer */
.aba-site-footer {
  color: rgba(230, 244, 255, .78);
  background: #061427;
  padding: 58px 0 24px;
}

.aba-footer-grid {
  display: grid;
  grid-template-columns: 1.55fr .75fr .75fr 1fr;
  gap: 42px;
}

.aba-brand-footer .aba-logo-img,
.aba-brand-footer .aba-logo-custom img { width: 220px; filter: brightness(1.35); }

.aba-footer-brand p { margin: 18px 0 22px; max-width: 360px; }

.aba-socials { display: flex; gap: 10px; }

.aba-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.aba-site-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--aba-font-heading);
  font-size: 16px;
}

.aba-site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }

.aba-site-footer a:hover { color: var(--aba-cyan); }

.aba-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.aba-contact-list svg {
  width: 18px;
  height: 18px;
  color: var(--aba-cyan);
  flex: 0 0 auto;
}

.aba-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 30px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  font-size: 13px;
}

.aba-footer-bottom p { margin: 0; }

/* WordPress defaults */
.alignwide { max-width: min(1320px, calc(100% - 40px)); margin-inline: auto; }
.alignfull { width: 100%; max-width: 100%; }
.wp-caption { max-width: 100%; }
.screen-reader-text { position: absolute; clip: rect(1px, 1px, 1px, 1px); padding: 0; border: 0; height: 1px; width: 1px; overflow: hidden; }

/* Responsive */
@media (max-width: 1140px) {
  .aba-header-inner { grid-template-columns: auto auto auto; }
  .aba-primary-nav { grid-column: 1 / -1; justify-self: stretch; display: none; }
  .aba-primary-nav.is-open {
    display: block;
    position: fixed;
    left: 20px;
    right: 20px;
    top: 90px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--aba-shadow);
    border: var(--aba-border);
  }
  .aba-nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .aba-nav-list a { width: 100%; justify-content: center; padding: 14px; }
  .aba-mobile-toggle { display: inline-flex; justify-self: end; }
  .aba-header-cta { justify-self: end; }
  .aba-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .aba-dashboard-card { max-width: 760px; }
  .aba-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .aba-audience-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .aba-module-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .aba-method-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .aba-intro-grid { grid-template-columns: 1fr 1fr; }
  .aba-seminar-card { grid-column: 1 / -1; }
  .aba-pricing-grid { grid-template-columns: 1fr 1fr; }
  .aba-price-notes { order: 3; grid-column: 1 / -1; padding: 0; }
  .aba-footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .aba-footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .aba-container { width: min(100% - 28px, var(--aba-container)); }
  .aba-header-inner { min-height: 76px; gap: 12px; grid-template-columns: 1fr auto; }
  .aba-logo-img, .aba-logo-custom img { width: 178px; }
  .aba-header-cta { display: none; }
  .aba-mobile-toggle { grid-column: 2; }
  .aba-primary-nav.is-open { top: 82px; }
  .aba-hero { padding-top: 58px; }
  .aba-hero h1 { font-size: clamp(40px, 11vw, 58px); }
  .aba-hero-copy > p { font-size: 16px; }
  .aba-hero-proof { grid-template-columns: 1fr; }
  .aba-dashboard-card { padding: 18px; border-radius: 24px; }
  .aba-metric-grid { grid-template-columns: 1fr; }
  .aba-flow { grid-template-columns: 1fr; }
  .aba-flow em { height: 32px; width: 2px; justify-self: center; }
  .aba-flow em::after { right: -4px; top: auto; bottom: -1px; transform: rotate(135deg); }
  .aba-section { padding: 58px 0; }
  .aba-grid-4, .aba-faq-grid { grid-template-columns: 1fr; }
  .aba-pillars { grid-template-columns: 1fr; }
  .aba-pillars article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .aba-audience-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .aba-module-grid { grid-template-columns: 1fr; }
  .aba-module-card { min-height: auto; }
  .aba-method-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .aba-intro-grid, .aba-pricing-grid, .aba-mentor-card, .aba-final-grid { grid-template-columns: 1fr; }
  .aba-video-card { min-height: 260px; }
  .aba-mentor-card { padding: 18px; }
  .aba-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .aba-footer-grid > div:last-child { grid-column: auto; }
  .aba-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .aba-hero-actions { align-items: stretch; }
  .aba-hero-actions .aba-btn { width: 100%; }
  .aba-audience-row { grid-template-columns: 1fr; }
  .aba-method-row { grid-template-columns: 1fr; }
  .aba-section-head { text-align: left; }
  .aba-outcome-card { align-items: flex-start; }
  .aba-growth-art { display: none; }
  .aba-price-main, .aba-deposit-card, .aba-card { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
