:root {
  --purple: #4B3B9E;
  --purple-dk: #352B78;
  --purple-lt: #EAE7F8;
  --yellow: #F5C842;
  --yellow-dk: #C9A22A;
  --yellow-lt: #FDF4D0;
  --dark: #1C1825;
  --mid: #5A556B;
  --muted: #8B87A0;
  --light: #F8F7F4;
  --border: rgba(28, 24, 37, 0.09);
  --white: #FFFFFF;
  --green: #1a5e38;
  --green-lt: rgba(43, 122, 75, 0.10);
}

/* ── PAGE HEADER (MATCHES HTML DARK THEME) ── */
.page-header {
  padding: 110px 52px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.ph-bg {
  position: absolute;
  inset: 0;
  background: url('../img/uploads/speakers-hero-image.jpeg') center 52% / cover no-repeat;
  opacity: 0.20;
}
.ph-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ph-circle.c1 {
  width: 520px;
  height: 520px;
  right: -140px;
  top: -180px;
  border: 1px solid rgba(245, 200, 66, 0.10);
}
.ph-circle.c2 {
  width: 320px;
  height: 320px;
  right: -20px;
  top: -60px;
  border: 1px solid rgba(245, 200, 66, 0.07);
}
.ph-circle.c3 {
  width: 160px;
  height: 160px;
  left: 52px;
  bottom: 60px;
  background: rgba(75, 59, 158, 0.20);
}
.ph-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 0;
}
.ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.ph-eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--yellow);
}
.ph-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 700;
  line-height: 1.04;
  color: #fff;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}
.ph-left h1 em {
  font-style: italic;
  color: var(--yellow);
}
.ph-desc {
  font-size: 16px;
  line-height: 1.78;
  color: #f3f3f3;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 40px;
}
.ph-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-bottom: 52px;
}
.phstat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.phstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.phstat-num sup {
  font-size: 14px;
  color: var(--yellow);
  vertical-align: super;
}
.phstat-label {
  font-size: 11px;
  color: #f3f3f3;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Right side: featured speaker card */
.ph-featured {
  position: relative;
  z-index: 1;
  align-self: end;
}
.ph-featured-card {
  background: var(--white);
  border-radius: 18px 18px 0 0;
  padding: 36px 36px 40px;
  box-shadow: 0 -8px 48px rgba(0, 0, 0, .30);
  position: relative;
  overflow: hidden;
}
.ph-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--yellow));
}
.ph-feat-tag {
  display: inline-block;
  background: var(--yellow-lt);
  color: var(--yellow-dk);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.ph-feat-speaker {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}
.ph-feat-ava {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--yellow);
  border: 3px solid var(--yellow-lt);
}
.ph-feat-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.ph-feat-role {
  font-size: 13px;
  color: var(--mid);
}
.ph-feat-quote {
  font-size: 14px;
  line-height: 1.75;
  color: var(--mid);
  font-style: italic;
  border-left: 3px solid var(--yellow);
  padding-left: 14px;
  margin-bottom: 18px;
}
.ph-feat-upcoming {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--purple-lt);
  border-radius: 8px;
  padding: 10px 14px;
}
.ph-feat-upcoming-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}
.ph-feat-upcoming-text {
  font-size: 12px;
  color: var(--purple);
  font-weight: 500;
}
.ph-feat-upcoming-text strong {
  font-weight: 700;
}

/* ── FILTER BAR ── */
.filter-bar {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--border);
  padding: 0 52px;
  backdrop-filter: blur(8px);
}
.filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 0;
}
.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ftab {
  padding: 6px 15px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--mid);
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .18s;
  white-space: nowrap;
}
.ftab:hover {
  border-color: rgba(75, 59, 158, .30);
  color: var(--purple);
}
.ftab.active {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.filter-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 7px 13px;
  transition: border-color .2s;
}
.search-wrap:focus-within {
  border-color: var(--purple);
}
.search-wrap svg {
  width: 14px;
  height: 14px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.search-wrap input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
  width: 170px;
}
.search-wrap input::placeholder {
  color: var(--muted);
}
.result-count-badge {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

/* ── SECTION EYEBROW ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-lt);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* ── SPOTLIGHT SECTION ── */
.spotlight-section {
  padding: 56px 52px 0;
  background: var(--white);
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.spotlight-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
  cursor: pointer;
  background: var(--white);
}
.spotlight-card:hover {
  box-shadow: 0 14px 48px rgba(75, 59, 158, .14);
  transform: translateY(-5px);
}
.sc-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.sc-img-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  transition: transform .5s;
}
.spotlight-card:hover .sc-img-bg {
  transform: scale(1.05);
}
.sc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(28, 24, 37, .72) 100%);
}
.sc-img-name {
  position: absolute;
  bottom: 14px;
  left: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.sc-img-role {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
}
.sc-body {
  padding: 20px 22px 22px;
}
.sc-expertise {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.sc-tag {
  background: var(--purple-lt);
  color: var(--purple);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
}
.sc-tag.yel {
  background: var(--yellow-lt);
  color: var(--yellow-dk);
}
.sc-bio {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.sc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.sc-talks {
  font-size: 12px;
  color: var(--muted);
}
.sc-talks strong {
  color: var(--dark);
  font-weight: 600;
}
.sc-profile-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .18s;
}
.sc-profile-btn:hover {
  gap: 8px;
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(28, 24, 37, .75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  animation: popIn .28s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
}
@keyframes popIn {
  from {
    transform: scale(.88);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.modal-banner {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.modal-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.modal-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(28, 24, 37, .80) 100%);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  transition: background .18s;
}
.modal-close:hover {
  background: rgba(255, 255, 255, .35);
}
.modal-ava-float {
  position: absolute;
  bottom: -28px;
  left: 28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.modal-body {
  padding: 44px 28px 32px;
}
.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.modal-role {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 12px;
}
.modal-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.modal-tags .sc-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--purple-lt);
  color: var(--purple);
}
.modal-bio {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.78;
  margin-bottom: 22px;
}
.modal-divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}
.modal-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.modal-talks-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-talk {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: var(--light);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.modal-talk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  margin-top: 4px;
  flex-shrink: 0;
}
.modal-talk-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}
.modal-talk-meta {
  font-size: 11px;
  color: var(--muted);
}
.modal-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.modal-soc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  color: var(--mid);
  transition: all .18s;
}
.modal-soc:hover {
  border-color: var(--purple);
  color: var(--purple);
}
.modal-soc-primary {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.modal-soc-primary:hover {
  background: var(--purple-dk);
  color: #fff;
}

/* ── ALL SPEAKERS SECTION ── */
.all-section {
  padding: 8px 52px 80px;
  background: var(--white);
}
.all-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.all-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.spk-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 28px 20px 22px;
  text-align: center;
  transition: box-shadow .22s, border-color .22s, transform .22s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.spk-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.spk-card:hover {
  box-shadow: 0 10px 32px rgba(75, 59, 158, .12);
  border-color: rgba(75, 59, 158, .20);
  transform: translateY(-3px);
}
.spk-card:hover::after {
  transform: scaleX(1);
}
.spk-card.hidden {
  display: none;
}
.spk-ava {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.spk-ava::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--purple), var(--yellow)) border-box;
}
.spk-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.spk-role {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.4;
}
.spk-tag-pill {
  display: inline-block;
  background: var(--purple-lt);
  color: var(--purple);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.spk-tag-pill.yel {
  background: var(--yellow-lt);
  color: var(--yellow-dk);
}
.spk-tag-pill.grn {
  background: var(--green-lt);
  color: var(--green);
}
.spk-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.spk-soc-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  transition: background .18s, color .18s;
}
.spk-soc-btn:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

