/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 17 2026 | 13:03:37 */
/* ============================================================
   BEAUTY SCHOOL AUSTRALIA — MASTER STYLESHEET
   Paste into: Elementor → Custom CSS  OR  a single HTML widget
   Scope: All rules are prefixed .bsa-page to prevent bleed
   onto other pages. Add  bsa-page  to Page Settings → Body Class.
   ============================================================ */


/* ── GOOGLE FONT ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');


/* ── RESET (scoped) ──────────────────────────────────────── */
.bsa-page *, .bsa-page *::before, .bsa-page *::after {
  box-sizing: border-box;
}
/* ── Make the Elementor HTML widget itself take full width ── */
.bsa-page .elementor-widget-html {
  width: 100%;
}
 
/* ── Full-width breakout mixin applied to every BSA section ─
   Pulls the section left by 50%, then pushes it back with
   margin so it spans the full viewport width.               */
.bsa-page .bsa-hero,
.bsa-page .bsa-trust-bar,
.bsa-page .bsa-outcomes,
.bsa-page .bsa-kit,
.bsa-page .bsa-curriculum,
.bsa-page .bsa-support,
.bsa-page .bsa-testimonials,
.bsa-page .bsa-pricing,
.bsa-page .bsa-lead-form,
.bsa-page .bsa-instructors,
.bsa-page .bsa-faq,
.bsa-page .bsa-journey,
.bsa-page .bsa-final-cta {
  width:        100vw;
  position:     relative;
  left:         50%;
  right:        50%;
  margin-left:  -50vw;
  margin-right: -50vw;
}
 
/* ── Trust bar needs overflow hidden on itself too ────────── */
.bsa-page .bsa-trust-bar {
  overflow: hidden;
}
 
/* ── Prevent a horizontal scrollbar appearing on the page ── */
.bsa-page {
  overflow-x: hidden;
}


/* ── DESIGN TOKENS ───────────────────────────────────────── */
.bsa-page {
  --bsa-pink:       #F072AB;
  --bsa-pink-dark:  #d45990;
  --bsa-pink-light: #FCE3EE;
  --bsa-black:      #111111;
  --bsa-dark:       #1a1a1a;
  --bsa-gray-100:   #f7f7f7;
  --bsa-gray-200:   #eeeeee;
  --bsa-gray-300:   #d4d4d4;
  --bsa-gray-500:   #777777;
  --bsa-gray-700:   #444444;
  --bsa-white:      #ffffff;
  --bsa-max-w:      1140px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--bsa-black);
  line-height: 1.6;
}

.bsa-page h1, h2, h3 {
	font-family: var(--e-global-typography-accent-font-family), Sans-serif !important;
}

/* ── INNER CONTAINER ─────────────────────────────────────── */
/* .bsa-wrap keeps content boxed at 1140px inside full-width sections */
.bsa-wrap {
  max-width: var(--bsa-max-w);
  margin: 0 auto;
  padding: 0 24px;
}


/* ── SHARED SECTION PADDING ──────────────────────────────── */
.bsa-section { padding: 80px 0; }
@media (max-width: 600px) { .bsa-section { padding: 56px 0; } }


/* ── SHARED SECTION TYPOGRAPHY ───────────────────────────── */
.bsa-page .bsa-section-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--bsa-gray-500); margin-bottom: 8px;
  display: block;
}
.bsa-page .bsa-section-title {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 900;
  text-transform: uppercase; line-height: 1.1; margin-bottom: 16px;
}
.bsa-page .bsa-section-subtitle {
  color: var(--bsa-gray-500); font-size: 15px; max-width: 540px;
}
.bsa-page .bsa-highlight { color: var(--bsa-pink); }


