@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: #021a1a;
  color: #fff;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAVBAR ── */
.qnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(168,85,247,0.25);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(168,85,247,0.08);
}

.qnav-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 120px;
  height: 75px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
}

.qnav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qnav-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(168,85,247,0.4));
}

.qnav-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(90deg, #c084fc, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qnav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.qnav-links a {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.2s;
}

.qnav-links a:hover,
.qnav-links a.active {
  color: #a855f7;
  background: rgba(168,85,247,0.08);
}

.qnav-cta {
  background: linear-gradient(90deg, #a855f7, #f59e0b);
  color: #fff !important;
  padding: 10px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(168,85,247,0.35);
  white-space: nowrap;
}

.qnav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  margin-left: auto;
}

.qnav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.qnav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 12px;
}

.qnav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #c084fc;
  border-radius: 2px;
  transition: all 0.3s;
}

.qnav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(168,85,247,0.2);
  background: rgba(255,255,255,0.98);
  gap: 4px;
}

.qnav-mobile a {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.qnav-mobile a:hover { color: #a855f7; background: rgba(168,85,247,0.08); }
.qnav-mobile .qnav-cta { text-align: center; margin-top: 8px; color: #fff !important; }
.qnav-mobile.open { display: flex; }

.qnav-mobile a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qnav-mobile a svg { flex-shrink: 0; stroke: #a855f7; }
.qnav-mobile .qnav-cta svg { stroke: #fff; }

/* Hamburger → X animation */
.qnav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.qnav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.qnav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .qnav-links { display: none; }
  .qnav-inner .qnav-cta { display: none; }
  .qnav-hamburger { display: flex; }
  .qnav-inner { padding: 0 16px; }
}

/* ── HERO ── */
.q-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0a1e 0%, #1a0a2e 50%, #0d0a1e 100%);
  padding-top: 75px;
  padding-bottom: 0;
}

/* Particles */
#q-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Grid lines */
.q-hero-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(168,85,247,0.06) 0, rgba(168,85,247,0.06) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(168,85,247,0.06) 0, rgba(168,85,247,0.06) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
  z-index: 0;
}

/* Orbs */
.q-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: q-orb-float 8s ease-in-out infinite;
}

.q-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.3), transparent 70%);
  top: -120px; left: -150px;
}

.q-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.2), transparent 70%);
  top: 30%; right: -120px;
  animation-delay: -3s;
}

.q-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(192,132,252,0.18), transparent 70%);
  bottom: 0; left: 35%;
  animation-delay: -5s;
}

@keyframes q-orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-28px) scale(1.04); }
}

/* Hero inner layout */
.q-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 120px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.q-hero-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.q-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.4);
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  color: #c084fc;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
}

.q-dot {
  width: 7px; height: 7px;
  background: #f59e0b;
  border-radius: 50%;
  animation: q-pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes q-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.q-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: #fff;
  text-shadow: 0 0 60px rgba(79,209,197,0.1);
}

.q-grad {
  background: linear-gradient(90deg, #c084fc, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.q-hero-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}

.q-hero-tagline {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* CTA Buttons */
.q-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.q-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(90deg, #a855f7, #f59e0b);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(168,85,247,0.4), 0 4px 16px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.q-btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s;
}

.q-btn-primary:hover::before { left: 100%; }
.q-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(168,85,247,0.6), 0 8px 24px rgba(0,0,0,0.4);
}

.q-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: #c084fc;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  border: 1.5px solid rgba(168,85,247,0.5);
  transition: all 0.2s;
}

.q-btn-outline:hover {
  background: rgba(168,85,247,0.08);
  border-color: #c084fc;
  transform: translateY(-2px);
}

/* Stats row */
.q-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(168,85,247,0.07);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 16px;
  padding: 16px 24px;
  width: fit-content;
}

