:root{--page-title-display:none;}/* Start custom CSS *//* --- GLOBAL VARIABLES & FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #FAFBFE;
  --surface: #FFFFFF;
  --navy: #101B3D;
  --navy-soft: #3A4468;
  --blue: #2F4CF0;
  --blue-dark: #1B34C4;
  --lime: #C6FF3D;
  --coral: #FF5D3A;
  --tint: #EEF1FF;
  --tint-lime: #F6FFE0;
  --gray: #6B7280;
  --line: #E4E8F5;
  --radius: 18px;
}

/* --- BASE STYLES FOR THE BLOCKS --- */
.sab-block {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: transparent;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

.sab-block *, .sab-block *::before, .sab-block *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

.sab-block h1, .sab-block h2, .sab-block h3, .sab-block h4 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.sab-block a { color: inherit; text-decoration: none; }
.sab-block img { max-width: 100%; display: block; }

.sab-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.sab-section { padding: 96px 0; }

/* --- REUSABLE COMPONENTS --- */
.sab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--tint);
  border: 1px solid #D6DEFF;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.sab-eyebrow.on-dark {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.sab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.sab-btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(255,93,58,0.55);
}
.sab-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(255,93,58,0.65); }

.sab-btn-dark { background: var(--navy); color: #fff; }
.sab-btn-dark:hover { transform: translateY(-2px); }

.sab-btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--line); }
.sab-btn-ghost:hover { border-color: var(--navy); }

.sab-btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.sab-btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.sab-section-head { max-width: 640px; margin-bottom: 56px; }
.sab-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sab-section-head h2 { font-size: clamp(28px,3.6vw,40px); }
.sab-section-head p { color: var(--gray); font-size: 17px; margin-top: 14px; }

/* --- NAVIGATION HEADER --- */
.sab-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,251,254,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.sab-nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.sab-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; display: flex; align-items: center; gap: 8px; }
.sab-logo .dot { width: 11px; height: 11px; border-radius: 3px; background: var(--coral); transform: rotate(45deg); }
.sab-nav-links { display: flex; gap: 34px; font-weight: 600; font-size: 14.5px; color: var(--navy-soft); }
.sab-nav-links a:hover { color: var(--blue); }
.sab-nav-cta { display: flex; align-items: center; gap: 18px; }
.sab-nav-cta .sab-btn { padding: 11px 20px; font-size: 14.5px; }
@media (max-width:900px){ .sab-nav-links { display:none; } }

/* --- HERO & FORM --- */
.sab-hero { padding: 76px 0 60px; position: relative; overflow: hidden; background: var(--bg); }
.sab-hero::before {
  content: ""; position: absolute; top: -180px; right: -220px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(198,255,61,0.5) 0%, rgba(198,255,61,0) 70%); z-index: 0;
}
.sab-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
@media (max-width:960px){ .sab-hero-grid { grid-template-columns: 1fr; } }
.sab-hero h1 { font-size: clamp(38px, 5.2vw, 60px); margin-bottom: 24px; }
.sab-hero h1 .l1 { color: var(--navy-soft); font-weight: 500; }
.sab-hero h1 .accent-lime { color: var(--navy); background: linear-gradient(180deg, transparent 62%, var(--lime) 62%); padding: 0 2px; }
.sab-hero h1 .accent-coral { color: var(--coral); }
.sab-hero .lede { font-size: 18.5px; color: var(--navy-soft); max-width: 480px; margin-bottom: 34px; }
.sab-hero-ctas { display: flex; align-items: center; gap: 28px; margin-bottom: 56px; flex-wrap: wrap; }
.sab-link-underline { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px; border-bottom: 2px solid var(--navy); padding-bottom: 2px; }
.sab-stat-row { display: grid; grid-template-columns: repeat(4,auto); gap: 38px; }
@media (max-width:560px){ .sab-stat-row { grid-template-columns: repeat(2,1fr); } }
.sab-stat-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 30px; color: var(--navy); }
.sab-stat-num em { font-style: normal; color: var(--blue); }
.sab-stat-label { font-size: 13px; color: var(--gray); margin-top: 2px; }