/* ── BUTTONS ─────────────────────────────────────────────── */
.bsa-page .bsa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px; font-weight: 700;
  font-size: 14px; letter-spacing: 0.02em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.2s;
  text-decoration: none; font-family: 'Inter', sans-serif;
}
.bsa-page .bsa-btn-pink  { background: var(--bsa-pink); color: var(--bsa-white); }
.bsa-page .bsa-btn-pink:hover { background: var(--bsa-pink-dark); transform: translateY(-1px); }
.bsa-page .bsa-btn-outline {
  background: transparent; color: var(--bsa-black);
  border: 2px solid var(--bsa-black);
}
.bsa-page .bsa-btn-outline:hover { background: var(--bsa-black); color: var(--bsa-white); }
.bsa-page .bsa-btn-white  { background: var(--bsa-white); color: var(--bsa-pink); }
.bsa-page .bsa-btn-white:hover { background: var(--bsa-gray-100); }
.bsa-page .bsa-btn-black  { background: var(--bsa-black); color: var(--bsa-white); }
.bsa-page .bsa-btn-black:hover { background: #333; }
.bsa-page .bsa-btn-outline-white {
  background: transparent; color: var(--bsa-white);
  border: 2px solid var(--bsa-white);
}
.bsa-page .bsa-btn-outline-white:hover { background: rgba(255,255,255,0.15); }


/* ============================================================
   BLOCK 01 — HERO
   Section background: #f7f7f7
   ============================================================ */
.bsa-hero {
  background: var(--bsa-gray-100);
  padding: 60px 0 0;
  overflow: hidden;
}
.bsa-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end;
}
.bsa-hero-badge {
  display: inline-block; background: var(--bsa-pink);
  color: var(--bsa-white); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 6px 14px; border-radius: 30px; margin-bottom: 20px;
}
.bsa-hero h1 {
  font-size: clamp(36px, 5vw, 56px); font-weight: 900;
  line-height: 1.05; text-transform: uppercase; margin-bottom: 16px;
  color: var(--bsa-black);
}
.bsa-hero h1 .bsa-highlight { color: var(--bsa-pink); }
.bsa-hero-content > p {
  color: var(--bsa-gray-500); font-size: 15px; margin-bottom: 28px; max-width: 440px;
}
.bsa-hero-content > p strong { color: var(--bsa-black); }
.bsa-hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.bsa-hero-proof { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; }
.bsa-hero-avatars { display: flex; }
.bsa-hero-avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bsa-gray-300); border: 2px solid var(--bsa-white);
  margin-left: -8px; display: block;
}
.bsa-hero-avatars span:first-child { margin-left: 0; }
.bsa-hero-proof-text { font-size: 13px; color: var(--bsa-gray-500); }
.bsa-hero-proof-text .bsa-stars { color: #f59e0b; }
.bsa-hero-image { position: relative; align-self: end; }
.bsa-hero-video-facade {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, #222 0%, #111 100%);
  border-radius: 16px; position: relative; overflow: hidden; cursor: pointer;
}
.bsa-hero-video-facade img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease;
}
.bsa-hero-video-facade:hover img { transform: scale(1.03); }
.bsa-hero-video-facade::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.25); z-index: 1; transition: background 0.3s;
}
.bsa-hero-video-facade:hover::before { background: rgba(0,0,0,0.15); }
.bsa-hero-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); z-index: 2;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bsa-pink); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(240, 114, 171, 0.4); transition: all 0.3s;
}
.bsa-hero-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(240, 114, 171, 0.5);
}
.bsa-hero-play-btn svg { margin-left: 4px; }
.bsa-hero-video-badge {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px; padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
}
.bsa-hero-video-badge-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bsa-gray-300); flex-shrink: 0; overflow: hidden;
}
.bsa-hero-video-badge-avatar img { width: 100%; height: 100%; object-fit: cover; }
.bsa-hero-video-badge-text { color: var(--bsa-white); }
.bsa-hero-video-badge-text strong { font-size: 13px; display: block; }
.bsa-hero-video-badge-text span { font-size: 11px; opacity: 0.7; }
.bsa-hero-video-facade.playing { display: none; }
.bsa-hero-video-player {
  display: none; width: 100%; aspect-ratio: 4/5;
  border-radius: 16px; overflow: hidden; background: #000;
}
.bsa-hero-video-player.active { display: block; }
.bsa-hero-video-player video { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .bsa-hero-inner { grid-template-columns: 1fr; }
  .bsa-hero-image { display: none; }
}