.q-hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.q-hstat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(90deg, #c084fc, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.q-hstat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

.q-hstat-div {
  width: 1px;
  height: 36px;
  background: rgba(168,85,247,0.25);
}

/* RIGHT — Person Card */
.q-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.q-hero-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(168,85,247,0.4);
  box-shadow: 0 0 60px rgba(168,85,247,0.22), 0 20px 60px rgba(0,0,0,0.4);
  animation: q-orb-float 6s ease-in-out infinite;
  padding-bottom: 0;
}

.q-hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #f59e0b, #a855f7);
  background-size: 200%;
  animation: q-shine 3s linear infinite;
  z-index: 2;
}

@keyframes q-shine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

.q-hero-card-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 30%, rgba(79,209,197,0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.q-hero-img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 1;
}

.q-hero-card-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #a855f7, #f59e0b);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(168,85,247,0.5);
  letter-spacing: 0.5px;
}

/* ── RESPONSIVE HERO ── */
@media (max-width: 900px) {
  .q-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 12px 40px;
    text-align: center;
  }
  .q-hero-left { align-items: center; order: 1; }
  .q-hero-badge { margin: 0 auto; }
  .q-hero-stats { margin: 0 auto; }
  .q-hero-btns { justify-content: center; }
  .q-hero-right { order: 2; }
  .q-hero-img { max-height: 380px; }
  .q-hero-card { max-width: 300px; }
}

@media (max-width: 480px) {
  .q-hero-inner { padding: 20px 10px 28px; gap: 20px; }
  .q-hero-img { max-height: 280px; }
  .q-hero-card { max-width: 240px; }
  .q-hero-title { letter-spacing: -1px; }
  .q-hero-stats { padding: 12px 16px; }
  .q-hstat { padding: 0 12px; }
  .q-hstat-val { font-size: 18px; }
  .q-btn-primary, .q-btn-outline { padding: 12px 24px; font-size: 14px; }
}

/* ── CONTAINER ── */
.q-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 120px;
}

@media (max-width: 640px) {
  .q-container { padding: 0 16px; }
}

/* ── SHARED SECTION STYLES ── */
.q-section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c084fc;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.q-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 16px;
}

.q-section-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.75;
  text-align: center;
}

/* ── 2. BRAND STATEMENT ── */
.q-brand {
  padding: 80px 0;
  background: linear-gradient(180deg, #0d0a1e 0%, #120d2a 100%);
  position: relative;
  overflow: hidden;
}

.q-brand::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.4), transparent);
}

.q-brand::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.2), transparent);
}

.q-brand-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.q-brand-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #fff;
}

.q-brand-icon {
  font-size: 28px;
  color: #4FD1C5;
  opacity: 0.7;
  animation: q-pulse 3s ease-in-out infinite;
}

.q-brand-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

