*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-card: #161616;
  --border: #252525;
  --gold: #e8a020;
  --gold-light: #f5c060;
  --gold-dim: rgba(232, 160, 32, 0.15);
  --text: #f0ede8;
  --text-muted: #ffffff;
  --text-dim: #555;
  --red: #e84040;
  --green: #2eb87e;

  /* FONTS — matching reference site */
  --font-display: 'Bebas Neue', sans-serif;   /* condensed uppercase headings */
  --font-serif:   'Playfair Display', serif;  /* logo / accent serif */
  --font-body:    'Plus Jakarta Sans', sans-serif; /* all body text */

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 40px rgba(232, 160, 32, 0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  word-spacing: 0.15em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.bsw-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 0;
}
.bsw-line1 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.01em;
}
.bsw-line2 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.01em;
}
.bsw-line3 {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 2px solid var(--gold);
  padding-top: 2px;
  margin-top: 2px;
}

  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}
.logo-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.navbar-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--text); }
.navbar-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.03em;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
  margin-left: auto;
}
.navbar-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
  }
}
.countdown-wrap { 
  text-align: center; 
  width: 100%;
}
.countdown-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  width: 100%;
  max-width: 80px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.countdown-unit {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  padding: 0 4px;
  transform: translateY(-6px);
}

@media (max-width: 480px) {
  .countdown-num { font-size: 24px; min-width: 32px; padding: 6px 4px; }
  .countdown-sep { font-size: 20px; transform: translateY(-4px); }
  .countdown-block { padding: 0 2px; }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,160,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.hero-action-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin: -10px 0 10px 0;
}

.hero-counter-col {
  flex: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-image-col {
  flex: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mentor-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.mentor-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.mentor-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 50%;
  border: 3px solid rgba(232, 160, 32, 0.35); /* Premium lighter gold outline */
  background-color: #ffffff;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.5));
}

.mentor-rating {
  font-size: 11px;
  color: #f1c40f;
  font-weight: 700;
  white-space: nowrap;
}

.mentor-rating span {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.mentor-info {
  text-align: left;
}

.mentor-info h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
  white-space: nowrap;
}

.mentor-info p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.mentor-rating {
  font-size: 14px;
  color: #f1c40f;
  font-weight: 700;
}

/* Logo */
.bsw-hero-logo { display: flex; flex-direction: column; align-items: center; line-height: 1.0; gap: 0; margin-bottom: 4px; }
.bsw-hl1 { font-family: var(--font-serif); font-size: clamp(32px, 5.5vw, 58px); font-weight: 800; color: var(--text); letter-spacing: -0.01em; }
.bsw-hl2 { font-family: var(--font-serif); font-size: clamp(32px, 5.5vw, 58px); font-weight: 800; color: var(--text); letter-spacing: -0.01em; margin-top: -6px; }
.bsw-hl3 { font-family: var(--font-body); font-size: clamp(15px, 1.2vw, 17px); font-weight: 900; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); border-top: 2px solid var(--gold); padding-top: 4px; margin-top: 4px; }

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 10px;
  background: #c0392b; color: #fff;
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-align: center;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 1.4s ease infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

/* Card */
.hero-card { border: 2px solid var(--gold); border-radius: 18px; padding: 36px 40px; width: 100%; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: 0.02em; color: var(--text);
  text-transform: uppercase; margin-bottom: 10px;
}
.hero-accent { color: var(--gold); }
.hero-tagline { font-family: var(--font-body); font-size: clamp(15px, 2vw, 19px); font-weight: 600; font-style: italic; color: var(--gold); margin-bottom: 12px; }
.hero-sub { font-family: var(--font-body); font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.hero-sub strong { color: var(--text); }

/* Details strip */
.hero-details {
  display: flex; align-items: center; justify-content: center;
  gap: 0; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 20px; width: 100%; flex-wrap: nowrap;
}
.hero-detail-item { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 20px; }
.detail-top { display: flex; align-items: center; gap: 8px; }
.detail-icon { font-size: 20px; }
.detail-label { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.detail-val { display: block; font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--text); margin-top: 0; white-space: nowrap; }
.hero-detail-divider { width: 1px; height: 40px; background: var(--border); }

.hero-urgency { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: #e84040; background: rgba(232,64,64,0.1); border: 1px solid rgba(232,64,64,0.3); padding: 6px 18px; border-radius: 100px; }

/* CTA */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 44px; background: var(--gold); color: #000;
  font-family: var(--font-body); font-size: 17px; font-weight: 800;
  border-radius: 12px; transition: all 0.2s;
  box-shadow: 0 0 30px rgba(232,160,32,0.35);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 0 50px rgba(232,160,32,0.5); }
.hero-guarantee { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); }