/* ============================================================
   BLOCK 02 — TRUST BAR (scrolling ticker)
   Section background: #f7f7f7
   ============================================================ */
.bsa-trust-bar {
  background: var(--bsa-gray-100);
  border-bottom: 1px solid var(--bsa-gray-200);
  padding: 20px 0; overflow: hidden;
}
.bsa-trust-viewport {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
}
.bsa-trust-track {
  display: flex; gap: 16px; width: max-content;
  animation: bsaScrollTrust 30s linear infinite;
}
.bsa-trust-track:hover { animation-play-state: paused; }
@keyframes bsaScrollTrust {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.bsa-trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--bsa-black);
  background: var(--bsa-white); border-radius: 12px;
  padding: 16px 24px; flex-shrink: 0; white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04); font-family: 'Inter', sans-serif;
}
.bsa-trust-icon {
  width: 40px; height: 40px; background: var(--bsa-pink-light);
  border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}


/* ============================================================
   BLOCK 03 — INCOME & OUTCOMES
   Section background: #111111
   ============================================================ */
.bsa-outcomes { background: var(--bsa-black); color: var(--bsa-white); padding: 80px 0; }
.bsa-outcomes-header { text-align: center; margin-bottom: 48px; }
.bsa-outcomes-header .bsa-section-label { color: var(--bsa-gray-300); }
.bsa-outcomes-header .bsa-section-subtitle { color: var(--bsa-gray-300); margin: 0 auto; }
.bsa-outcomes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px;
}
.bsa-outcome-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 32px 28px; text-align: center; transition: border-color 0.2s;
}
.bsa-outcome-card:hover { border-color: var(--bsa-pink); }
.bsa-outcome-card.bsa-featured { background: var(--bsa-pink); border-color: var(--bsa-pink); }
.bsa-outcome-emoji { font-size: 32px; margin-bottom: 12px; }
.bsa-outcome-card h3 { font-size: 15px; font-weight: 800; text-transform: uppercase; margin-bottom: 4px; }
.bsa-outcome-income { font-size: 32px; font-weight: 900; margin: 8px 0 4px; }
.bsa-outcome-freq { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.bsa-outcome-card.bsa-featured .bsa-outcome-freq { color: rgba(255,255,255,0.7); }
.bsa-outcome-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.bsa-outcome-card.bsa-featured p { color: rgba(255,255,255,0.85); }
.bsa-outcomes-stats {
  display: flex; justify-content: center; gap: 48px; margin-bottom: 40px; flex-wrap: wrap;
}
.bsa-outcomes-stat { text-align: center; }
.bsa-outcomes-stat strong { display: block; font-size: 28px; font-weight: 900; color: var(--bsa-pink); }
.bsa-outcomes-stat span { font-size: 13px; color: var(--bsa-gray-300); }
.bsa-guarantee-box {
  max-width: 720px; margin: 0 auto;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 28px 32px;
  display: flex; align-items: flex-start; gap: 20px;
}
.bsa-guarantee-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--bsa-pink); display: flex; align-items: center;
  justify-content: center; font-size: 28px; flex-shrink: 0;
}
.bsa-guarantee-box h4 { font-size: 18px; font-weight: 800; text-transform: uppercase; margin-bottom: 6px; }
.bsa-guarantee-box p { font-size: 14px; color: var(--bsa-gray-300); line-height: 1.6; }

@media (max-width: 600px) {
  .bsa-outcomes-grid { grid-template-columns: 1fr; }
  .bsa-outcomes-stats { gap: 24px; }
  .bsa-guarantee-box { flex-direction: column; text-align: center; align-items: center; }
}


/* ============================================================
   BLOCK 04 — KIT SHOWCASE
   Section background: #f7f7f7
   ============================================================ */