.q-brand-text strong {
  background: linear-gradient(90deg, #c084fc, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.q-brand-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #a855f7, #f59e0b);
  border-radius: 2px;
}

/* ── 3. GLOBAL IMPACT ── */
.q-impact {
  padding: 60px 0 50px;
  background: linear-gradient(180deg, #120d2a 0%, #1a1035 100%);
  text-align: center;
}

.q-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}

.q-impact-card {
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 20px;
  padding: 36px 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.q-impact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #f59e0b);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.q-impact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168,85,247,0.45);
  box-shadow: 0 20px 50px rgba(168,85,247,0.15);
}

.q-impact-card:hover::before { transform: scaleX(1); }

.q-impact-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.q-impact-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(90deg, #c084fc, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.q-impact-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.q-impact-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* Reveal animation */
.q-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.q-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .q-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .q-brand { padding: 50px 0; }
  .q-impact { padding: 50px 0; }
}

@media (max-width: 640px) {
  .q-impact-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .q-impact-card { padding: 24px 16px; text-align: center; display: block; }
  .q-impact-icon { font-size: 28px; margin-bottom: 10px; }
  .q-impact-num { font-size: 26px; }
  .q-impact-label { font-size: 11px; margin-bottom: 8px; }
  .q-impact-card p { font-size: 12px; line-height: 1.5; }
  .q-section-title { font-size: clamp(22px, 6vw, 34px); }
  .q-section-sub { font-size: 13px; margin-bottom: 20px; }
}

/* ── 4. OPPORTUNITY SECTION ── */
.q-opportunity {
  padding: 50px 0 50px;
  background: linear-gradient(180deg, #1a1035 0%, #120d2a 100%);
}

.q-opp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.q-opp-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.q-opp-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.q-opp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.q-opp-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.q-check {
  width: 22px;
  height: 22px;
  background: linear-gradient(90deg, #a855f7, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.q-opp-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.q-opp-card {
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 24px;
  padding: 36px 32px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.q-opp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #f59e0b);
}

.q-opp-card-top {
  margin-bottom: 28px;
}

.q-opp-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c084fc;
}

.q-opp-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.q-opp-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.q-opp-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: rgba(168,85,247,0.35);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.q-opp-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.q-opp-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── 5. EVENTS SECTION ── */
.q-events {
  padding: 50px 0 50px;
  background: linear-gradient(180deg, #120d2a 0%, #1a1035 100%);
  text-align: center;
}

.q-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.q-event-card {
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 20px;
  padding: 40px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.q-event-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #f59e0b);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.q-event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168,85,247,0.45);
  box-shadow: 0 20px 50px rgba(168,85,247,0.15);
}

.q-event-card:hover::after { transform: scaleX(1); }

.q-event-icon {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1;
}

.q-event-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.q-event-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.q-events-cta { text-align: center; }

.q-about-heading-wrap {
  text-align: center;
  margin-bottom: 40px;
}

/* ── 6. ABOUT SECTION ── */
.q-about {
  padding: 50px 0 60px;
  background: linear-gradient(180deg, #0d0a1e 0%, #1a0a2e 100%);
}

.q-about-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.q-about-lead {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 600;
  color: #c084fc;
  line-height: 1.5;
  border-left: 3px solid #c084fc;
  padding-left: 14px;
  margin: 0;
}

.q-about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.q-about-img-glow {
  position: absolute;
  inset: -20px;
  border-radius: 34px;
  background: radial-gradient(circle, rgba(168,85,247,0.18), transparent 65%);
  pointer-events: none;
  animation: q-orb-float 5s ease-in-out infinite;
}

.q-about-img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  border: 1.5px solid rgba(168,85,247,0.35);
  box-shadow: 0 0 50px rgba(168,85,247,0.15), 0 20px 60px rgba(0,0,0,0.4);
  display: block;
  position: relative;
  z-index: 1;
}

.q-about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: linear-gradient(90deg, #a855f7, #f59e0b);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(168,85,247,0.5);
}

.q-about-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.q-about-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin: 0;
}

.q-about-text strong { color: #c084fc; font-weight: 700; }

.q-about-stats {
  display: flex;
  gap: 0;
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.18);
  border-radius: 14px;
  padding: 14px 0;
  width: 100%;
  margin: 4px 0;
}

.q-astat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid rgba(168,85,247,0.15);
  flex: 1;
}

.q-astat:last-child { border-right: none; }

.q-astat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(90deg, #c084fc, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.q-astat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── 7. TESTIMONIALS ── */
.q-testimonials {
  padding: 60px 0 50px;
  background: linear-gradient(180deg, #1a0a2e 0%, #0d0a1e 100%);
  text-align: center;
}

.q-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.q-testi-card {
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: left;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.q-testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 80px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  color: rgba(168,85,247,0.1);
  line-height: 1;
}

.q-testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168,85,247,0.4);
}

.q-testi-stars {
  color: #c084fc;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.q-testi-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.q-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.q-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(90deg, #a855f7, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.q-testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.q-testi-author span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ── 8. FINAL CTA ── */
.q-final-cta {
  padding: 60px 0 100px;
  background: linear-gradient(135deg, #0d0a1e 0%, #1a0a2e 50%, #0d0a1e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.q-final-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(168,85,247,0.12), transparent 65%);
  pointer-events: none;
}

.q-final-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.q-final-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #c084fc;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.q-final-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
}

.q-final-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.75;
}

.q-final-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.q-btn-large {
  padding: 18px 48px;
  font-size: 17px;
  border-radius: 12px;
}

.q-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: #25d366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.q-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* ── FOOTER ── */
.q-footer {
  padding: 32px 0;
  background: #080614;
  border-top: 1px solid rgba(168,85,247,0.25);
}

.q-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.q-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.q-footer-brand img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(79,209,197,0.3));
}