@media (max-width: 1024px) {
  .hero-action-row { 
    flex-direction: column; 
    gap: 24px;
    padding: 0 4px;
    align-items: center;
  }
  .hero-counter-col {
    flex: 0 0 auto;
  }
  .hero-image-col {
    flex: 1 1 auto;
    min-width: 0;
  }
  .hero-title { font-size: clamp(32px, 7vw, 60px); }
  
  .mentor-container { gap: 10px; }
  .mentor-img {
    width: 100px;
    height: 100px;
    border-width: 2px;
  }
  .mentor-rating { font-size: 9px; }
  .mentor-rating span { font-size: 8px; }
  .mentor-info h3 { 
    font-family: var(--font-body);
    font-size: 14px; 
    font-weight: 500;
    margin-bottom: 0; 
    white-space: nowrap;
  }
  .mentor-info p { font-size: 10px; line-height: 1.2; }
}

@media (max-width: 640px) {
  .hero { padding: 100px 16px 60px; }
  .hero-card { padding: 22px 18px; }
  .hero-details { 
    padding: 8px 4px; 
    border-radius: 12px;
    justify-content: space-evenly;
  }
  .hero-detail-item { padding: 4px 6px; gap: 6px; }
  .detail-icon { font-size: 16px; }
  .detail-val { font-size: 12px; }
  .detail-label { font-size: 8px; }
  .hero-detail-divider { display: block; height: 30px; opacity: 0.5; }
  .mentor-image-wrapper { max-width: 320px; }
}
.reg-section { padding: 100px 24px; background: var(--bg-2); }
.reg-wrap { max-width: 520px; margin: 0 auto; }
.reg-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.form-group label { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.form-group input {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus { border-color: var(--gold); }
.form-group input::placeholder { color: var(--text-dim); }
.reg-btn { width: 100%; justify-content: center; font-size: 16px; margin-top: 4px; }
.reg-note { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); text-align: center; }
.reg-success {
  background: var(--bg-card); border: 1px solid rgba(46,184,126,0.35);
  border-radius: var(--radius-lg); padding: 48px 36px;
  text-align: center; display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.success-icon { font-size: 52px; }
.reg-success h3 { font-family: var(--font-display); font-size: 32px; font-weight: 400; letter-spacing: 0.04em; color: var(--green); }
.reg-success p { font-family: var(--font-body); font-size: 15px; color: var(--text-muted); }

@media (max-width: 600px) { .reg-section { padding: 60px 16px; } .reg-form { padding: 24px 18px; } }
.problems { padding: 100px 24px; background: var(--bg-2); }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 48px; text-align: left;
}
.problem-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--text-muted);
  line-height: 1.5; transition: border-color 0.2s;
}
.problem-card:hover { border-color: rgba(232,64,64,0.35); }
.problem-x { color: var(--red); font-size: 16px; font-weight: 900; flex-shrink: 0; margin-top: 1px; }