.bsa-kit { background: var(--bsa-gray-100); padding: 80px 0; }
.bsa-kit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bsa-kit-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bsa-kit-img {
  background: var(--bsa-gray-200); border-radius: 12px; overflow: hidden;
  aspect-ratio: 1; position: relative;
}
.bsa-kit-img.bsa-tall { grid-row: span 2; aspect-ratio: auto; }
.bsa-kit-img img { width: 100%; height: 100%; object-fit: cover; }
.bsa-kit-img-label {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 12px; border-radius: 6px; font-size: 11px; font-weight: 600; color: var(--bsa-white);
}
.bsa-kit-value-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bsa-pink); color: var(--bsa-white);
  padding: 8px 18px; border-radius: 30px;
  font-weight: 800; font-size: 14px; margin-bottom: 20px; font-family: 'Inter', sans-serif;
}
.bsa-kit-info h2 {
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 900;
  text-transform: uppercase; line-height: 1.1; margin-bottom: 16px; color: var(--bsa-black);
}
.bsa-kit-info > p { color: var(--bsa-gray-500); font-size: 15px; margin-bottom: 32px; max-width: 460px; }
.bsa-kit-hero-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.bsa-kit-hero-item { display: flex; align-items: flex-start; gap: 14px; }
.bsa-kit-hero-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(240, 114, 171, 0.12);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.bsa-kit-hero-item strong { font-size: 14px; display: block; color: var(--bsa-black); }
.bsa-kit-hero-item span { font-size: 12px; color: var(--bsa-gray-500); }
.bsa-kit-expand-trigger {
  display: flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--bsa-gray-200); border-radius: 10px;
  padding: 12px 18px; font-family: 'Inter', sans-serif; font-size: 13px;
  font-weight: 700; color: var(--bsa-gray-700); cursor: pointer;
  width: 100%; margin-bottom: 24px; transition: border-color 0.2s;
}
.bsa-kit-expand-trigger:hover { border-color: var(--bsa-pink); color: var(--bsa-pink); }
.bsa-kit-expand-chevron { margin-left: auto; font-size: 18px; transition: transform 0.2s; }
.bsa-kit-expand-trigger.open .bsa-kit-expand-chevron { transform: rotate(180deg); }
.bsa-kit-full-list { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; margin-bottom: 24px; }
.bsa-kit-full-list.open { max-height: 1200px; }
.bsa-kit-full-list-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-bottom: 8px; }
.bsa-kit-category h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--bsa-pink); margin-bottom: 8px;
}
.bsa-kit-category ul { list-style: none; padding: 0; margin: 0; }
.bsa-kit-category li {
  font-size: 13px; color: var(--bsa-gray-700); padding: 3px 0;
  display: flex; align-items: center; gap: 6px;
}
.bsa-kit-category li::before { content: '✓'; font-size: 10px; color: var(--bsa-pink); font-weight: 700; }
.bsa-kit-guarantee {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--bsa-gray-100); border: 1px solid var(--bsa-gray-200);
  border-radius: 12px; padding: 16px 20px; margin-top: 16px;
}
.bsa-kit-guarantee-icon { font-size: 24px; flex-shrink: 0; }
.bsa-kit-guarantee p { font-size: 13px; color: var(--bsa-gray-500); line-height: 1.5; margin: 0; }
.bsa-kit-guarantee strong { color: var(--bsa-black); }

@media (max-width: 900px) {
  .bsa-kit-inner { grid-template-columns: 1fr; }
}


/* ============================================================
   BLOCK 05 — CURRICULUM
   Section background: #ffffff
   ============================================================ */