/* ── EMPTY STATE ── */
.empty-state {
  display: none;
  text-align: center;
  padding: 72px 40px;
}
.empty-state.show {
  display: block;
}
.empty-state-icon {
  font-size: 44px;
  margin-bottom: 14px;
}
.empty-state h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.empty-state p {
  font-size: 14px;
  color: var(--mid);
}

/* ── BECOME A SPEAKER ── */
.become-section {
  background: var(--dark);
  padding: 80px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.become-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(245, 200, 66, .08);
  pointer-events: none;
}
.become-section::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(245, 200, 66, .05);
  pointer-events: none;
}
.become-left {
  position: relative;
  z-index: 1;
}
.become-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.become-left h2 em {
  font-style: italic;
  color: var(--yellow);
}
.become-left > p {
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
  margin-bottom: 30px;
  font-weight: 300;
}
.become-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.become-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.become-perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(245, 200, 66, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.become-perk-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.become-perk-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.55;
  margin-bottom: 0;
}

/* Speak form */
.speak-form {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  z-index: 1;
}
.speak-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.form-field {
  margin-bottom: 14px;
}
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 13px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
  background: var(--light);
  outline: none;
  transition: border-color .2s, background .2s;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--purple);
  background: var(--white);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #b0acbf;
}
.form-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top: 6px solid var(--mid);
  pointer-events: none;
}
.btn-speak {
  width: 100%;
  background: var(--purple);
  color: #fff;
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background .2s, transform .15s;
}
.btn-speak:hover {
  background: var(--purple-dk);
  transform: translateY(-1px);
}
.speak-note {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 80px 52px;
  background: var(--light);
}
.testimonials h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 36px;
  letter-spacing: -.01em;
}
.testimonials h2 em {
  font-style: italic;
  color: var(--purple);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow .2s;
}
.testi-card:hover {
  box-shadow: 0 8px 28px rgba(75, 59, 158, .09);
}
.testi-quote {
  font-size: 32px;
  line-height: 1;
  color: var(--yellow);
  margin-bottom: 12px;
  font-family: serif;
}
.testi-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.testi-role {
  font-size: 11px;
  color: var(--muted);
}

/* ── SCROLL ANIM ── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .52s ease, transform .52s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav,
  .filter-bar,
  .spotlight-section,
  .all-section,
  .become-section,
  .testimonials {
    padding-left: 28px;
    padding-right: 28px;
  }
  .page-header {
    padding: 96px 28px 0;
  }
  .ph-content {
    grid-template-columns: 1fr;
  }
  .ph-featured {
    display: none;
  }
  .ph-stats {
    padding-bottom: 44px;
  }
  .spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .speakers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .become-section {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 24px 28px;
  }
}
@media (max-width: 720px) {
  nav {
    padding: 0 16px;
  }
  .nav-links {
    display: none;
  }
  .filter-bar,
  .spotlight-section,
  .all-section,
  .become-section,
  .testimonials {
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-header {
    padding: 88px 16px 0;
  }
  .filter-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .spotlight-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 20px 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}



/* Success Modal Styles */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.success-modal-content {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: modalSlideIn 0.3s ease-out;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2B7A4B, #1a5e38);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 48px;
    color: white;
    font-weight: bold;
}

.success-modal-content h2 {
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 16px;
    font-weight: 700;
}

.success-modal-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-close-modal {
    background: linear-gradient(135deg, #4B3B9E, #3B2B8E);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-close-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(75, 59, 158, 0.3);
}