.q-footer-brand span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(90deg, #4FD1C5, #0EA5A4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.q-footer-links {
  display: flex;
  gap: 24px;
}

.q-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.q-footer-links a:hover { color: #4FD1C5; }

.q-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ── RESPONSIVE ALL SECTIONS ── */

/* Tablet (768px - 900px) */
@media (max-width: 900px) {
  .q-opp-inner { grid-template-columns: 1fr; gap: 32px; }
  .q-events-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .q-about-inner { grid-template-columns: 1fr; gap: 32px; }
  .q-about-img { height: 340px; }
  .q-about-img-wrap { max-width: 380px; margin: 0 auto; }
  .q-testi-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .q-footer-inner { flex-direction: column; text-align: center; }
  .q-footer-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .q-opportunity { padding: 50px 0; }
  .q-events { padding: 50px 0; }
  .q-about { padding: 50px 0; }
  .q-testimonials { padding: 50px 0; }
  .q-final-cta { padding: 50px 0 70px; }
  .q-contact-section { padding: 50px 0 60px; }
  .q-about-quote-section { padding: 40px 0; }
  .q-page-hero { padding: 110px 0 50px; }
}

/* Mobile (max 640px) */
@media (max-width: 640px) {
  .q-events-grid { grid-template-columns: 1fr; gap: 12px; }
  .q-testi-grid { grid-template-columns: 1fr; gap: 12px; }
  .q-about-img { height: 280px; }
  .q-opp-card { padding: 20px 16px; }
  .q-opp-inner { gap: 24px; }
  .q-final-title { font-size: clamp(24px, 7vw, 38px); }
  .q-btn-large { padding: 14px 28px; font-size: 15px; }
  .q-btn-whatsapp { padding: 14px 20px; font-size: 13px; }
  .q-about-stats { width: 100%; }
  .q-astat { padding: 0 10px; }
  .q-astat-val { font-size: 18px; }
  .q-event-card { padding: 24px 18px; }
  .q-testi-card { padding: 24px 18px; }
  .q-about-highlight { padding: 12px 14px; }
  .q-opp-step-num { font-size: 22px; min-width: 32px; }
  .q-section-sub { margin-bottom: 24px; }
  .q-events-grid { margin-bottom: 28px; }
  .q-opportunity { padding: 40px 0; }
  .q-events { padding: 40px 0; }
  .q-about { padding: 40px 0; }
  .q-testimonials { padding: 40px 0; }
  .q-final-cta { padding: 40px 0 56px; }
  .q-contact-section { padding: 40px 0 50px; }
  .q-about-quote-section { padding: 32px 0; }
  .q-page-hero { padding: 100px 0 40px; }
  .q-about-big-quote-mark { font-size: 60px; }
  .q-about-big-quote p { font-size: 16px; }
}

/* ── HERO EXTRA ELEMENTS ── */
.q-hero-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.q-hero-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(79,209,197,0.08);
  border: 1px solid rgba(79,209,197,0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.q-feat-icon { font-size: 14px; }

.q-btn-icon { font-size: 16px; }

.q-hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.q-trust-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: q-pulse 2s infinite;
  flex-shrink: 0;
}

/* ── PAGE HERO (inner pages) ── */
.q-page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, #0d0a1e 0%, #1a0a2e 50%, #0d0a1e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.q-xab-hero {
  padding: 130px 0 80px;
}