.bsa-curriculum { background: var(--bsa-white); padding: 80px 0; }
.bsa-curriculum-header { text-align: center; margin-bottom: 48px; }
.bsa-curriculum-header .bsa-section-subtitle { margin: 0 auto; }
.bsa-curriculum-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.bsa-module-accordion { display: flex; flex-direction: column; height: 100%; }
.bsa-module-item {
  background: var(--bsa-gray-100); border-radius: 12px;
  border: 1px solid var(--bsa-gray-200); overflow: hidden; transition: border-color 0.2s; flex: 1;
}
.bsa-module-item + .bsa-module-item { margin-top: 6px; }
.bsa-module-item:hover { border-color: var(--bsa-gray-300); }
.bsa-module-item.open { border-color: var(--bsa-pink); flex: none; }
.bsa-module-trigger {
  width: 100%; padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  border: none; background: none; font-family: 'Inter', sans-serif;
  cursor: pointer; text-align: left; color: var(--bsa-black);
}
.bsa-module-num {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--bsa-pink); color: var(--bsa-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; flex-shrink: 0;
}
.bsa-module-trigger-text { flex: 1; }
.bsa-module-trigger-title { font-size: 14px; font-weight: 700; display: block; }
.bsa-module-trigger-meta {
  font-size: 11px; color: var(--bsa-gray-500); margin-top: 2px;
  display: flex; align-items: center; gap: 6px;
}
.bsa-module-trigger-meta::before { content: '▶'; font-size: 7px; color: var(--bsa-pink); }
.bsa-module-chevron { font-size: 18px; color: var(--bsa-gray-500); flex-shrink: 0; transition: transform 0.2s; }
.bsa-module-item.open .bsa-module-chevron { transform: rotate(180deg); }
.bsa-module-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.bsa-module-item.open .bsa-module-body { max-height: 300px; }
.bsa-module-body-inner { padding: 0 20px 16px 66px; }
.bsa-module-desc { font-size: 13px; color: var(--bsa-gray-500); line-height: 1.6; margin-bottom: 10px; }
.bsa-module-topics { display: flex; flex-wrap: wrap; gap: 5px; }
.bsa-module-tag {
  display: inline-block; background: var(--bsa-white);
  border: 1px solid var(--bsa-gray-200); border-radius: 6px;
  padding: 3px 9px; font-size: 10px; font-weight: 600; color: var(--bsa-gray-700);
}
.bsa-business-module {
  background: var(--bsa-black); color: var(--bsa-white);
  border-radius: 16px; padding: 32px; display: flex; flex-direction: column; justify-content: center;
}
.bsa-biz-mod-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bsa-pink); color: var(--bsa-white);
  padding: 6px 14px; border-radius: 30px;
  font-weight: 700; font-size: 12px; margin-bottom: 16px;
  align-self: flex-start; font-family: 'Inter', sans-serif;
}
.bsa-business-module h3 {
  font-size: 20px; font-weight: 900; text-transform: uppercase; line-height: 1.15; margin-bottom: 10px;
}
.bsa-business-module > p { font-size: 13px; color: var(--bsa-gray-300); line-height: 1.6; margin-bottom: 20px; }
.bsa-biz-mod-stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 20px; text-align: center; margin-bottom: 20px;
}
.bsa-biz-mod-stat strong { display: block; font-size: 38px; font-weight: 900; color: var(--bsa-pink); line-height: 1; }
.bsa-biz-mod-stat em { display: block; font-size: 13px; color: var(--bsa-gray-300); font-style: normal; margin-top: 6px; }
.bsa-biz-mod-stat p { font-size: 12px; color: var(--bsa-gray-500); margin-top: 10px; line-height: 1.5; }
.bsa-biz-mod-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.bsa-biz-mod-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; font-weight: 500; }
.bsa-biz-mod-feature-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(240, 114, 171, 0.15);
  display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0;
}
.bsa-biz-mod-feature strong { display: block; font-size: 13px; }
.bsa-biz-mod-feature span { font-size: 12px; color: var(--bsa-gray-300); display: block; margin-top: 2px; }
.bsa-business-module .bsa-btn { align-self: stretch; text-align: center; justify-content: center; }
.bsa-curriculum-footer { text-align: center; margin-top: 40px; }
.bsa-curriculum-stat-row {
  display: flex; justify-content: center; gap: 40px; margin-bottom: 24px; flex-wrap: wrap;
}
.bsa-curriculum-stat { text-align: center; }
.bsa-curriculum-stat strong { display: block; font-size: 28px; font-weight: 900; color: var(--bsa-pink); }
.bsa-curriculum-stat span { font-size: 13px; color: var(--bsa-gray-500); font-weight: 500; }

@media (max-width: 900px) {
  .bsa-curriculum-layout { grid-template-columns: 1fr; }
  .bsa-module-accordion { height: auto; }
  .bsa-module-item { flex: none; }
}
@media (max-width: 600px) {
  .bsa-module-body-inner { padding-left: 20px; }
  .bsa-curriculum-stat-row { gap: 24px; }
}


