*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #D4A017;
  --gold-light: #F0C040;
  --gold-btn: #C8960C;
  --gold-glow: rgba(212,160,23,0.18);
  --bg-dark: #0A0A0A;
  --bg-card: #141414;
  --bg-card2: #111111;
  --text-white: #FFFFFF;
  --text-muted: #888888;
  --text-light: #C8C8C8;
  --border: #242424;
  --border-hover: #3a3a3a;
  --green: #4CAF50;
  --radius: 10px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

section { scroll-margin-top: 75px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 72px;
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: auto; width: 170px; display: block; transition: opacity var(--transition); }
.nav-logo img:hover { opacity: 0.85; }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links > li { display: flex; align-items: center; }
.nav-links a {
  color: var(--text-light); text-decoration: none;
  font-size: 12.5px; font-weight: 500; letter-spacing: .6px;
  text-transform: uppercase; transition: color var(--transition);
  position: relative; display: flex; align-items: center; height: 100%;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.btn-register-nav {
  background: var(--gold-btn); color: #000; border: none;
  padding: 10px 22px; font-weight: 700; font-size: 12.5px;
  letter-spacing: .5px; text-transform: uppercase;
  border-radius: 4px; cursor: pointer; transition: background var(--transition), transform var(--transition);
}
.btn-register-nav:hover { background: var(--gold-light); transform: translateY(-1px); }

.menu-toggle { display: none; font-size: 26px; color: #fff; cursor: pointer; line-height: 1; }

@media (max-width: 900px) {
  nav { padding: 0 20px; height: 68px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 68px; left: 0; width: 100%;
    background: #0a0a0a; border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: center; gap: 0;
    padding: 0; display: none; overflow: hidden;
  }
  /* Regular li items get a border */
  .nav-links > li { width: 100%; border-bottom: 1px solid var(--border); }
  /* Dropdown li: no border when collapsed */
  .nav-links > li.nav-dropdown { border-bottom: none; }
  /* Dropdown li: border only when open (sits below the sub-items) */
  .nav-links > li.nav-dropdown.open { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 14px 20px; font-size: 13px; }
  .nav-links a::after { display: none; }
  .nav-links.active { display: flex; }
  .btn-register-nav { display: none; }
  .nav-logo img { width: 150px; }
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 50%, rgba(10,10,10,0.95) 100%),
    url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1800&q=80') center/cover no-repeat;
  display: flex; align-items: center;
  padding: 100px 60px 60px;
  position: relative;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
  pointer-events: none;
}
.hero-content { max-width: 640px; position: relative; z-index: 1; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.08;
  color: var(--gold-light); margin-bottom: 16px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; padding-top: 50px; }

.btn-primary {
  background: var(--gold-btn); color: #000; border: none;
  padding: 14px 30px; font-weight: 700; font-size: 14px;
  letter-spacing: .3px; border-radius: 4px; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.35);
}
.btn-outline {
  background: transparent; color: var(--text-white);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 14px 30px; font-weight: 600; font-size: 14px;
  border-radius: 4px; cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* TRUST BAR */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-bar-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-muted); font-weight: 500;
}
.trust-bar-item svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }
@media (max-width: 768px) {
  .trust-bar { padding: 18px 24px; gap: 20px; }
  .trust-bar-item { font-size: 12px; }
}