.q-xab-hero .q-hero-orb { pointer-events: none; }

@media (max-width: 768px) {
  .q-xab-hero { padding: 100px 0 50px; }
}

.q-page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.4), transparent);
}

.q-page-hero .q-section-sub { margin-bottom: 0; }

/* ── CONTACT PAGE ── */
.q-contact-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #0d0a1e 0%, #1a0a2e 100%);
}

.q-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.q-contact-info h3,
.q-contact-form-wrap h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.q-contact-info > p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 32px;
}

.q-contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.q-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.18);
  border-radius: 16px;
  padding: 20px;
}

.q-contact-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}

.q-contact-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.q-contact-item span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.q-btn-sm {
  padding: 8px 18px !important;
  font-size: 13px !important;
  border-radius: 8px !important;
}

.q-contact-form-wrap {
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.q-contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #f59e0b);
}

.q-contact-form { display: flex; flex-direction: column; gap: 20px; }

.q-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.q-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.q-form-group input,
.q-form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.q-form-group input::placeholder,
.q-form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.q-form-group input:focus,
.q-form-group textarea:focus { border-color: rgba(168,85,247,0.5); }

/* ── XAB FEATURE SECTION ── */
.q-xab-feature {
  padding: 60px 0;
  background: linear-gradient(180deg, #1a0a2e 0%, #0d0a1e 100%);
}

.q-xab-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.q-xab-feature-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.q-xab-feature-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.q-video-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.q-video-label {
  font-size: 12px;
  font-weight: 700;
  color: #c084fc;
  letter-spacing: 0.5px;
}

.q-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(168,85,247,0.35);
  box-shadow: 0 0 40px rgba(168,85,247,0.2);
}

.q-video-frame video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.q-video-title-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(2,26,26,0.95) 0%, transparent 100%);
  padding: 28px 16px 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  pointer-events: none;
}

.q-video-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 4px 0;
}

.q-video-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
}

.q-video-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.q-video-badge strong { color: #c084fc; }

/* ── WHY CHOOSE US ── */
.q-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.q-why-card {
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 20px;
  padding: 32px 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.q-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #f59e0b);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.q-why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168,85,247,0.45);
  box-shadow: 0 20px 50px rgba(168,85,247,0.15);
}

.q-why-card:hover::before { transform: scaleX(1); }

.q-why-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.q-why-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.q-why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .q-xab-feature-inner { grid-template-columns: 1fr; gap: 36px; }
  .q-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .q-xab-feature { padding: 40px 0; }
  .q-why-grid { grid-template-columns: 1fr; gap: 12px; }
  .q-why-card { padding: 24px 18px; }
  .q-video-frame { border-radius: 12px; }
}

/* ── QR REFERRAL SECTION ── */
.q-qr-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.q-qr-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.q-qr-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.q-qr-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 12px;
  padding: 14px 16px;
}

.q-qr-step-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}

.q-qr-step strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.q-qr-step span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.q-qr-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.q-qr-card {
  background: rgba(168,85,247,0.06);
  border: 1.5px solid rgba(168,85,247,0.35);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  min-width: 280px;
}

.q-qr-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #f59e0b);
}

.q-qr-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c084fc;
}

.q-qr-code {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(168,85,247,0.35);
  box-shadow: 0 0 30px rgba(168,85,247,0.25);
}

.q-qr-code img {
  display: block;
  width: 220px;
  height: 220px;
}