/* ============================================================
   BLOCK 06 — 1-ON-1 SUPPORT
   Section background: #f7f7f7
   ============================================================ */
.bsa-support { background: var(--bsa-gray-100); padding: 80px 0; }
.bsa-support-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bsa-support-info h2 {
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 900;
  text-transform: uppercase; line-height: 1.1; margin-bottom: 16px; color: var(--bsa-black);
}
.bsa-support-info > p { color: var(--bsa-gray-500); font-size: 15px; margin-bottom: 32px; max-width: 480px; }
.bsa-support-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.bsa-support-feature {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--bsa-white); border-radius: 12px; padding: 20px;
  border: 1px solid var(--bsa-gray-200); transition: border-color 0.2s;
}
.bsa-support-feature:hover { border-color: var(--bsa-pink); }
.bsa-support-feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(240, 114, 171, 0.1);
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.bsa-support-feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.bsa-support-feature p { font-size: 13px; color: var(--bsa-gray-500); line-height: 1.5; margin: 0; }
.bsa-support-visual {
  background: var(--bsa-white); border-radius: 16px;
  border: 1px solid var(--bsa-gray-200); overflow: hidden;
}
.bsa-support-chat { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.bsa-chat-bubble {
  max-width: 80%; padding: 14px 18px; border-radius: 14px;
  font-size: 14px; line-height: 1.5; font-family: 'Inter', sans-serif;
}
.bsa-chat-bubble.bsa-student {
  background: var(--bsa-gray-100); align-self: flex-end;
  border-bottom-right-radius: 4px; color: var(--bsa-black);
}
.bsa-chat-bubble.bsa-tutor {
  background: var(--bsa-pink); color: var(--bsa-white);
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.bsa-chat-meta { font-size: 11px; color: var(--bsa-gray-500); margin-top: 4px; }
.bsa-chat-bubble.bsa-tutor .bsa-chat-meta { color: rgba(255,255,255,0.7); }
.bsa-support-chat-bar {
  background: var(--bsa-gray-100); border-top: 1px solid var(--bsa-gray-200);
  padding: 16px 28px; display: flex; align-items: center; justify-content: space-between;
}
.bsa-support-chat-bar span { font-size: 13px; color: var(--bsa-gray-500); }
.bsa-response-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #dcfce7; color: #166534; padding: 6px 12px;
  border-radius: 20px; font-size: 12px; font-weight: 600; font-family: 'Inter', sans-serif;
}
.bsa-response-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: #22c55e; display: block;
}

@media (max-width: 900px) {
  .bsa-support-inner { grid-template-columns: 1fr; }
}


/* ============================================================
   BLOCK 07 — TESTIMONIALS
   Section background: #ffffff
   ============================================================ */
.bsa-testimonials { background: var(--bsa-white); padding: 80px 0; }
.bsa-testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.bsa-testimonial-card {
  background: var(--bsa-white); border-radius: 12px; padding: 28px;
  border: 1px solid var(--bsa-gray-200);
}
.bsa-testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }
.bsa-testimonial-card blockquote {
  font-size: 14px; color: var(--bsa-gray-700); line-height: 1.6; font-style: italic; margin: 0;
}
.bsa-testimonial-author { margin-top: 16px; display: flex; align-items: center; gap: 10px; }
.bsa-testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bsa-gray-300); flex-shrink: 0; overflow: hidden;
}
.bsa-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.bsa-testimonial-author-name { font-size: 13px; font-weight: 700; }
.bsa-testimonial-author-role { font-size: 12px; color: var(--bsa-gray-500); }