@media (max-width: 900px) { .problems-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .problems-grid { grid-template-columns: 1fr; } .problems { padding: 60px 16px; } }
.wyl { padding: 100px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.section-tag { display: inline-block; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); background: var(--gold-dim); border: 1px solid rgba(232,160,32,0.3); padding: 4px 14px; border-radius: 100px; margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(20px, 5vw, 68px); font-weight: 400; line-height: 1.0; letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 12px; white-space: nowrap; }
.accent { color: var(--gold); }
.section-sub { font-family: var(--font-body); font-size: clamp(12px, 3.8vw, 15px); color: var(--text-muted); margin-bottom: 52px; }
.wyl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; text-align: left; }
.wyl-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: border-color 0.2s, transform 0.2s; }
.wyl-card:hover { border-color: rgba(232,160,32,0.4); transform: translateY(-3px); }
.wyl-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.wyl-title { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.wyl-desc { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 1000px) { .wyl-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .wyl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .wyl-grid { grid-template-columns: 1fr; } .wyl { padding: 60px 16px; } }
.wiif { padding: 100px 24px; background: var(--bg-2); }
.wiif-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 48px; }
.wiif-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: border-color 0.2s, transform 0.2s; }
.wiif-card:hover { border-color: rgba(232,160,32,0.4); transform: translateY(-3px); }
.wiif-icon { font-size: 32px; }
.wiif-label { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--text); text-align: center; line-height: 1.4; }

@media (max-width: 900px) { .wiif-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .wiif-grid { grid-template-columns: repeat(2, 1fr); } .wiif { padding: 60px 16px; } }
.bonuses { padding: 100px 24px; }
.bonuses-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 48px 0 36px; text-align: left; }
.bonus-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: border-color 0.2s; display: flex; flex-direction: column; gap: 10px; }
.bonus-card:hover { border-color: rgba(232,160,32,0.4); }
.bonus-num { font-family: var(--font-display); font-size: 44px; font-weight: 400; color: var(--border); line-height: 1; letter-spacing: 0.04em; }
.bonus-free { display: inline-block; font-family: var(--font-body); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); background: rgba(46,184,126,0.12); border: 1px solid rgba(46,184,126,0.3); padding: 2px 8px; border-radius: 100px; }
.bonus-title { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.5; }
.bonus-desc { font-family: var(--font-body); font-size: 12px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 900px) { .bonuses-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .bonuses-grid { grid-template-columns: repeat(2, 1fr); } .bonuses { padding: 60px 16px; } }
@media (max-width: 400px) { .bonuses-grid { grid-template-columns: 1fr; } }
.about { padding: 100px 24px; background: var(--bg-2); }
.about-layout { display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: start; margin-top: 40px; text-align: left; }
.about-avatar { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.about-avatar-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 50%;
  border: 3px solid rgba(232, 160, 32, 0.35); /* Premium lighter gold outline */
  background-color: #ffffff;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.5));
}
.about-name-block { text-align: center; }
.about-name-block h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 900; color: var(--text); }
.about-name-block p { font-family: var(--font-body); font-size: 13px; color: var(--gold); font-weight: 600; margin-top: 4px; }

.about-roles { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.role-item { display: flex; align-items: flex-start; gap: 8px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; }
.role-dot { color: var(--gold); font-size: 10px; flex-shrink: 0; margin-top: 3px; }
.role-title { font-family: var(--font-body); font-size: 12px; font-weight: 700; color: var(--text); }
.role-role { font-family: var(--font-body); font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.about-title { font-family: var(--font-display); font-size: clamp(22px, 6.5vw, 52px); font-weight: 400; line-height: 1.1; letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 20px; }
.about-bio { font-family: var(--font-body); font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; text-align: justify; }
.about-bio strong { color: var(--text); }
.about-bio em { font-style: italic; color: var(--gold); }

.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.about-stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.stat-value { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--gold); letter-spacing: 0.04em; }
.stat-label { font-family: var(--font-body); font-size: 11px; color: var(--text-muted); font-weight: 600; }

@media (max-width: 860px) { .about-layout { grid-template-columns: 1fr; } .about-avatar { flex-direction: row; align-items: flex-start; } .about-name-block { text-align: left; } .about { padding: 60px 16px; } }
@media (max-width: 560px) { .about-stats { grid-template-columns: repeat(2, 1fr); } .about-avatar { flex-direction: column; align-items: center; } .about-name-block { text-align: center; } }
.testimonials { padding: 100px 24px; }
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 48px 0; text-align: left; }
.testi-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.testi-card:hover { border-color: rgba(232,160,32,0.4); transform: translateY(-3px); }
.testi-thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.testi-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.testi-card:hover .testi-thumb img { transform: scale(1.04); }
.testi-play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(0,0,0,0.4); font-size: 28px; color: #fff; opacity: 0; transition: opacity 0.2s; }
.testi-card:hover .testi-play { opacity: 1; }
.testi-label-badge { position: absolute; top: 8px; left: 8px; font-family: var(--font-body); font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; background: var(--gold); color: #000; padding: 3px 8px; border-radius: 4px; }
.testi-title { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--text); padding: 14px 16px 4px; line-height: 1.5; flex: 1; }
.testi-brand { font-family: var(--font-body); font-size: 11px; font-weight: 600; color: var(--gold); padding: 0 16px 14px; }