.q-qr-ref {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.q-qr-ref strong {
  color: #c084fc;
  font-weight: 700;
}

.q-qr-link {
  font-size: 11px;
  color: rgba(168,85,247,0.6);
  word-break: break-all;
  text-align: center;
  transition: color 0.2s;
}

.q-qr-link:hover { color: #c084fc; }

@media (max-width: 768px) {
  .q-qr-inner { grid-template-columns: 1fr; gap: 32px; }
  .q-qr-right { order: 2; }
  .q-qr-left { order: 1; }
  .q-qr-card { min-width: unset; width: 100%; max-width: 280px; margin: 0 auto; }
}

/* ── XAB STATS BAR ── */
.q-xab-stats-bar {
  background: rgba(168,85,247,0.06);
  border-top: 1px solid rgba(168,85,247,0.2);
  border-bottom: 1px solid rgba(168,85,247,0.2);
  padding: 20px 0;
}

.q-xab-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.q-xab-stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 28px;
  gap: 4px;
}

.q-xab-stats-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(90deg, #c084fc, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.q-xab-stats-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.q-xab-stats-div {
  width: 1px;
  height: 36px;
  background: rgba(168,85,247,0.25);
}

@media (max-width: 640px) {
  .q-xab-stats-row { gap: 0; flex-wrap: wrap; justify-content: center; }
  .q-xab-stats-item { padding: 8px 12px; min-width: 80px; }
  .q-xab-stats-val { font-size: 15px; }
  .q-xab-stats-lbl { font-size: 9px; }
  .q-xab-stats-div { display: none; }
}

/* ── XAB STATS ── */
.q-xab-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.q-xab-stat {
  background: rgba(168,85,247,0.04);
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.q-xab-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(90deg, #c084fc, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.q-xab-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ── RESPONSIVE CONTACT & MISC ── */
@media (max-width: 900px) {
  .q-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .q-hero-features { justify-content: center; }
  .q-hero-trust { justify-content: center; }
}

@media (max-width: 640px) {
  .q-contact-section { padding: 40px 0 50px; }
  .q-contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .q-hero-features { gap: 8px; }
  .q-hero-feature { font-size: 11px; padding: 5px 10px; }
  .q-contact-form-wrap { padding: 20px 14px; }
  .q-xab-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .q-form-row { grid-template-columns: 1fr; }
  .q-contact-items { gap: 14px; }
  .q-contact-item { padding: 14px; }
  .q-contact-form { gap: 14px; }
  .q-form-group input,
  .q-form-group textarea,
  .q-form-group select { font-size: 16px; padding: 11px 14px; }
}

.q-tw-cursor {
  display: inline-block;
  color: #f59e0b;
  animation: blink 0.8s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── HERO QUOTE ── */
.q-hero-quote {
  background: rgba(168,85,247,0.07);
  border-left: 3px solid #a855f7;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  position: relative;
}

.q-hero-quote-mark {
  font-size: 48px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  color: rgba(168,85,247,0.3);
  line-height: 1;
  position: absolute;
  top: 8px;
  left: 12px;
}

.q-hero-quote p {
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  padding-left: 28px;
  margin-bottom: 8px;
}

.q-hero-quote-author {
  font-size: 12px;
  font-weight: 700;
  color: #f59e0b;
  padding-left: 28px;
  display: block;
}

/* ── OPPORTUNITY EXTRA ── */
.q-opp-top {
  text-align: center;
  margin-bottom: 0;
}

.q-opp-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.q-opp-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.q-opp-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.q-opp-list li strong {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.q-opp-list li span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.q-opp-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ── EVENTS EXTRA ── */
.q-event-tag-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c084fc;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.q-event-stat {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #f59e0b;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 8px;
  padding: 6px 12px;
  display: inline-block;
}

.q-events-cta-text {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  text-align: center;
}



/* ── ABOUT EXTRA ── */
.q-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c084fc;
  margin-bottom: 4px;
}

.q-about-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0;
}

.q-about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(168,85,247,0.04);
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.q-about-highlight:hover {
  border-color: rgba(168,85,247,0.35);
  transform: translateX(4px);
}

.q-about-hl-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.q-about-highlight strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.q-about-highlight span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ── TESTIMONIALS EXTRA ── */
.q-testi-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.q-testi-top .q-testi-stars {
  margin-left: auto;
  margin-bottom: 0;
  font-size: 13px;
  letter-spacing: 1px;
}

.q-testi-top strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.q-testi-top span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.q-testi-result {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #c084fc;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 8px;
  padding: 7px 12px;
  display: inline-block;
}

.q-testi-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
   
}

.q-testi-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.q-testi-trust-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(90deg, #4FD1C5, #0EA5A4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.q-testi-trust-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 160px;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .q-testi-bottom { flex-direction: column; text-align: center; align-items: center; padding: 16px; }
  .q-testi-trust { flex-direction: column; gap: 8px; }
}

/* ── ABOUT PAGE QUOTE ── */
.q-about-quote-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #0d0a1e 0%, #1a0a2e 50%, #0d0a1e 100%);
  position: relative;
  overflow: hidden;
}

.q-about-quote-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.4), transparent);
}