@media (max-width: 900px) {
  .bsa-testimonials-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   BLOCK 08 — PRICING
   Section background: #f7f7f7
   ============================================================ */
.bsa-pricing { background: var(--bsa-gray-100); padding: 80px 0; }
.bsa-pricing-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.bsa-pricing-info { background: var(--bsa-white); border-radius: 16px; padding: 40px; }
.bsa-pricing-info h2 {
  font-size: clamp(28px, 3.5vw, 38px); font-weight: 900;
  text-transform: uppercase; line-height: 1.1; margin-bottom: 12px; color: var(--bsa-black);
}
.bsa-pricing-info > p { color: var(--bsa-gray-500); font-size: 15px; margin-bottom: 32px; }
.bsa-pricing-benefit { margin-bottom: 24px; }
.bsa-pricing-benefit h4 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.bsa-pricing-benefit p { font-size: 14px; color: var(--bsa-gray-500); line-height: 1.5; margin: 0; }
.bsa-pricing-roi { background: var(--bsa-gray-100); border-radius: 12px; padding: 20px; margin-top: 24px; }
.bsa-pricing-roi p { font-size: 14px; color: var(--bsa-gray-500); line-height: 1.5; margin: 0; }
.bsa-pricing-roi strong { color: var(--bsa-black); }
.bsa-payment-card {
  background: var(--bsa-pink); color: var(--bsa-white);
  border-radius: 16px; padding: 36px; display: flex; flex-direction: column;
}
.bsa-payment-card-header {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px;
}
.bsa-payment-card-header h3 { font-size: 24px; font-weight: 900; text-transform: uppercase; }
.bsa-payment-card-price { text-align: right; }
.bsa-payment-card-price small { font-size: 12px; opacity: 0.7; display: block; }
.bsa-payment-card-price strong { font-size: 42px; font-weight: 900; line-height: 1; }
.bsa-payment-card-price span { font-size: 16px; font-weight: 500; }
.bsa-payment-card > p { font-size: 14px; opacity: 0.85; margin-bottom: 24px; }
.bsa-payment-providers {
  background: rgba(255,255,255,0.15); border-radius: 12px; padding: 20px; margin-bottom: 24px;
}
.bsa-payment-providers-label { font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.bsa-payment-logos { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.bsa-payment-logo {
  background: var(--bsa-white); border-radius: 8px; padding: 8px 16px;
  font-size: 13px; font-weight: 800; color: var(--bsa-black);
  display: flex; align-items: center; justify-content: center;
  min-height: 40px; font-family: 'Inter', sans-serif;
}
.bsa-payment-logo img { height: 22px; width: auto; display: block; }
.bsa-payment-includes-label { font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.bsa-payment-includes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; margin-bottom: 24px;
  list-style: none; padding: 0; margin-left: 0;
}
.bsa-payment-includes li {
  font-size: 13px; padding: 4px 0; display: flex; align-items: center; gap: 8px;
}
.bsa-payment-includes li::before { content: '✓'; font-size: 11px; font-weight: 700; }
.bsa-btn-enrol {
  display: block; width: 100%; padding: 16px; text-align: center;
  background: var(--bsa-white); color: var(--bsa-pink);
  border-radius: 10px; font-weight: 800; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.02em;
  border: none; cursor: pointer; transition: background 0.2s;
  margin-top: auto; text-decoration: none; font-family: 'Inter', sans-serif;
}
.bsa-btn-enrol:hover { background: var(--bsa-gray-100); }

@media (max-width: 900px) {
  .bsa-pricing-inner { grid-template-columns: 1fr; }
  .bsa-payment-includes { grid-template-columns: 1fr; }
}


/* ============================================================
   BLOCK 09 — LEAD FORM
   Section background: #ffffff
   ============================================================ */
.bsa-lead-form { background: var(--bsa-white); padding: 80px 0; }
.bsa-lead-form-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bsa-form-box { background: var(--bsa-gray-100); border-radius: 16px; padding: 40px; }
.bsa-form-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.bsa-form-group { margin-bottom: 14px; }
.bsa-form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.bsa-form-group input, .bsa-form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--bsa-gray-300);
  border-radius: 8px; font-size: 14px; font-family: 'Inter', sans-serif;
  background: var(--bsa-white);
}
.bsa-form-group input:focus, .bsa-form-group select:focus {
  outline: none; border-color: var(--bsa-pink);
}
.bsa-form-submit { margin-top: 20px; }
.bsa-form-submit .bsa-btn { width: 100%; justify-content: center; padding: 16px; }
.bsa-lead-info h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 900;
  text-transform: uppercase; line-height: 1.1; margin-bottom: 16px; color: var(--bsa-black);
}
.bsa-lead-info > p { color: var(--bsa-gray-500); font-size: 15px; margin-bottom: 24px; }
.bsa-lead-steps { display: flex; flex-direction: column; gap: 16px; }
.bsa-lead-step { display: flex; align-items: flex-start; gap: 14px; }
.bsa-lead-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bsa-pink); color: var(--bsa-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; flex-shrink: 0; font-family: 'Inter', sans-serif;
}
.bsa-lead-step-text h4 { font-size: 14px; font-weight: 700; }
.bsa-lead-step-text p { font-size: 13px; color: var(--bsa-gray-500); margin: 0; }