/* SECTIONS COMMON */
section { padding: 88px 60px; }
.section-title {
  text-align: center; font-size: 30px; font-weight: 700; margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.section-title span { color: var(--gold); }
.section-sub { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 52px; max-width: 500px; margin-left: auto; margin-right: auto; }
.gold-bar { width: 44px; height: 3px; background: var(--gold); margin: 12px auto 18px; border-radius: 2px; }

/* WHAT YOU LEARN */
#learn { background: var(--bg-dark); }
.learn-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 1100px; margin: 0 auto;
}
.learn-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 24px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.learn-card:hover {
  border-color: var(--gold); transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4), 0 0 0 1px var(--gold-glow);
}
.learn-card-icon {
  width: 44px; height: 44px; background: var(--gold-glow);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.learn-card-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.learn-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.learn-card p { color: var(--text-muted); font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
.learn-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--gold); font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase;
}
.learn-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* TOOLS SECTION */
.tools-section { padding: 88px 60px; background: var(--bg-card2); }
.tools-section h2 { text-align: center; font-size: 30px; font-weight: 700; margin-bottom: 8px; }
.tools-section > .gold-bar { margin-bottom: 14px; }
.tools-section > p { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 48px; }
.tools-grid {
  max-width: 820px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.tool-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  text-decoration: none; color: var(--text-white);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column; gap: 0;
}
.tool-card:hover {
  transform: translateY(-6px); border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 20px var(--gold-glow);
}
.tool-icon { font-size: 40px; margin-bottom: 16px; line-height: 1; }
.tool-card h3 { color: var(--gold-light); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.tool-card p { color: var(--text-muted); font-size: 13px; line-height: 1.6; flex: 1; }
.tool-card span {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; color: var(--gold); font-size: 13px; font-weight: 600;
  transition: gap var(--transition);
}
.tool-card:hover span { gap: 10px; }
@media (max-width: 768px) {
  .tools-grid { grid-template-columns: 1fr; }
  .tools-section { padding: 64px 24px; }
}

/* MENTOR */
.mentor-section { background: var(--bg-card2); }
.mentor-wrap {
  display: flex; align-items: center; gap: 64px;
  max-width: 1000px; margin: 0 auto;
}
.mentor-img-wrap { position: relative; flex-shrink: 0; width: 300px; height: 360px; }
.mentor-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius); filter: grayscale(15%);
  border: 1px solid var(--border);
}
.mentor-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--gold); color: #000;
  width: 88px; height: 88px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px; line-height: 1;
  box-shadow: 0 8px 24px rgba(212,160,23,0.4);
}
.mentor-badge span { font-size: 10px; font-weight: 600; margin-top: 3px; text-align: center; }
.mentor-content { flex: 1; }
.mentor-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; }
.mentor-content h2 { font-size: 36px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.3px; }
.mentor-content p { color: var(--text-muted); font-size: 14px; line-height: 1.75; margin-bottom: 30px; }
.mentor-points { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.mentor-points li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-light); }
.mentor-points li::before {
  content: '✓'; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(212,160,23,0.12); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; flex-shrink: 0;
}