.q-about-quote-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.2), transparent);
}

.q-about-big-quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.q-about-big-quote-mark {
  font-size: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  color: rgba(168,85,247,0.2);
  line-height: 0.8;
  margin-bottom: 16px;
}

.q-about-big-quote p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.q-about-big-quote span {
  font-size: 14px;
  font-weight: 700;
  color: #c084fc;
  letter-spacing: 1px;
}

/* ── CONTACT FORM EXTRA ── */
.q-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 900px) {
  .q-form-row { grid-template-columns: 1fr !important; gap: 14px !important; }
}

@media (max-width: 640px) {
  .q-form-row { grid-template-columns: 1fr !important; gap: 12px !important; }
}

.q-form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  cursor: pointer;
}

.q-form-group select:focus {
  border-color: rgba(168,85,247,0.5);
}

.q-form-group select option {
  background: #0d0a1e;
  color: #fff;
}



/* ── ABOUT-US PAGE RESPONSIVE ── */
@media (max-width: 900px) {
  .q-about-inner[style*="grid-template-columns:1fr 420px"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .q-about-inner[style*="grid-template-columns:1fr 420px"] .q-about-img-wrap {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .q-why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .q-about-inner[style*="grid-template-columns:1fr 420px"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .q-about-stats {
    flex-wrap: wrap !important;
  }
  .q-astat {
    min-width: 45%;
    border-right: none !important;
    border-bottom: 1px solid rgba(168,85,247,0.15);
    padding: 12px 8px !important;
  }
  .q-why-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .q-about-highlight {
    padding: 12px 12px !important;
  }
  .q-page-hero {
    padding: 100px 0 40px !important;
    text-align: center;
  }
  .q-final-btns {
    flex-direction: column;
    align-items: center;
  }
  .q-btn-outline[style*="padding:18px 36px"] {
    padding: 14px 28px !important;
    font-size: 14px !important;
    width: 100%;
    text-align: center;
  }
}

/* ── FAITH TEAM SECTION ── */
.q-team-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0d0a1e 0%, #1a1035 100%);
  text-align: center;
}

.q-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.q-team-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(168,85,247,0.25);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  background: rgba(168,85,247,0.05);
}

.q-team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168,85,247,0.6);
  box-shadow: 0 20px 50px rgba(168,85,247,0.2);
}

.q-team-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.q-team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s;
}

.q-team-card:hover .q-team-img-wrap img {
  transform: scale(1.05);
}

.q-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,10,30,0.7) 0%, transparent 60%);
  pointer-events: none;
}

.q-team-info {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
}

.q-team-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #a855f7, #f59e0b);
  border-radius: 20px;
  padding: 5px 14px;
  box-shadow: 0 4px 14px rgba(168,85,247,0.4);
}

@media (max-width: 900px) {
  .q-team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .q-team-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .q-team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .q-team-section { padding: 40px 0; }
}

/* Team card name + join link */
.q-team-info {
  padding: 16px 18px 20px;
  text-align: center;
  background: rgba(168,85,247,0.06);
  border-top: 1px solid rgba(168,85,247,0.15);
}
.q-team-info strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.q-team-join {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #c084fc;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.q-team-join:hover { color: #f59e0b; }
