/* ===== Homepage — Premium Styles ===== */

/* ========== HERO ========== */
.hero {
  min-height: 92vh;
  padding: 80px 0 80px;
  background: #0d0b2b;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}

/* Animated mesh gradient background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(155,111,255,0.38) 0%, transparent 65%);
  top: -180px; right: -60px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,107,74,0.26) 0%, transparent 65%);
  bottom: -80px; left: 3%;
  animation: orbFloat2 15s ease-in-out infinite;
}
.hero-orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,209,102,0.16) 0%, transparent 65%);
  top: 35%; right: 32%;
  animation: orbFloat3 10s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-40px, 30px) scale(1.1); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(30px, -40px) scale(1.08); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-20px, 20px) scale(0.95); }
}

/* ── Floating connection circles visual ── */
.hero-circles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hc-node {
  position: absolute; border-radius: 50%;
  animation: nodeFloat 8s ease-in-out infinite;
}
.hc-node-1 {
  width: 14px; height: 14px; background: #7A5AF8;
  top: 18%; right: 42%; box-shadow: 0 0 20px rgba(122,90,248,0.6);
  animation-duration: 7s; animation-delay: 0s;
}
.hc-node-2 {
  width: 10px; height: 10px; background: #FF6B4A;
  top: 30%; right: 28%; box-shadow: 0 0 16px rgba(255,107,74,0.5);
  animation-duration: 9s; animation-delay: 1.5s;
}
.hc-node-3 {
  width: 12px; height: 12px; background: #FFD166;
  top: 55%; right: 48%; box-shadow: 0 0 18px rgba(255,209,102,0.5);
  animation-duration: 11s; animation-delay: 3s;
}
.hc-node-4 {
  width: 8px; height: 8px; background: #6BAA75;
  top: 68%; right: 34%; box-shadow: 0 0 14px rgba(107,170,117,0.5);
  animation-duration: 6s; animation-delay: 0.8s;
}
.hc-node-5 {
  width: 16px; height: 16px; background: #5547c8;
  top: 14%; right: 58%; box-shadow: 0 0 22px rgba(85,71,200,0.5);
  animation-duration: 13s; animation-delay: 2s;
}
.hc-node-6 {
  width: 9px; height: 9px; background: #FF6B4A;
  top: 42%; right: 20%; box-shadow: 0 0 14px rgba(255,107,74,0.4);
  animation-duration: 8s; animation-delay: 4s;
}
@keyframes nodeFloat {
  0%,100% { transform: translate(0,0); opacity: 0.7; }
  25%     { transform: translate(-8px, -12px); opacity: 1; }
  75%     { transform: translate(10px, 8px); opacity: 0.85; }
}

/* SVG connecting lines */
.hero-lines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  width: 100%; height: 100%;
}
.hero-lines line {
  stroke: rgba(122,90,248,0.15);
  stroke-width: 1;
  animation: lineGlow 4s ease-in-out infinite alternate;
}
.hero-lines line:nth-child(2) { stroke: rgba(255,107,74,0.1); animation-delay: 1s; }
.hero-lines line:nth-child(3) { stroke: rgba(255,209,102,0.1); animation-delay: 2s; }
@keyframes lineGlow { 0% { opacity: 0.3; } 100% { opacity: 0.9; } }

/* Noise texture overlay */
.hero-noise {
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.35;
}

/* Dot grid overlay */
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero .container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(155,111,255,0.12);
  border: 1px solid rgba(155,111,255,0.3);
  color: #C4AAFF;
  padding: 8px 16px; border-radius: 30px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.3px; margin-bottom: 28px;
  box-shadow: 0 0 20px rgba(155,111,255,0.15);
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #7bcf88;
  box-shadow: 0 0 0 0 rgba(123,207,136,0.4);
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(123,207,136,0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(123,207,136,0); }
  100% { box-shadow: 0 0 0 0 rgba(123,207,136,0); }
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -2px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #C4AAFF 0%, #9B6FFF 40%, #FF8060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(155,111,255,0.35));
}
.hero-sub {
  font-size: 1.12rem;
  font-family: 'Inter', sans-serif;
  color: rgba(210,208,255,0.72);
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.75;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

/* Stats bar */
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 20px 28px;
  backdrop-filter: blur(8px);
}
.stat {
  display: flex; flex-direction: column; flex: 1;
  text-align: center;
}
.stat strong {
  font-size: 1.6rem; font-weight: 800; color: #ffffff;
  line-height: 1; font-family: 'Poppins', sans-serif;
}
.stat span {
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
  margin-top: 4px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.07); margin: 0 4px; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-phone-mockup {
  position: relative;
  width: 340px; margin: 0 auto;
}