/* PRICING */
#pricing { background: var(--bg-dark); }
.pricing-grid {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  max-width: 720px; margin: 0 auto;
}
.price-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 38px 32px; width: 310px;
  position: relative; transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.price-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.price-card.popular {
  border-color: var(--gold); background: #191200;
  box-shadow: 0 0 40px rgba(212,160,23,0.12);
}
.price-card.popular:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(212,160,23,0.2); }
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #000; font-size: 11px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 18px; border-radius: 20px; white-space: nowrap;
}
.price-plan { font-size: 12px; color: var(--text-muted); font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1.5px; }
.price-amount { font-size: 52px; font-weight: 800; color: var(--text-white); margin-bottom: 26px; line-height: 1; }
.price-amount span { font-size: 22px; font-weight: 600; vertical-align: top; margin-top: 8px; display: inline-block; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 34px; }
.price-features li { font-size: 13.5px; color: var(--text-light); display: flex; align-items: center; gap: 10px; }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 13px; flex-shrink: 0; }
.btn-join {
  width: 100%; padding: 14px; border-radius: 5px; font-weight: 700;
  font-size: 13.5px; letter-spacing: .5px; cursor: pointer;
  transition: all var(--transition); text-transform: uppercase;
}
.btn-join-outline { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); }
.btn-join-outline:hover { background: var(--gold); color: #000; }
.btn-join-gold { background: var(--gold-btn); border: none; color: #000; }
.btn-join-gold:hover { background: var(--gold-light); box-shadow: 0 6px 20px rgba(212,160,23,0.3); }

/* ENROLL FORM */
.enroll-section { background: var(--bg-card2); }
.enroll-wrap {
  display: flex; align-items: flex-start; gap: 72px;
  max-width: 1020px; margin: 0 auto;
}
.enroll-left { flex: 1; }
.enroll-left h2 { font-size: 36px; font-weight: 800; line-height: 1.1; margin-bottom: 14px; color: var(--gold-light); letter-spacing: -0.3px; }
.enroll-left p { color: var(--text-muted); font-size: 14px; margin-bottom: 36px; }
.enroll-trust { display: flex; flex-direction: column; gap: 20px; }
.trust-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-icon {
  width: 44px; height: 44px; background: var(--gold-glow);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.trust-item p { font-size: 12px; color: var(--text-muted); margin: 0; }
.enroll-right { width: 360px; flex-shrink: 0; }
.form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 28px;
}
.form-card-title { font-size: 16px; font-weight: 700; margin-bottom: 22px; color: var(--gold-light); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: .8px; text-transform: uppercase; margin-bottom: 7px; }
.form-group input, .form-group select {
  width: 100%; background: #0C0C0C; border: 1px solid var(--border);
  border-radius: 5px; padding: 12px 14px; color: var(--text-white);
  font-size: 14px; font-family: 'Inter', sans-serif; transition: border-color var(--transition);
  outline: none; appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-group select option { background: #141414; }
.form-group input::placeholder { color: #444; }
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.btn-pay {
  width: 100%; padding: 15px; background: var(--gold-btn); border: none;
  color: #000; font-weight: 800; font-size: 15px; letter-spacing: .8px;
  text-transform: uppercase; border-radius: 5px; cursor: pointer;
  margin-top: 8px; transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-pay:hover {
  background: var(--gold-light); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.3);
}
.form-note { font-size: 11px; color: #444; text-align: center; margin-top: 12px; line-height: 1.5; }
.social-proof { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.social-proof h3 { font-size: 15px; color: var(--gold-light); margin-bottom: 16px; }
.social-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.social-card {
  display: flex; align-items: center; gap: 10px;
  padding: 14px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 10px;
  text-decoration: none; color: var(--text-white); transition: .3s;
}
.social-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.social-card i { font-size: 18px; color: var(--gold); }
.social-card span { font-size: 13px; font-weight: 600; }
.community-count { margin-top: 16px; font-size: 12px; color: var(--text-muted); }
.community-count strong { color: var(--gold-light); }

/* TESTIMONIALS */
#testimonials { background: var(--bg-dark); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1060px; margin: 0 auto;
}
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.testi-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars span { color: var(--gold); font-size: 14px; }
.testi-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: #000; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; }
.testi-role { font-size: 11px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

/* FAQ */
#faq { background: var(--bg-card2); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--text-white);
  font-size: 15px; font-weight: 500; font-family: 'Inter', sans-serif;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left; transition: color var(--transition); gap: 20px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 22px; color: var(--gold); font-weight: 300; transition: transform .3s ease; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-size: 14px; color: var(--text-muted); line-height: 1.75;
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s;
}
.faq-item.open .faq-answer { max-height: 240px; padding-bottom: 20px; }

/* FOOTER */
footer {
  background: #060606; border-top: 1px solid var(--border);
  padding: 32px 60px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 12px; color: #a4a4a4; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 12px; color: #a4a4a4; text-decoration: none; text-transform: uppercase; letter-spacing: .5px; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

/* CALCULATOR PAGES */
.calculator-section { min-height: 100vh; padding: 120px 24px 80px; background: var(--bg-dark); }
.calculator-page-header { text-align: center; margin-bottom: 48px; }
.calculator-page-header h2 { font-size: 34px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.calculator-page-header .gold-bar { margin: 12px auto 14px; }
.calculator-page-header p { color: var(--text-muted); font-size: 14px; }
.calculator-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 36px 32px;
  max-width: 540px; margin: 0 auto;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
}
.calculator-card:hover { border-color: var(--border-hover); }
.calculator-card h3 { font-size: 20px; font-weight: 700; color: var(--gold-light); margin-bottom: 28px; }
.results { margin-top: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.result-box {
  background: #0E0E0E; padding: 18px 16px;
  border-radius: 10px; border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.result-box:hover { border-color: var(--border-hover); }
.result-box span { color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; font-weight: 500; }
.result-box h4 { margin-top: 8px; font-size: 22px; font-weight: 800; color: var(--gold-light); }
.calculator-card button {
  width: 100%; margin-top: 18px;
  background: var(--gold-btn); color: #000;
  border: none; padding: 15px; border-radius: 8px;
  font-weight: 800; font-size: 14px; letter-spacing: .5px;
  text-transform: uppercase; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.calculator-card button:hover {
  background: var(--gold-light); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.3);
}
.calc-back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 13px; text-decoration: none;
  margin-bottom: 32px; transition: color var(--transition);
}
.calc-back-link:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 900px) {
  section { padding: 64px 24px; }
  .hero { padding: 90px 24px 60px; }
  .learn-grid { grid-template-columns: repeat(2, 1fr); }
  .mentor-wrap { flex-direction: column; align-items: flex-start; }
  .mentor-img-wrap { width: 100%; height: 300px; }
  .pricing-grid { flex-direction: column; align-items: center; }
  .enroll-wrap { flex-direction: column; gap: 40px; }
  .enroll-right { width: 100%; }
  .testi-grid { grid-template-columns: 1fr; }
  footer { padding: 24px; flex-direction: column; align-items: flex-start; }
  .trust-bar { padding: 16px 24px; gap: 16px; }
}
@media (max-width: 540px) {
  .learn-grid { grid-template-columns: 1fr; }
  .results { grid-template-columns: 1fr; }
  .price-card { width: 100%; }
  .tools-section { padding: 64px 20px; }
}

/* NAV DROPDOWN - shared */
.nav-dropdown-toggle { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.dropdown-arrow {
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s ease;
}
.nav-dropdown.open .dropdown-arrow { transform: rotate(225deg); margin-top: 3px; }
.nav-dropdown-menu li a::after { display: none; }

/* NAV DROPDOWN - DESKTOP only */
@media (min-width: 901px) {
  .nav-dropdown { display:block;position: relative; display: flex; align-items: center; }
  .nav-dropdown-menu {
    display: block;
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #111111; border: 1px solid var(--border);
    border-radius: 8px; min-width: 210px;
    list-style: none; padding: 6px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 200;
  }
  .nav-dropdown-menu::before {
    content: ''; position: absolute; top: -6px; left: 50%;
    transform: translateX(-50%);
    width: 10px; height: 6px;
    background: #111111;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown-menu li a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 6px;
    font-size: 13px; font-weight: 500;
    color: var(--text-light); text-decoration: none;
    letter-spacing: 0; text-transform: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
  }
  .nav-dropdown-menu li a:hover { background: rgba(212,160,23,0.1); color: var(--gold); }
}

/* NAV DROPDOWN - MOBILE only */
@media (max-width: 900px) {
  .nav-dropdown { width: 100%; display: block; }
  .nav-dropdown-toggle { justify-content: space-between; width: 100%; padding: 14px 20px; }
  /* Dropdown li: no border when collapsed, restored when open */
  .nav-links > li.nav-dropdown { border-bottom: none; }
  .nav-links > li.nav-dropdown.open { border-bottom: 1px solid var(--border); }
  /* Sub-menu: hidden by default, shown inline when open */
   .nav-dropdown-menu,
    .dropdown-arrow {
        display: none !important;
    }
  }
 

/* MENTOR PHOTO NAME */
.mentor-photo-name { margin-top: 16px; text-align: center; }
.mentor-photo-title { font-size: 16px; font-weight: 700; color: var(--text-white); letter-spacing: -0.2px; }
.mentor-photo-role { font-size: 12px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; margin-top: 3px; }

/* FORM VALIDATION */
.req-star { color: var(--gold); font-size: 13px; }
.field-error { display: none; font-size: 11.5px; color: #e05555; margin-top: 5px; font-weight: 500; }
.form-group input.input-error { border-color: #e05555 !important; background: rgba(220,60,60,0.05); }

/* FORM SUCCESS STATE */
.form-success { text-align: center; padding: 20px 10px 10px; }
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(76,175,80,0.15); border: 2px solid #4caf50;
  color: #4caf50; font-size: 28px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  animation: successPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes successPop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.form-success h3 { font-size: 20px; font-weight: 800; color: var(--text-white); margin-bottom: 10px; }
.form-success p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.form-success-meta {
  display: flex; flex-direction: column; gap: 8px;
  background: #0E0E0E; border: 1px solid var(--border);
  border-radius: 8px; padding: 16px;
  font-size: 13px; color: var(--text-light); text-align: left;
}
.form-success-meta span { display: flex; align-items: center; gap: 8px; }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6), 0 4px 12px rgba(0,0,0,0.4);
  animation: none;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}
.whatsapp-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: #111; border: 1px solid var(--border);
  color: var(--text-white); font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: #111;
  border-right: 0; width: 0; height: 0;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@media (max-width: 540px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-tooltip { display: none; }
}