.sab-form-card { background: var(--surface); border-radius: 24px; padding: 38px 36px 34px; box-shadow: 0 30px 60px -22px rgba(16,27,61,0.22); border: 1px solid var(--line); position: relative; }
.sab-form-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: 24px; padding: 1px;
  background: linear-gradient(135deg, var(--lime), var(--blue) 55%, var(--coral));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.9; pointer-events: none;
}
.sab-form-card-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--blue-dark); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.sab-form-card h3 { font-size: 24px; margin-bottom: 8px; }
.sab-form-card p.sub { color: var(--gray); font-size: 14.5px; margin-bottom: 22px; }
.sab-field { margin-bottom: 16px; text-align: left; }
.sab-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.sab-field label .req { color: var(--coral); }
.sab-field input, .sab-field select, .sab-field textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 14px; font-family: 'Inter', sans-serif; font-size: 14.5px; background: #FCFDFF; transition: border-color .15s ease, box-shadow .15s ease; }
.sab-field input:focus, .sab-field select:focus, .sab-field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,76,240,0.12); }
.sab-field textarea { resize: vertical; min-height: 64px; }
.sab-form-submit { width: 100%; justify-content: center; margin-top: 6px; font-size: 15.5px; }
.sab-form-note { text-align: center; font-size: 12.5px; color: var(--gray); margin-top: 14px; }
.sab-checklist { display: flex; flex-direction: column; gap: 8px; margin: 14px 0 22px; text-align: left; }
.sab-checklist span { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--navy-soft); }
.sab-checklist .tick { width: 18px; height: 18px; border-radius: 50%; background: var(--tint-lime); color: #4F7A00; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }

/* --- PHILOSOPHY --- */
.sab-philosophy { background: var(--navy); color: #fff; }
.sab-philosophy .sab-section-head h2 { color: #fff; }
.sab-philosophy .sab-section-head p { color: #B7C0E8; }
.sab-equation { display: flex; align-items: baseline; flex-wrap: wrap; gap: 16px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(30px,4.2vw,46px); margin-bottom: 20px; }
.sab-equation .plus { color: #5C6AA8; font-size: 0.7em; }
.sab-equation .result { color: var(--lime); }
.sab-philo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.12); border-radius: 20px; overflow: hidden; margin-top: 40px; }
@media (max-width:760px){ .sab-philo-grid { grid-template-columns: 1fr; } }
.sab-philo-item { background: #141F45; padding: 28px 30px; display: flex; gap: 16px; text-align: left; }
.sab-philo-item .emoji { font-size: 26px; line-height: 1; }
.sab-philo-item h4 { color: #fff; font-size: 16.5px; margin-bottom: 6px; }
.sab-philo-item p { color: #AEB8E2; font-size: 14px; }

/* --- THREE WAYS --- */
.sab-ways { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
@media (max-width:860px){ .sab-ways { grid-template-columns: 1fr; } }
.sab-way-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; position: relative; transition: transform .18s ease, box-shadow .18s ease; text-align: left; }
.sab-way-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(16,27,61,0.25); }
.sab-way-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 13px; color: var(--blue); background: var(--tint); width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.sab-way-card h3 { font-size: 21px; margin-bottom: 10px; }
.sab-way-card p { color: var(--gray); font-size: 15px; }
.sab-way-card.mid .sab-way-num { background: var(--tint-lime); color: #557500; }
.sab-way-card.last .sab-way-num { background: #FFEAE3; color: var(--coral); }

/* --- GEOGRAPHIES / CATEGORIES GRID --- */
.sab-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width:960px){ .sab-cat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px){ .sab-cat-grid { grid-template-columns: 1fr; } }
.sab-cat-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 26px 22px; text-align: left; }
.sab-cat-card .badge { display: inline-block; font-size: 11.5px; font-weight: 700; color: var(--blue-dark); background: var(--tint); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.sab-cat-card h4 { font-size: 17px; margin-bottom: 8px; }
.sab-cat-card p { font-size: 13.5px; color: var(--gray); }

/* --- TESTIMONIALS --- */
.sab-testimonials { background: var(--tint); }
.sab-tmain { background: var(--surface); border: 2px solid var(--blue); border-radius: 22px; padding: 38px 40px; margin-bottom: 26px; position: relative; text-align: left; }
.sab-tmain .flag-tag { position: absolute; top: 32px; right: 36px; font-size: 12px; font-weight: 700; color: var(--blue-dark); background: var(--tint); padding: 5px 12px; border-radius: 999px; }
.sab-tmain blockquote { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 500; color: var(--navy); line-height: 1.4; margin-bottom: 22px; max-width: 80%; }
.sab-t-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width:860px){ .sab-t-grid { grid-template-columns: 1fr; } }
.sab-t-card { background: var(--surface); border-radius: 18px; padding: 26px 26px; border: 1px solid var(--line); text-align: left; }
.sab-t-card p.quote { font-size: 15px; color: var(--navy-soft); font-style: italic; margin-bottom: 18px; }
.sab-who { display: flex; align-items: center; gap: 12px; }
.sab-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.sab-who .name { font-weight: 700; font-size: 14px; }
.sab-who .meta { font-size: 12.5px; color: var(--gray); }

/* --- COUNSEL ROADMAP --- */
.sab-counsel { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
@media (max-width:900px){ .sab-counsel { grid-template-columns: 1fr; } }
.sab-steps { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; text-align: left; }
.sab-step { display: flex; gap: 18px; }
.sab-step .snum { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--coral); font-size: 15px; flex-shrink: 0; }
.sab-step h4 { font-size: 16.5px; margin-bottom: 4px; }
.sab-step p { font-size: 14.5px; color: var(--gray); }
.sab-counsel-card { background: linear-gradient(160deg, var(--navy) 0%, #1E2C63 100%); border-radius: 24px; padding: 44px 40px; color: #fff; text-align: left; }
.sab-counsel-card h3 { color: #fff; font-size: 26px; margin-bottom: 14px; }
.sab-counsel-card p { color: #B7C0E8; font-size: 15px; margin-bottom: 28px; }
.sab-counsel-card .note { color: #8B96CC; font-size: 13px; margin-top: 14px; }

/* --- INSTITUTIONS PANEL --- */
.sab-inst { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width:900px){ .sab-inst { grid-template-columns: 1fr; } }
.sab-inst-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.sab-inst-tags span { font-size: 13.5px; font-weight: 600; padding: 8px 14px; border-radius: 999px; background: var(--tint); color: var(--blue-dark); }
.sab-inst-benefits { display: flex; flex-direction: column; gap: 26px; text-align: left; }
.sab-benefit { display: flex; gap: 16px; }
.sab-benefit .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--tint-lime); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.sab-benefit h4 { font-size: 16px; margin-bottom: 4px; }
.sab-benefit p { font-size: 14px; color: var(--gray); }

/* --- FINAL CALL TO ACTION --- */
.sab-final-cta { background: linear-gradient(120deg, var(--blue) 0%, #4B3EF0 100%); color: #fff; text-align: center; border-radius: 32px; margin: 0 32px; padding: 80px 40px; position: relative; overflow: hidden; }
.sab-final-cta::after { content: ""; position: absolute; bottom: -140px; left: 50%; transform: translateX(-50%); width: 640px; height: 280px; background: radial-gradient(ellipse, rgba(198,255,61,0.45), transparent 70%); }
.sab-final-cta h2 { color: #fff; font-size: clamp(30px,4vw,44px); margin-bottom: 16px; position: relative; }
.sab-final-cta .highlight { color: var(--lime); }
.sab-final-cta p { color: #DCE1FF; max-width: 560px; margin: 0 auto; margin-bottom: 34px; font-size: 16.5px; position: relative; }
.sab-final-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; position: relative; }

/* --- FOOTER UNIFIED --- */
.sab-footer { padding: 70px 0 40px; background: #fff; border-top: 1px solid var(--line); }
.sab-foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line); text-align: left; }
@media (max-width:760px){ .sab-foot-grid { grid-template-columns: 1fr 1fr; } }
.sab-foot-brand p { color: var(--gray); font-size: 14px; margin: 16px 0 20px; max-width: 280px; }
.sab-social { display: flex; gap: 12px; }
.sab-social span { width: 34px; height: 34px; border-radius: 9px; background: var(--tint); color: var(--blue-dark); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.sab-foot-col h5 { font-family: 'Space Grotesk', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 16px; }
.sab-foot-col a { display: block; font-size: 14.5px; color: var(--navy-soft); margin-bottom: 12px; }
.sab-foot-col a:hover { color: var(--blue); }
.sab-foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--gray); }
.sab-foot-bottom .links { display: flex; gap: 20px; }/* End custom CSS */