.hero-card-stack {
  position: relative; width: 100%; height: 420px;
}
.floating-card {
  position: absolute;
  background: rgba(19,17,42,0.82) !important;
  backdrop-filter: blur(22px) saturate(180%) !important;
  border: 1px solid rgba(155,111,255,0.18) !important;
  border-radius: 20px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 1px 1px rgba(155,111,255,0.08) inset !important;
  min-width: 220px;
  transition: transform var(--transition);
}
.floating-card:hover { transform: scale(1.04) !important; }
.card-1 {
  top: 30px; left: 0;
  animation: floatA 7s ease-in-out infinite;
}
.card-2 {
  top: 160px; right: -20px;
  animation: floatB 8s ease-in-out infinite 1s;
}
.card-3 {
  bottom: 40px; left: 20px;
  animation: floatC 6s ease-in-out infinite 2s;
}
@keyframes floatA { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-12px) rotate(0deg)} }
@keyframes floatB { 0%,100%{transform:translateY(0) rotate(1.5deg)} 50%{transform:translateY(-10px) rotate(0.5deg)} }
@keyframes floatC { 0%,100%{transform:translateY(0) rotate(-0.5deg)} 50%{transform:translateY(-8px) rotate(0.5deg)} }

.fc-emoji { font-size: 2rem; flex-shrink: 0; }
.fc-title { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.fc-sub   { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.fc-pill  {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  padding: 2px 8px; border-radius: 10px;
  background: rgba(122,90,248,0.1); color: var(--purple);
  margin-top: 4px;
}

/* Central glow orb */
.hero-center-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,90,248,0.18) 0%, transparent 65%);
  filter: blur(30px); pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:0.8;transform:translate(-50%,-50%) scale(1)} 50%{opacity:1;transform:translate(-50%,-50%) scale(1.15)} }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  color: rgba(255,255,255,0.3); font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator .si-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ========== MARQUEE SECTION ========== */
.marquee-section {
  background: #13103a;
  padding: 20px 0;
  border-top: 1px solid rgba(122,90,248,0.15);
  border-bottom: 1px solid rgba(122,90,248,0.1);
  overflow: hidden;
}

/* ========== HOW IT WORKS ========== */
.how-section {
  background: linear-gradient(175deg, #0d0b20 0%, #11102a 50%, #0e0c1e 100%);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.how-section::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,90,248,0.05) 0%, transparent 65%);
  right: -200px; top: -100px; pointer-events: none;
}
.how-section::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,74,0.04) 0%, transparent 65%);
  left: -100px; bottom: -100px; pointer-events: none;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  gap: 0;
  margin-top: 8px;
}
.step-card {
  background: linear-gradient(150deg, #e8f4f8 0%, #fef8f5 100%);
  border: 1px solid rgba(122,90,248,0.12);
  border-radius: 20px; padding: 36px 30px; text-align: center;
  position: relative;
  transition: all var(--transition);
}
.step-card:hover {
  background: linear-gradient(150deg, #e8e3ff 0%, #fff0eb 100%);
  border-color: rgba(122,90,248,0.25);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem; font-weight: 800; line-height: 1;
  color: rgba(122,90,248,0.07); margin-bottom: -8px;
  letter-spacing: -2px;
}
.step-icon-wrap {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(122,90,248,0.1) 0%, rgba(255,107,74,0.07) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.8rem;
  border: 1px solid rgba(122,90,248,0.12);
}
.step-card h3 { margin-bottom: 10px; font-size: 1.1rem; font-family: 'Poppins', sans-serif; font-weight: 700; color: #1a1a2e; }
.step-card p  { font-size: 0.88rem; line-height: 1.7; font-family: 'Inter', sans-serif; color: #555; }
.step-connector {
  display: flex; justify-content: center; align-items: center;
}
.step-connector svg { color: rgba(122,90,248,0.3); }

/* ========== BENEFITS ========== */
.benefits-section {
  background: linear-gradient(160deg, #0c0a1c 0%, #100e22 45%, #0f0d1e 100%);
  position: relative; overflow: hidden;
}
.benefits-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(122,90,248,0.04) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.benefit-card {
  background: linear-gradient(145deg, #fdfbff 0%, #fff9f6 100%);
  border: 1px solid rgba(122,90,248,0.1);
  border-radius: 20px; padding: 30px 26px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.benefit-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--coral));
  transform: scaleX(0); transition: transform var(--transition);
  transform-origin: left;
}
.benefit-card:hover { border-color: rgba(122,90,248,0.2); box-shadow: var(--shadow); transform: translateY(-4px); }
.benefit-card:hover::after { transform: scaleX(1); }
.benefit-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 16px;
}
.benefit-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 8px; color: var(--text);
}
.benefit-card p { font-size: 0.86rem; line-height: 1.7; }

/* ========== INTEREST BUBBLES SECTION ========== */
.interests-section {
  background: linear-gradient(155deg, #0d0b20 0%, #110e22 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.interests-section::before {
  content: ''; position: absolute; inset: 0;
  background: none;
  z-index: 0;
}
.interests-section .container { position: relative; z-index: 1; }
.interest-bubbles-wrap {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-top: 40px;
}
.interest-bubble-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 40px;
  font-size: 0.9rem; font-weight: 600;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--text-muted); cursor: default;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: var(--shadow-xs);
  position: relative;
}
.interest-bubble-hero:hover {
  transform: translateY(-5px) scale(1.07);
  box-shadow: 0 12px 28px rgba(122,90,248,0.18);
}
.interest-bubble-hero.purple { border-color: rgba(122,90,248,0.3); color: var(--purple); background: rgba(122,90,248,0.04); }
.interest-bubble-hero.coral  { border-color: rgba(255,107,74,0.3); color: var(--coral); background: rgba(255,107,74,0.04); }
.interest-bubble-hero.green  { border-color: rgba(107,170,117,0.3); color: var(--green); background: rgba(107,170,117,0.04); }
.interest-bubble-hero.yellow { border-color: rgba(255,209,102,0.4); color: #8a6900; background: rgba(255,209,102,0.08); }
.interest-bubble-hero.indigo { border-color: rgba(45,42,140,0.2); color: var(--blue); background: rgba(45,42,140,0.04); }
.ib-tooltip {
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--text); color: var(--white);
  font-size: 0.72rem; font-weight: 600; white-space: nowrap;
  padding: 5px 12px; border-radius: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.interest-bubble-hero:hover .ib-tooltip { opacity: 1; }

/* ========== COMMUNITIES ========== */
.communities-section {
  background: linear-gradient(155deg, #0e0c1e 0%, #120f25 55%, #0d0b1f 100%);
}
.community-card {
  cursor: pointer;
  border-radius: 20px; overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.cc-cover {
  height: 140px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; position: relative; overflow: hidden;
}
.cc-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.05) 100%);
}
.cc-emoji { font-size: 3.5rem; position: relative; z-index: 1; transition: transform var(--transition); }
.community-card:hover .cc-emoji { transform: scale(1.15) rotate(-5deg); }
.cc-freq-badge {
  background: rgba(255,255,255,0.75); backdrop-filter: blur(8px);
  color: var(--text-muted); font-size: 0.7rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
  position: relative; z-index: 1;
  border: 1px solid rgba(255,255,255,0.5);
}
.cc-body { padding: 22px; }
.cc-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cc-members { font-size: 0.76rem; color: rgba(200,198,255,0.55); font-weight: 500; }
.cc-body h3 { margin-bottom: 8px; font-size: 1.08rem; color: #F0EFFF; font-family: 'Poppins', sans-serif; font-weight: 700; }
.cc-body p  { font-size: 0.86rem; margin-bottom: 18px; line-height: 1.65; color: rgba(200,198,255,0.55); font-family: 'Inter', sans-serif; }
.cc-footer {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(200,198,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 14px;
  font-family: 'Inter', sans-serif;
}
.cc-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.85rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.community-card:hover .cc-arrow { transform: translateX(3px); box-shadow: 0 4px 12px rgba(122,90,248,0.4); }

/* ========== EVENT TEASER ========== */
.event-teaser-section {
  background: linear-gradient(160deg, #0d0b2b 0%, #15112e 100%);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.event-teaser-section::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,90,248,0.12) 0%, transparent 65%);
  top: -100px; right: -100px; pointer-events: none;
}
.event-teaser-inner {
  display: grid; grid-template-columns: 1fr 400px; gap: 72px; align-items: center;
  position: relative; z-index: 1;
}
.event-teaser-text .eyebrow { color: rgba(255,107,74,0.9); }
.event-teaser-text .eyebrow::before { background: var(--coral); }
.event-teaser-text h2 {
  color: var(--white); margin-bottom: 18px; font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.event-teaser-text p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 24px; line-height: 1.8; }
.event-teaser-meta {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 32px;
}
.et-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 32px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative; overflow: hidden;
}
.et-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,90,248,0.4), transparent);
}
.et-badge {
  display: inline-block;
  background: rgba(255,107,74,0.18); color: #f0a090;
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px; border-radius: 20px;
  border: 1px solid rgba(255,107,74,0.2); margin-bottom: 20px;
}
.et-emoji { font-size: 2.8rem; margin-bottom: 10px; }
.et-community { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.et-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 24px; line-height: 1.4; }
.et-details { margin-bottom: 28px; }
.et-row {
  display: flex; justify-content: space-between;
  font-size: 0.83rem; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.et-row:last-child { border-bottom: none; }
.et-row span { color: rgba(255,255,255,0.4); }
.et-row strong { color: rgba(255,255,255,0.85); }

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: linear-gradient(180deg, #0c0a1c 0%, #100e24 55%, #0e0c20 100%);
  position: relative;
}
.testimonials-section::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,90,248,0.05) 0%, transparent 65%);
  left: -150px; top: 50%; transform: translateY(-50%); pointer-events: none;
}
.testimonial-card {
  background: linear-gradient(145deg, #ffffff 0%, #f5f2ff 100%);
  border: 1px solid rgba(122,90,248,0.1);
  border-radius: 20px; padding: 30px;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: rgba(122,90,248,0.15); }
.testimonial-featured {
  background: linear-gradient(160deg, var(--purple) 0%, var(--blue) 100%);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(122,90,248,0.3);
}
.testimonial-featured:hover { box-shadow: 0 28px 80px rgba(122,90,248,0.4); }
.stars { font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 16px; color: var(--gold); }
.quote-icon { font-size: 2rem; line-height: 1; margin-bottom: 12px; opacity: 0.3; }
.testimonial-featured .quote-icon { color: var(--white); opacity: 0.2; }
.testimonial-text {
  font-size: 0.92rem; line-height: 1.75; margin-bottom: 24px;
  font-style: italic; color: var(--text);
}
.testimonial-featured .testimonial-text { color: rgba(255,255,255,0.9); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.author-role { font-size: 0.75rem; color: var(--text-muted); margin-top: 1px; }
.testimonial-featured .author-name { color: var(--white); }
.testimonial-featured .author-role { color: rgba(255,255,255,0.55); }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(160deg, #0d0b2b 0%, #14112e 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.cta-banner-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.cta-banner-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(122,90,248,0.22) 0%, transparent 65%);
  top: -100px; left: -100px;
}
.cta-banner-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,74,0.16) 0%, transparent 65%);
  bottom: -100px; right: -100px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { color: #ffffff; margin-bottom: 14px; font-family: 'Poppins', sans-serif; font-weight: 800; }
.cta-inner p  { color: rgba(255,255,255,0.6); font-size: 1.08rem; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; font-family: 'Inter', sans-serif; }
.cta-buttons  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 80px 0 100px; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .step-connector { display: none; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .event-teaser-inner { grid-template-columns: 1fr; }
  .et-card { max-width: 400px; }
  .scroll-indicator { display: none; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .stat { min-width: 80px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .event-teaser-section { padding: 64px 0; }
  .et-card { display: none; }
  .interest-bubbles-wrap { gap: 8px; }
  .interest-bubble-hero { padding: 10px 16px; font-size: 0.82rem; }
}