@media (max-width: 900px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testi-grid { grid-template-columns: 1fr; } .testimonials { padding: 60px 16px; } }
.programs { padding: 100px 24px; background: var(--bg-2); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.program-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 12px; transition: border-color 0.2s, transform 0.2s; }
.program-card:hover { border-color: rgba(232,160,32,0.35); transform: translateY(-3px); }
.program-card.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.program-badge { font-family: var(--font-body); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); background: var(--gold-dim); border: 1px solid rgba(232,160,32,0.3); padding: 4px 12px; border-radius: 100px; display: inline-block; }
.program-type { font-family: var(--font-display); font-size: 36px; font-weight: 400; color: var(--text); letter-spacing: 0.04em; line-height: 1; }
.program-desc { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; }
.program-cta { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--gold); transition: color 0.2s; }
.program-cta:hover { color: var(--gold-light); }

@media (max-width: 700px) { .programs-grid { grid-template-columns: 1fr; } .programs { padding: 60px 16px; } }
.cta-banner { padding: 100px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232,160,32,0.06) 0%, transparent 70%); pointer-events: none; }
.cta-banner-inner { position: relative; max-width: 700px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.cta-title { font-family: var(--font-display); font-size: clamp(12px, 4.5vw, 58px); font-weight: 400; line-height: 1.05; letter-spacing: 0.02em; text-transform: uppercase; white-space: nowrap; }
.cta-details {
  margin-bottom: 24px;
}
.cta-contact { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 24px; }

@media (max-width: 600px) { .cta-banner { padding: 60px 16px; } }
.faq { padding: 100px 24px; background: var(--bg-2); }
.faq-list { max-width: 780px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 8px; text-align: left; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: rgba(232,160,32,0.35); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; text-align: left; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--text); transition: color 0.2s; }
.faq-item.open .faq-q { color: var(--gold); }
.faq-icon { font-size: 22px; font-weight: 300; color: var(--gold); flex-shrink: 0; }
.faq-a { padding: 0 24px 20px; font-family: var(--font-body); font-size: 14px; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 600px) { .faq { padding: 60px 16px; } }
.footer { padding: 60px 24px; border-top: 1px solid var(--border); text-align: center; }
.footer-inner { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-logo { display: flex; flex-direction: column; align-items: center; gap: 0; }
.bsw-hl1-sm { font-family: var(--font-serif); font-size: 22px; font-weight: 900; color: var(--text); }
.bsw-hl3-sm { font-family: var(--font-body); font-size: 9px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border-top: 1px solid var(--gold); padding-top: 3px; margin-top: 3px; }
.footer-tagline { font-family: var(--font-body); font-size: 13px; color: #ffffff; font-weight: 600; }
.footer-contact { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-contact a { font-family: var(--font-body); font-size: 13px; color: #ffffff; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-copy { font-family: var(--font-body); font-size: 13px; color: #ffffff; }
.footer-disclaimer { font-family: var(--font-body); font-size: 11px; color: #ffffff; max-width: 520px; line-height: 1.6; }
.footer p { color: #ffffff !important; opacity: 1 !important; }