@media (max-width: 900px) {
  .bsa-lead-form-inner { grid-template-columns: 1fr; }
}


/* ============================================================
   BLOCK 10 — INSTRUCTORS
   Section background: #ffffff
   ============================================================ */
.bsa-instructors { background: var(--bsa-white); padding: 80px 0; }
.bsa-instructors-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.bsa-instructor-card { text-align: center; }
.bsa-instructor-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: 12px;
  background: var(--bsa-gray-200); margin-bottom: 16px; overflow: hidden;
}
.bsa-instructor-photo img { width: 100%; height: 100%; object-fit: cover; }
.bsa-instructor-card h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; }
.bsa-instructor-card p { font-size: 13px; color: var(--bsa-gray-500); margin-top: 8px; line-height: 1.5; }

@media (max-width: 600px) {
  .bsa-instructors-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   BLOCK 11 — FAQ
   Section background: #f7f7f7
   ============================================================ */
.bsa-faq { background: var(--bsa-gray-100); padding: 80px 0; }
.bsa-faq-list { max-width: 720px; margin: 40px auto 0; }
.bsa-faq-item {
  background: var(--bsa-white); border-radius: 10px; margin-bottom: 10px;
  border: 1px solid var(--bsa-gray-200); overflow: hidden;
}
.bsa-faq-question {
  width: 100%; padding: 20px 24px; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 600; cursor: pointer;
  border: none; background: none; font-family: 'Inter', sans-serif;
  text-align: left; color: var(--bsa-black);
}
.bsa-faq-question::after {
  content: '+'; font-size: 22px; font-weight: 300;
  color: var(--bsa-gray-500); flex-shrink: 0; margin-left: 16px; transition: transform 0.2s;
}
.bsa-faq-item.open .bsa-faq-question::after { content: '−'; }
.bsa-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.bsa-faq-answer-inner { padding: 0 24px 20px; font-size: 14px; color: var(--bsa-gray-500); line-height: 1.6; }
.bsa-faq-item.open .bsa-faq-answer { max-height: 300px; }


/* ============================================================
   BLOCK 12 — JOURNEY (How It Works)
   Section background: #ffffff
   ============================================================ */
.bsa-journey { background: var(--bsa-white); padding: 80px 0; }
.bsa-journey-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px;
}
.bsa-journey-step { text-align: center; }
.bsa-journey-num {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--bsa-pink); color: var(--bsa-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 22px; margin: 0 auto 16px; font-family: 'Inter', sans-serif;
}
.bsa-journey-step h3 { font-size: 14px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.bsa-journey-step p { font-size: 13px; color: var(--bsa-gray-500); line-height: 1.5; }

@media (max-width: 900px) { .bsa-journey-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .bsa-journey-steps { grid-template-columns: 1fr; } }


/* ============================================================
   BLOCK 13 — FINAL CTA
   Section background: #F072AB
   ============================================================ */
.bsa-final-cta {
  background: var(--bsa-pink); color: var(--bsa-white); padding: 80px 0; text-align: center;
}
.bsa-final-cta h2 {
  font-size: clamp(32px, 4.5vw, 52px); font-weight: 900;
  text-transform: uppercase; line-height: 1.05; margin-bottom: 16px;
}
.bsa-final-cta p {
  font-size: 15px; opacity: 0.9; margin-bottom: 32px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.bsa-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }