/* ============================================================
   FUNDING DREAMERS – FULL STYLESHEET
   Desktop + Mobile pixel-perfect
   ============================================================ */

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

:root {
  --purple: #5B2FD4;
  --purple-dark: #4A1FC5;
  --navy: #141233;
  --yellow: #FDB913;
  --yellow-dark: #E5A810;
  --white: #FFFFFF;
  --gray: #555566;
  --font: 'Barlow', sans-serif;
  --cond: 'Barlow Condensed', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-purple {
  background: var(--purple);
  color: var(--white);
  padding: 11px 20px;
}

.btn-purple:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  padding: 11px 20px;
}

.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.btn-outline-yellow {
  background: var(--yellow);
  color: var(--navy);
  border: 2px solid var(--yellow);
  padding: 11px 20px;
}

.btn-outline-yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 5px;
}

/* ============================================================
   TOP TICKER BAR
   ============================================================ */
.ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  /* above navbar (z-index 1000) */
  height: 36px;
  background: var(--purple);
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  animation: tickerScroll 22s linear infinite;
}

.ticker-item {
  font-family: var(--font);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  padding: 0 28px;
  white-space: nowrap;
}

.ticker-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ============================================================
   NAVBAR – DESKTOP
   ============================================================ */
.navbar {
  position: fixed;
  top: 36px;
  /* sit below the 36px ticker bar */
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 90px;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 88px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  letter-spacing: 0.01em;
  transition: color 0.18s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: width 0.22s;
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   HERO – DESKTOP
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  height: calc(100vw * 0.40);
  max-height: 680px;
  margin-top: 108px;
  /* 36px ticker + 72px navbar */
  overflow: hidden;
  background: #f0f0f0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('Website Hero section.png');
  background-size: cover;
  background-position: 30% top;
  background-repeat: no-repeat;
}

/* White fade gradient removed */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 32px 52px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}

.hero-left {
  max-width: 460px;
  flex-shrink: 0;
}

.hero-tagline {
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeUp 0.5s ease 0.1s both;
}

.hero-headline {
  font-family: var(--cond);
  font-weight: 900;
  font-style: italic;
  font-size: 72px;
  line-height: 0.95;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp 0.5s ease 0.2s both;
}

.hero-headline-purple {
  color: var(--purple);
  display: block;
}

/* ---- Typewriter animation ---- */
.hero-headline-typewriter {
  display: block;
  min-height: 1.1em;
  /* prevent layout jump while typing */
}

#typewriter-text {
  font-family: var(--cond);
  font-weight: 900;
  font-style: italic;
  font-size: inherit;
  line-height: inherit;
  text-transform: uppercase;
  transition: color 0.15s ease;
}

.typewriter-cursor {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  margin-left: 2px;
  animation: cursorBlink 0.75s step-end infinite;
  transition: color 0.15s ease;
}

@keyframes cursorBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Yellow accent line – hidden on desktop, shown on mobile */
.hero-accent-line {
  display: none;
}

.hero-subtext {
  font-size: 14.5px;
  line-height: 1.55;
  color: #444;
  margin-bottom: 28px;
  max-width: 380px;
  animation: fadeUp 0.5s ease 0.3s both;
}

/* Hide mobile-only <br> tags on desktop */
.mob-br {
  display: none;
}

.hero-features {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s ease 0.4s both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.feature-text strong {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-text span {
  font-size: 10.5px;
  color: var(--gray);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s ease 0.5s both;
}

/* Mobile below section – hidden on desktop */
.mob-below {
  display: none;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 22px 0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.04);
  animation: fadeUp 0.5s ease 0.6s both;
}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}

.stat-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-family: var(--cond);
  font-weight: 900;
  font-size: 24px;
  color: var(--navy);
  line-height: 1.1;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #e0e0e8;
  flex-shrink: 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   GET FUNDING – GENERAL/DESKTOP
   ============================================================ */
.get-funding {
  padding: 100px 0;
  background-color: var(--white);
  color: var(--navy);
  overflow: hidden;
}

.get-funding-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.get-funding-content {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

.get-funding-left {
  max-width: 560px;
}

.section-tag-small {
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-headline-large {
  font-family: var(--cond);
  font-weight: 900;
  font-style: italic;
  font-size: 58px;
  line-height: 0.95;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.purple-italic {
  color: var(--purple);
  font-style: italic;
}

.get-funding-subtext {
  font-size: 15.5px;
  line-height: 1.6;
  color: #555566;
  margin-bottom: 36px;
}

/* Victory Banner */
.victory-banner {
  background: #F8F7FF;
  border: 1px solid rgba(91, 47, 212, 0.08);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.victory-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #EBE9FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.victory-icon-wrapper svg {
  stroke: var(--purple);
}

.victory-text h3 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.victory-text p {
  font-size: 13px;
  line-height: 1.5;
  color: #666677;
}

/* Right Side Collage */
.get-funding-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.collage-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.collage-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Floating Card Overlays */
.collage-card {
  position: absolute;
  background: var(--white);
  border: 1px solid #EBEBF0;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 190px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  z-index: 5;
  transition: transform 0.25s ease;
}

.collage-card:hover {
  transform: translateY(-2px);
}

.card-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F4F3FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon-circle svg {
  stroke: var(--purple);
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-info h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--navy);
  margin: 0;
}

.card-info p {
  font-size: 9.5px;
  line-height: 1.25;
  color: #777788;
  margin: 0;
}

/* Specific Card Placements */
.card-network {
  top: 5%;
  right: -12%;
}

.card-pitch {
  bottom: 26%;
  left: -8%;
  width: 180px;
}

.card-funding {
  bottom: 12%;
  right: -14%;
  width: 200px;
}

/* Connecting dashed lines */
.svg-connecting-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

/* ============================================================
   WHAT YOU GET – GENERAL/DESKTOP
   ============================================================ */
.what-you-get {
  padding: 90px 0 100px;
  background-color: #FAFAFD;
  color: var(--navy);
  border-top: 1px solid #EBEBF2;
  border-bottom: 1px solid #EBEBF2;
}

.what-you-get-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.what-you-get-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.what-you-get-item {
  background: var(--white);
  border: 1px solid #EBEBF0;
  border-radius: 16px;
  padding: 32px 20px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  height: 100%;
}

.what-you-get-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(91, 47, 212, 0.05);
}

.item-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F4F3FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.item-icon-wrapper svg {
  stroke: var(--purple);
}

.what-you-get-item h3 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.what-you-get-item p {
  font-size: 12px;
  line-height: 1.5;
  color: #666677;
}

.what-you-get-banner {
  background: var(--white) !important;
  border: 1.5px solid rgba(91, 47, 212, 0.07);
}

/* ============================================================
   HOW IT WORKS – GENERAL/DESKTOP
   ============================================================ */
.how-it-works {
  padding: 90px 0 100px;
  background-color: var(--white);
  color: var(--navy);
  overflow: hidden;
}

.journey-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.tag-line {
  width: 24px;
  height: 2px;
  background-color: var(--yellow);
  display: inline-block;
}

.section-tag {
  font-family: var(--font);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  color: var(--purple);
  text-transform: uppercase;
}

.section-headline {
  font-family: var(--cond);
  font-weight: 900;
  font-style: italic;
  font-size: 56px;
  line-height: 1.05;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-headline-purple {
  color: var(--purple);
}

.section-subtext {
  font-size: 15px;
  line-height: 1.55;
  color: #555566;
  max-width: 580px;
  margin: 0 auto;
}

/* Journey Grid */
.journey-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 40px 0;
  position: relative;
  margin-bottom: 70px;
}

/* Journey Cards */
.journey-card {
  background: var(--white);
  border: 1px solid #EBEBF0;
  border-radius: 16px;
  padding: 40px 28px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  height: 270px;
  /* fixed height for alignment */
  justify-content: flex-start;
  z-index: 2;
  /* above loop arrows */
}

.journey-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(91, 47, 212, 0.06);
  border-color: rgba(91, 47, 212, 0.15);
}

.icon-wrapper {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #F4F3FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
}

.step-number {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  background-color: var(--purple);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font);
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.card-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.card-text {
  font-size: 13px;
  line-height: 1.5;
  color: #666677;
}

/* Arrows styling */
.desktop-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  z-index: 1;
}

/* Full-width loop arrow overlay: Startup Selection → Pitch Preparation */
.journey-loop-arrow-overlay {
  display: block;
  position: absolute;
  left: -28px;
  /* extend into container's LEFT padding — left leg is card-free here */
  right: -28px;
  /* extend into container's RIGHT padding — right leg is card-free here */
  top: 0;
  /* start from top of grid */
  height: 370px;
  /* row1(270px) + gap(40px) + 60px into row2 */
  pointer-events: none;
  z-index: 1;
  /* BELOW cards (z-index:2) — path only shows in card-free padding/gap areas */
  overflow: visible;
}

.journey-loop-arrow-overlay svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mobile-arrow {
  display: none;
}

/* Banner section */
.journey-banner {
  background: #FAFAFD;
  border: 1.5px solid rgba(91, 47, 212, 0.07);
  border-radius: 16px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.banner-illustration {
  flex-shrink: 0;
  width: 140px;
  height: 70px;
  display: flex;
  align-items: center;
}

.banner-illustration svg {
  width: 100%;
  height: 100%;
}

.banner-content {
  flex-grow: 1;
}

.banner-headline {
  font-family: var(--cond);
  font-weight: 900;
  font-size: 26px;
  line-height: 1.2;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.banner-headline-purple {
  color: var(--purple);
  font-style: italic;
}

.banner-subtext {
  font-size: 13.5px;
  color: #555566;
  line-height: 1.4;
}

.banner-cta {
  flex-shrink: 0;
}

.btn-banner {
  font-size: 13px;
  padding: 13px 26px;
  border-radius: 6px;
}

/* ============================================================
   TABLET (≤ 1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .hero-headline {
    font-size: 58px;
  }

  .nav-links {
    gap: 20px;
  }
}

/* ============================================================
   MEET OUR INVESTORS
   ============================================================ */
.investors-section {
  background: #fff;
  padding: 80px 0 60px;
}

.investors-container {
  max-width: 1360px; /* wider to show power */
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Header --- */
.investors-header {
  text-align: center;
  margin-bottom: 48px;
}

.investors-header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 6px;
}

.investors-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.investors-eyebrow {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-transform: uppercase;
}

.investors-headline {
  font-family: var(--cond);
  font-weight: 900;
  font-style: italic;
  font-size: 96px; /* bigger */
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 18px;
  background: linear-gradient(to right, #0F0326 15%, #5B2FD4 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.investors-headline .typewriter-cursor {
  -webkit-text-fill-color: #5B2FD4 !important;
  color: #5B2FD4 !important;
  background: none !important;
  display: inline-block;
}

.investors-subtext {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* --- Cards Grid --- */
.investors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.investor-card {
  border-radius: 14px;
  border: 1.5px solid #e8e3ff;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(91, 47, 212, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}

.investor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(91, 47, 212, 0.15);
}

.investor-card--featured {
  border-color: #c4b5ff;
  box-shadow: 0 4px 20px rgba(91, 47, 212, 0.14);
}

/* Silhouette image area */
.investor-img-wrap {
  position: relative;
  overflow: hidden;
}

.investor-silhouette {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Colored bottom bar on image */
.investor-card-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--purple), #8b6cff);
  z-index: 2;
}

.investor-card-bar--gold {
  background: linear-gradient(90deg, #d4870a, var(--yellow));
}

/* Slanted bottom lines for cards */
.investors-grid .investor-card:nth-child(odd) .investor-img-wrap {
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}
.investors-grid .investor-card:nth-child(odd) .investor-card-bar {
  clip-path: polygon(0 96%, 100% 92%, 100% 100%, 0 100%);
}
.investors-grid .investor-card:nth-child(even) .investor-img-wrap {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 96%);
}
.investors-grid .investor-card:nth-child(even) .investor-card-bar {
  clip-path: polygon(0 92%, 100% 96%, 100% 100%, 0 100%);
}

/* Info area below image */
.investor-info {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  flex: 1;
}

.investor-name {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}

.investor-divider {
  width: 36px;
  height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 10px;
}

.investor-reveal {
  font-size: 12px;
  color: #888;
  margin: 0 0 14px;
  line-height: 1.4;
}

.investor-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f3f0ff;
  border-radius: 50%;
  margin-top: auto;
}

/* --- Responsiveness for Investors --- */
@media (max-width: 991px) {
  .investors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .investors-headline {
    font-size: 72px;
  }
}

@media (max-width: 767px) {
  .investors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .investors-headline {
    font-size: 56px;
  }
}

@media (max-width: 480px) {
  .investors-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 320px;
    margin: 0 auto 32px;
  }
  .investors-headline {
    font-size: 48px;
  }
}

/* --- Bottom Teaser Banner --- */
.investors-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f5ff;
  border: 1.5px solid #e8e3ff;
  border-radius: 14px;
  padding: 20px 28px;
  gap: 24px;
  overflow: hidden;
}

.investors-teaser-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.investors-teaser-icon {
  flex-shrink: 0;
}

.investors-teaser-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.investors-teaser-line1 {
  font-size: 14px;
  color: #444;
  font-weight: 500;
}

.investors-teaser-line2 {
  font-size: 16px;
  font-weight: 800;
  color: var(--purple);
}

.investors-teaser-city {
  flex-shrink: 0;
  opacity: 0.8;
}

.teaser-join-btn {
  text-decoration: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(91, 47, 212, 0.15);
  flex-shrink: 0;
  background: var(--purple);
  color: var(--white);
  transition: all 0.22s ease;
}

.teaser-join-btn:hover {
  background: var(--purple-dark);
  box-shadow: 0 6px 16px rgba(91, 47, 212, 0.25);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .investors-teaser {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 20px;
  }
  
  .investors-teaser-left {
    flex-direction: column;
    gap: 12px;
  }
  
  .investors-teaser-city {
    display: none !important;
  }
}


/* ============================================================
   MOBILE (≤ 640px) – Full layout override
   ============================================================ */
@media (max-width: 640px) {

  /* ---- NAVBAR (mobile) ---- */
  .navbar {
    top: 36px;
    /* still below ticker on mobile */
    height: 88px;
  }

  .nav-container {
    padding: 0 14px;
    justify-content: flex-start;
    /* logo left, ctas push right */
    gap: 0;
  }

  .nav-logo img {
    height: 80px;
  }

  .nav-links {
    display: none;
  }

  /* Keep nav-ctas but remove margin/gap from desktop */
  .nav-ctas {
    display: flex;
    margin-left: auto;
    /* push to right */
    margin-right: 10px;
    gap: 0;
  }

  /* Hide BUY PASS on mobile, show only APPLY TO PITCH */
  #btn-buy-pass {
    display: none;
  }

  #btn-apply-nav {
    font-size: 12px;
    padding: 10px 16px;
    border-radius: 6px;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* Slide-down mobile menu links */
  .nav-links.active {
    display: flex !important;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    gap: 22px;
    border-top: 1.5px solid #F0EDFD;
    box-shadow: 0 15px 35px rgba(91, 47, 212, 0.1);
    z-index: 999;
    animation: slideDownMenu 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
  }

  .nav-links.active a {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy) !important;
    width: 100%;
    text-align: center;
    padding: 8px 0;
    transition: color 0.2s ease;
  }

  .nav-links.active a:hover {
    color: var(--purple) !important;
  }

  @keyframes slideDownMenu {
    from {
      opacity: 0;
      transform: translateY(-12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ---- HERO ---- */
  .hero {
    position: relative;
    height: 380px;
    /* fixed height — image fills this */
    min-height: unset;
    max-height: unset;
    margin-top: 100px;
    /* 36px ticker + ~64px mobile navbar */
    overflow: hidden;
    background: var(--white);
  }

  /* Full-bleed background: image positioned to show presenter on right */
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('Website Hero section mobile bg.png');
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
  }

  /* White fade gradient removed on mobile */

  /* hero-content: absolute over image, left column only */
  .hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 20px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 100%;
    margin-top: 10px;
  }

  .hero-left {
    max-width: 58%;
    display: flex;
    flex-direction: column;
  }

  .hero-tagline {
    font-size: 10.5px;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    line-height: 1.45;
  }

  .hero-headline {
    font-size: 52px;
    line-height: 0.92;
    margin-bottom: 0;
  }

  /* Yellow accent bar below GET FUNDED. */
  .hero-accent-line {
    display: block;
    width: 46px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
    margin: 10px 0 14px;
    flex-shrink: 0;
  }

  /* Subtext inside hero (stays overlaid on white area) */
  .hero-subtext {
    font-size: 13.5px;
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: 0;
    color: #333;
  }

  /* Show mobile line breaks */
  .mob-br {
    display: inline;
  }

  /* Hide features + CTAs inside hero-left on mobile */
  .hero-features {
    display: none;
  }

  .hero-ctas {
    display: none;
  }

  /* ---- MOBILE BELOW SECTION ---- */
  .mob-below {
    display: block;
    background: var(--white);
    border-top: 1px solid #ebebf0;
  }

  /* Feature icons row */
  .mob-features {
    display: flex;
    align-items: flex-start;
    padding: 18px 12px 16px;
    border-bottom: 1px solid #ebebf0;
  }

  .mob-feat {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 0 4px;
  }

  .mob-feat svg {
    flex-shrink: 0;
    margin-top: 2px;
  }

  .mob-feat-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .mob-feat-text strong {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.2;
  }

  .mob-feat-text span {
    font-size: 10px;
    color: var(--gray);
    line-height: 1.3;
  }

  .mob-feat-div {
    width: 1px;
    background: #e0e0e8;
    align-self: stretch;
    margin: 4px 0;
    flex-shrink: 0;
  }

  /* Full-width CTA buttons */
  .mob-ctas {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 14px 14px 16px;
  }

  .mob-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 17px 20px;
    font-family: var(--font);
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    margin-bottom: 12px;
    text-decoration: none;
  }

  .mob-btn:last-child {
    margin-bottom: 0;
  }

  .mob-btn-purple {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
  }

  .mob-btn-purple:hover {
    background: var(--purple-dark);
  }

  .mob-btn-yellow {
    background: var(--yellow);
    color: var(--navy);
    border-color: var(--yellow);
  }

  .mob-btn-yellow:hover {
    background: var(--yellow-dark);
    color: var(--navy);
    border-color: var(--yellow-dark);
  }

  /* ---- STATS on mobile ---- */
  .stats-bar {
    padding: 16px 0;
    box-shadow: none;
  }

  .stats-container {
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 16px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 0 0 calc(50% - 10px);
    justify-content: flex-start;
  }

  .stat-value {
    font-size: 20px;
  }

  .stat-label {
    font-size: 9px;
  }
}

/* ============================================================
   HOW IT WORKS – MOBILE RESPONSIVENESS
   ============================================================ */
@media (max-width: 991px) {
  .how-it-works {
    padding: 60px 0 70px;
  }

  .section-headline {
    font-size: 42px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 56px 0;
    /* large vertical gap to accommodate vertical dashed arrow overlays */
    max-width: 480px;
    margin: 0 auto 40px;
  }

  .journey-card {
    height: auto;
    padding: 36px 20px 32px;
  }

  .desktop-arrow {
    display: none !important;
  }

  .journey-loop-arrow-overlay {
    display: none !important;
  }

  .mobile-arrow {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -46px;
    /* align exactly between the cards */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  #step-6 .mobile-arrow {
    display: none !important;
    /* hide under the last card */
  }

  .journey-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }

  .banner-illustration {
    width: 120px;
    height: auto;
    margin: 0 auto;
  }

  .banner-cta {
    width: 100%;
  }

  .banner-cta .btn-banner {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .section-headline {
    font-size: 36px;
  }

  .banner-headline {
    font-size: 22px;
  }
}

/* ============================================================
   GET FUNDING & WHAT YOU GET – MOBILE RESPONSIVENESS
   ============================================================ */
@media (max-width: 991px) {
  .get-funding {
    padding: 60px 0;
  }

  .get-funding-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .get-funding-left {
    max-width: 100%;
  }

  .section-headline-large {
    font-size: 42px;
  }

  .get-funding-subtext {
    margin-bottom: 24px;
  }

  .victory-banner {
    padding: 20px;
  }

  .what-you-get {
    padding: 60px 0;
  }

  .what-you-get-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .collage-card {
    width: 160px;
    padding: 8px 10px;
  }

  .card-info h4 {
    font-size: 11px;
  }

  .card-info p {
    font-size: 8.5px;
  }

  .card-network {
    right: -4%;
    top: 5%;
  }

  .card-pitch {
    left: -3%;
    bottom: 26%;
  }

  .card-funding {
    right: -4%;
    bottom: 12%;
  }

  .svg-connecting-lines {
    display: none;
    /* Hide dashed arrows on smaller screens to avoid misalignment */
  }

  .what-you-get-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .what-you-get-item {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .collage-card {
    position: relative;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .collage-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .section-headline-large {
    font-size: 34px;
  }
}

/* ============================================================
   REGISTER FOR FUNDING DREAMERS SECTION
   ============================================================ */
.register-section {
  background: #FAF9FC;
  padding: 90px 0 80px;
}

.register-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Header --- */
.register-header {
  text-align: center;
  margin-bottom: 56px;
}

.register-eyebrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.register-eyebrow-pill {
  background: #1a0a3d;
  color: #fff;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(26, 10, 61, 0.15);
}

.star-accent {
  color: #FDB913;
  font-size: 14px;
  margin: 0 10px;
}

.register-headline {
  font-family: var(--cond);
  font-weight: 900;
  font-style: italic;
  font-size: 54px;
  line-height: 1.1;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.register-headline .purple-highlight {
  color: var(--purple);
}

.headline-accent-svg {
  display: inline-block;
  vertical-align: middle;
  opacity: 0.85;
}

.register-subtext {
  font-family: var(--font);
  font-size: 16px;
  color: #555;
  margin: 0 auto;
  max-width: 600px;
}

/* --- Cards Grid --- */
.register-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.register-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #e8e3ff;
  overflow: visible; /* allow floating badge */
  box-shadow: 0 6px 24px rgba(91, 47, 212, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.register-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(91, 47, 212, 0.12);
}

.register-img-wrap {
  height: 220px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  position: relative;
}

.register-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.register-badge {
  position: absolute;
  top: 220px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(91, 47, 212, 0.15);
  z-index: 5;
}

.register-badge--purple {
  background: linear-gradient(135deg, var(--purple) 0%, #7d5cff 100%);
}

.register-badge--yellow {
  background: linear-gradient(135deg, #e5970c 0%, var(--yellow) 100%);
  box-shadow: 0 6px 16px rgba(229, 151, 12, 0.2);
}

/* Card Body Content */
.register-card-body {
  padding: 48px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.register-card-title {
  font-family: var(--font);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.register-card-title span {
  color: var(--purple);
}

.register-card-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: #666;
  margin: 0 0 24px;
}

/* Card Buttons */
.register-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  margin-top: auto;
}

.register-btn--purple {
  background: linear-gradient(90deg, var(--purple) 0%, #7d5cff 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(91, 47, 212, 0.25);
}

.register-btn--purple:hover {
  background: linear-gradient(90deg, #4b23b5 0%, var(--purple) 100%);
  box-shadow: 0 6px 20px rgba(91, 47, 212, 0.35);
  transform: translateY(-2px);
}

.register-btn--yellow {
  background: linear-gradient(90deg, #e5970c 0%, var(--yellow) 100%);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(229, 151, 12, 0.25);
}

.register-btn--yellow:hover {
  background: linear-gradient(90deg, #cc8300 0%, #e5970c 100%);
  box-shadow: 0 6px 20px rgba(229, 151, 12, 0.35);
  transform: translateY(-2px);
}

/* --- Bottom Feature Pill Bar --- */
.register-pill-bar {
  background: #fff;
  border: 1.5px solid #e8e3ff;
  border-radius: 50px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(91, 47, 212, 0.04);
  max-width: 1100px;
  margin: 40px auto 0;
}

.register-pill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
  position: relative;
}

.register-pill-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #e8e3ff;
}

.register-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f4f1ff;
  color: var(--purple);
  flex-shrink: 0;
}

.register-pill-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.register-pill-title {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.register-pill-sub {
  font-size: 11px;
  color: #777;
  margin-top: 2px;
  line-height: 1.2;
  white-space: nowrap;
}

/* --- Responsiveness for Register Section --- */
@media (max-width: 991px) {
  .register-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .register-grid .register-card:nth-child(3) {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
  .register-pill-bar {
    flex-wrap: wrap;
    border-radius: 24px;
    padding: 24px 16px;
    gap: 20px 0;
  }
  .register-pill-item {
    flex: 0 0 50%;
    justify-content: flex-start;
    padding-left: 20px;
  }
  .register-pill-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .register-headline {
    font-size: 42px;
  }
  .headline-accent-svg {
    width: 24px;
    height: 18px;
  }
  .register-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 420px;
    margin: 0 auto 32px;
  }
  .register-grid .register-card:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
  }
  .register-pill-item {
    flex: 0 0 100%;
    padding-left: 24px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 60px 0 50px;
  }
  .register-headline {
    font-size: 32px;
    flex-direction: column;
    gap: 8px;
  }
  .headline-accent-svg {
    display: none;
  }
  .register-pill-bar {
    border-radius: 16px;
    padding: 20px 12px;
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 80px 0 80px;
  background: linear-gradient(180deg, #F8F7FF 0%, #FFFFFF 100%);
  border-top: 1px solid #EBE8FF;
  position: relative;
  overflow: hidden;
}

.faq-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 5;
}

/* FAQ Header */
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-eyebrow-container {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.faq-eyebrow-pill {
  background: #EBE9FF;
  color: var(--purple);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.faq-badge-bubble {
  stroke: var(--purple);
  fill: none;
}

.faq-headline {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
}

.faq-subtext {
  font-size: 15px;
  color: #555566;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* FAQ Grid Layout */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Left Illustration Column - Sticky on Desktop */
.faq-illustration-col {
  position: relative;
  align-self: stretch;
}

.faq-illustration-wrapper {
  position: sticky;
  top: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-glow-backdrop {
  position: absolute;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(91, 47, 212, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.faq-graphic {
  width: 100%;
  max-width: 560px;
  height: auto;
  position: relative;
  z-index: 2;
  animation: faqFloat 6s ease-in-out infinite;
}

@keyframes faqFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Right Accordion Column */
.faq-accordion-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-card {
  background: #FFFFFF;
  border: 1.5px solid #F0EDFD;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(91, 47, 212, 0.01);
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover {
  border-color: #E2DBFF;
  box-shadow: 0 5px 14px rgba(91, 47, 212, 0.02);
}

.faq-card.active {
  border-color: #C8BCFF;
  box-shadow: 0 8px 20px rgba(91, 47, 212, 0.06);
}

/* Accordion Trigger */
.faq-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  cursor: pointer;
  user-select: none;
}

.faq-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1A1549;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.25s ease;
}

.faq-icon-circle svg {
  width: 16px;
  height: 16px;
}

.faq-card.active .faq-icon-circle {
  background: var(--purple);
}

.faq-question {
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
  text-align: left;
  line-height: 1.4;
}

.faq-chevron {
  color: var(--purple);
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card.active .faq-chevron {
  transform: rotate(180deg);
}

/* Accordion Content */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  padding: 0 20px 14px 70px;
}

.faq-content-inner p {
  font-family: var(--font);
  font-size: 13.5px;
  line-height: 1.55;
  color: #555566;
  margin: 0;
}

/* FAQ Responsive Styles */
@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-illustration-col {
    align-self: auto;
    order: -1;
    margin-bottom: 0;
  }
  .faq-illustration-wrapper {
    position: relative;
    top: 0;
  }
  .faq-graphic {
    max-width: 280px;
  }
  .faq-glow-backdrop {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 60px 0 50px;
  }
  .faq-headline {
    font-size: 32px;
  }
  .faq-trigger {
    padding: 12px 16px;
    gap: 12px;
  }
  .faq-icon-circle {
    width: 32px;
    height: 32px;
  }
  .faq-icon-circle svg {
    width: 14px;
    height: 14px;
  }
  .faq-content-inner {
    padding: 0 16px 14px 60px;
  }
}

@media (max-width: 575px) {
  .faq-content-inner {
    padding: 0 16px 14px 16px;
  }
}

@media (max-width: 480px) {
  .faq-headline {
    font-size: 26px;
  }
  .faq-subtext {
    font-size: 14px;
  }
  .faq-question {
    font-size: 13.5px;
  }
}

/* ============================================================
   WHO SHOULD ATTEND SECTION
   ============================================================ */
.attendees-section {
  padding: 100px 0 100px;
  background: #FFFFFF;
  position: relative;
  overflow: visible;
}

.attendees-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.attendees-header {
  text-align: center;
  margin-bottom: 70px;
}

.attendees-eyebrow-container {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.attendees-eyebrow-pill {
  border: 1.5px solid #E2D9FF;
  color: var(--purple);
  background: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.attendees-headline {
  font-family: var(--font);
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
}

.attendees-purple-highlight {
  color: var(--purple);
}

.attendees-divider-bar {
  width: 32px;
  height: 3px;
  background: var(--purple);
  margin: 18px auto;
  border-radius: 2px;
}

.attendees-subtext {
  font-size: 15.5px;
  color: #555566;
  margin: 0;
  line-height: 1.6;
}

/* Attendees Grid */
.attendees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
}

.attendee-card {
  position: relative;
  background: #FFFFFF;
  border: 1.5px solid #F0EDFD;
  border-radius: 24px;
  padding: 70px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 16px rgba(91, 47, 212, 0.01);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.attendee-card:hover {
  border-color: #D6CAFF;
  box-shadow: 0 8px 24px rgba(91, 47, 212, 0.05);
  transform: translateY(-4px);
}

/* Circle Graphic Overlap */
.attendee-circle-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  pointer-events: none;
}

.attendee-orbit-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.attendee-icon-circle {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  border: 1.5px solid #F0EDFD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(91, 47, 212, 0.04);
}

.attendee-card:hover .attendee-icon-circle {
  border-color: #D6CAFF;
  box-shadow: 0 4px 20px rgba(91, 47, 212, 0.08);
}

/* Card details */
.card-number-pill {
  background: #F0EDFD;
  color: var(--purple);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.card-heading {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px;
}

.card-sub-line {
  width: 24px;
  height: 2px;
  background: var(--purple);
  margin: 0 auto 16px;
  border-radius: 1px;
}

.card-desc {
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.6;
  color: #666677;
  margin: 0 0 28px;
}

.card-dots {
  margin-top: auto;
  display: flex;
  gap: 6px;
}

.card-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8E3FF;
  display: inline-block;
}

.card-dots .dot.active {
  background: var(--purple);
  box-shadow: 0 0 6px rgba(91, 47, 212, 0.4);
}

/* Attendees Responsiveness */
@media (max-width: 1199px) {
  .attendees-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 32px;
  }
}

@media (max-width: 767px) {
  .attendees-section {
    padding: 70px 0 70px;
  }
  .attendees-headline {
    font-size: 34px;
  }
  .attendees-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 80px auto 0;
    gap: 80px 0;
  }
}

@media (max-width: 480px) {
  .attendees-headline {
    font-size: 28px;
  }
  .attendees-subtext {
    font-size: 14.5px;
  }
}

/* ============================================================
   CONTACT US SECTION
   ============================================================ */
.contact-section {
  padding: 100px 0 120px;
  background: #FCFCFF;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--purple);
  color: var(--purple);
  background: #FFFFFF;
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.eyebrow-icon {
  width: 14px;
  height: 14px;
  color: var(--purple);
}

.contact-headline {
  font-family: var(--font);
  font-size: 56px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}

.contact-purple-highlight {
  color: var(--purple);
}

.contact-divider-bar {
  width: 36px;
  height: 3.5px;
  background: var(--purple);
  margin: 20px 0 28px;
  border-radius: 2px;
}

.contact-subtext {
  font-family: var(--font);
  font-size: 17px;
  color: #555566;
  line-height: 1.5;
  margin: 0 0 30px;
}

.contact-purple-bold {
  color: var(--purple);
  font-weight: 700;
}

.contact-illustration-wrapper {
  margin-top: 10px;
  width: 100%;
  max-width: 320px;
}

.contact-illustration-img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-right {
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card {
  background: #FFFFFF;
  border: 1.5px solid #F2EFFE;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(91, 47, 212, 0.01);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  border-color: #D6CAFF;
  box-shadow: 0 15px 35px rgba(91, 47, 212, 0.05);
  transform: translateY(-4px);
}

.tall-card {
  padding: 40px 30px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-icon-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.contact-icon-large {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.email-icon-bg, .whatsapp-icon-bg {
  background: radial-gradient(circle, #FAF8FF 0%, #EFEBFF 100%);
  border: 1.5px solid #E6E1FF;
}

.icon-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: radial-gradient(circle, #BCA8FF 1px, transparent 1.5px);
  background-size: 8px 8px;
  opacity: 0.25;
}

.icon-rays {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.icon-rays span {
  position: absolute;
  width: 2px;
  height: 8px;
  background: var(--purple);
  border-radius: 2px;
  opacity: 0.6;
}

.icon-rays span:nth-child(1) {
  top: 8px;
  right: 8px;
  transform: rotate(45deg);
}

.icon-rays span:nth-child(2) {
  top: -4px;
  right: 28px;
  transform: rotate(0deg);
}

.icon-rays span:nth-child(3) {
  top: 14px;
  right: -2px;
  transform: rotate(70deg);
}

.envelope-svg, .whatsapp-svg {
  width: 76px;
  height: 76px;
  z-index: 2;
}

.contact-card-title {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 4px;
}

.contact-card-subtitle {
  font-family: var(--font);
  font-size: 14px;
  color: #666677;
  font-weight: 500;
  margin: 0 0 28px;
}

.contact-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #EAE5FB;
  background: #FFFFFF;
  border-radius: 100px;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  transition: all 0.25s ease;
  text-decoration: none;
}

.pill-icon {
  width: 16px;
  height: 16px;
  color: var(--purple);
}

.contact-pill-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: #FAF9FF;
  transform: translateY(-2px);
}

.wide-card {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wide-card-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.youtube-circle-wrapper, .instagram-circle-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1.5px solid #F0EDFD;
  box-shadow: 0 4px 12px rgba(91, 47, 212, 0.03);
  flex-shrink: 0;
}

.youtube-circle-wrapper svg, .instagram-circle-wrapper svg {
  width: 28px;
  height: 28px;
}

.wide-card-info {
  text-align: left;
}

.wide-card-title {
  font-family: var(--font);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 2px;
}

.wide-card-subtitle {
  font-family: var(--font);
  font-size: 13.5px;
  color: #666677;
  font-weight: 500;
  margin: 0;
}

.instagram-handle {
  color: var(--purple);
  font-weight: 700;
}

.contact-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.arrow-icon {
  width: 14px;
  height: 14px;
  stroke-width: 3px;
}

.contact-card:hover .contact-arrow-btn {
  background: var(--purple-dark);
  transform: scale(1.15) rotate(-45deg);
}

/* Bottom Wide Banner */
.contact-banner-container {
  grid-column: span 2;
  position: relative;
  margin-top: 36px;
  padding: 10px 0;
}

.stay-connected-banner {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid #F0EDFD;
  border-radius: 100px;
  padding: 12px 30px;
  gap: 20px;
  box-shadow: 0 8px 30px rgba(91, 47, 212, 0.02);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stay-connected-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7F53F9, #5B2FD4);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stay-connected-badge svg {
  width: 20px;
  height: 20px;
}

.banner-text {
  font-family: var(--font);
  font-size: 15px;
  color: #4A4A5A;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

.banner-highlight {
  color: var(--purple);
  font-weight: 700;
}

.contact-banner-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: auto;
  min-height: 120px;
  z-index: 1;
  pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-left {
    align-items: center;
    text-align: center;
  }
  .contact-divider-bar {
    margin: 20px auto 28px;
  }
  .contact-illustration-wrapper {
    margin: 10px auto 0;
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 70px 0 80px;
  }
  .contact-headline {
    font-size: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-banner-container {
    grid-column: span 1;
  }
  .stay-connected-banner {
    border-radius: 28px;
    padding: 18px 24px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .contact-banner-decor {
    display: none;
  }
}

@media (max-width: 480px) {
  .contact-headline {
    font-size: 32px;
  }
  .contact-pill-btn {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 12px 16px;
  }
  .tall-card {
    padding: 32px 20px 24px;
  }
  .wide-card {
    padding: 16px 20px;
  }
}

/* ============================================================
   MAIN FOOTER SECTION
   ============================================================ */
.main-footer {
  background: #FFFFFF;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 1.5px solid #F2EFFE;
}

.footer-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  pointer-events: none;
  z-index: 1;
}

.footer-decor-glow {
  position: absolute;
  right: 80px;
  top: 80px;
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 15px rgba(168, 134, 255, 0.6));
  pointer-events: none;
  z-index: 1;
  animation: floatDecor 4s ease-in-out infinite;
}

.footer-decor-glow-small {
  position: absolute;
  right: 280px;
  top: 140px;
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 10px rgba(168, 134, 255, 0.4));
  pointer-events: none;
  z-index: 1;
  animation: floatDecor 3s ease-in-out infinite alternate;
}

@keyframes floatDecor {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(10deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.footer-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  flex-shrink: 0;
}

.footer-logo-img {
  max-width: 320px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.02);
}

.footer-sub-features {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border: 1.5px solid #F0EDFD;
  border-radius: 100px;
  padding: 8px 24px 8px 12px;
  box-shadow: 0 4px 15px rgba(91, 47, 212, 0.02);
}

.footer-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.footer-feature-item:hover {
  transform: translateY(-2px);
}

.footer-feature-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F0EDFD;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-feature-circle svg {
  width: 18px;
  height: 18px;
}

.footer-feature-text {
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.footer-sub-divider {
  width: 1.5px;
  height: 24px;
  background: #EAE5FB;
}

.footer-middle-divider {
  width: 1.5px;
  height: 200px;
  background: #E6E1FF;
  position: relative;
  flex-shrink: 0;
}

.footer-middle-divider::after {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  color: #A886FF;
  font-size: 24px;
  padding: 10px 0;
  line-height: 1;
}

.footer-right {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  max-width: 480px;
}

.footer-tagline {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 500;
  color: #333344;
  line-height: 1.35;
  margin: 0;
  text-align: left;
  letter-spacing: -0.01em;
}

.footer-purple-highlight {
  color: var(--purple);
  font-weight: 700;
}

.footer-bottom-line {
  border: none;
  border-top: 1px solid #ECE8FF;
  margin: 0 0 30px;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-star-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #F0EDFD;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}

.footer-star-badge svg {
  width: 14px;
  height: 14px;
}

.footer-copyright-text {
  font-family: var(--font);
  font-size: 14px;
  color: #555566;
}

.footer-right-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-vertical-divider {
  width: 1px;
  height: 20px;
  background: #ECE8FF;
}

.footer-links-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-link {
  font-family: var(--font);
  font-size: 14px;
  color: #555566;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--purple);
}

.footer-dot {
  color: var(--purple);
  font-size: 12px;
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
  .footer-main-content {
    flex-direction: column;
    text-align: center;
    gap: 48px;
    margin-bottom: 60px;
  }
  .footer-left {
    align-items: center;
    gap: 36px;
  }
  .footer-middle-divider {
    display: none;
  }
  .footer-right {
    justify-content: center;
    max-width: 100%;
  }
  .footer-tagline {
    text-align: center;
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 70px 0 30px;
  }
  .footer-sub-features {
    flex-wrap: nowrap;
    justify-content: center;
    border-radius: 100px;
    padding: 8px 12px;
    gap: 6px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .footer-feature-item {
    gap: 4px;
  }
  .footer-feature-circle {
    width: 24px;
    height: 24px;
  }
  .footer-feature-circle svg {
    width: 12px;
    height: 12px;
  }
  .footer-feature-text {
    font-size: 10px;
    letter-spacing: 0.02em;
  }
  .footer-sub-divider {
    display: block;
    width: 1px;
    height: 16px;
    background: #EAE5FB;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-right-bottom {
    flex-direction: column;
    gap: 0;
  }
  .footer-vertical-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-logo-img {
    max-width: 240px;
  }
  .footer-tagline {
    font-size: 20px;
  }
  .footer-links-block {
    gap: 12px;
  }
  .footer-copyright-text, .footer-link {
    font-size: 13px;
  }
}

/* ============================================================
   REGISTRATION POPUP MODAL
   ============================================================ */
.reg-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 18, 51, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reg-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.reg-modal-content {
  background: #FFFFFF;
  border-radius: 28px;
  width: 100%;
  max-width: 580px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(91, 47, 212, 0.15);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.reg-modal-overlay.active .reg-modal-content {
  transform: scale(1);
}

.reg-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #F8F7FF;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.reg-modal-close:hover {
  background: var(--purple);
  color: #FFFFFF;
  transform: rotate(90deg);
}

.reg-modal-header {
  margin-bottom: 28px;
  text-align: left;
}

.reg-modal-title {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.reg-modal-subtitle {
  font-family: var(--font);
  font-size: 14px;
  color: #666677;
  margin: 0;
}

.reg-modal-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group label {
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #EAE5FB;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--navy);
  background: #FFFFFF;
  outline: none;
  transition: all 0.22s ease;
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: #A3A3C2;
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(91, 47, 212, 0.1);
  background: #FFFFFF;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #888899;
  pointer-events: none;
}

.select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.conditional-fields-group {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.conditional-fields-group.active {
  max-height: 350px;
  opacity: 1;
  margin-bottom: 12px;
}

.price-summary-box {
  background: #FAF9FF;
  border: 1.5px solid #F0EDFD;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 28px;
  text-align: left;
  display: none;
  animation: fadeInBox 0.25s ease both;
}

.price-summary-box.active {
  display: block;
}

@keyframes fadeInBox {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.price-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.price-label {
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  color: #555566;
}

.price-value {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 800;
  color: var(--purple);
}

.price-tax {
  font-family: var(--font);
  font-size: 11.5px;
  color: #888899;
  font-weight: 500;
}

.btn-submit-reg {
  width: 100%;
  padding: 16px 24px;
  font-size: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(91, 47, 212, 0.15);
  border: none;
}

.error-msg {
  font-family: var(--font);
  font-size: 11.5px;
  color: #E11D48;
  font-weight: 600;
  display: none;
  margin-top: -2px;
  text-align: left;
}

.form-group.has-error input, .form-group.has-error select {
  border-color: #FDA4AF;
  background: #FFF1F2;
}

.form-group.has-error .error-msg {
  display: block;
}

/* Modal Responsive overrides */
@media (max-width: 580px) {
  .reg-modal-content {
    padding: 30px 20px;
    border-radius: 20px;
    max-height: 95vh;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .reg-modal-title {
    font-size: 22px;
  }
  .reg-modal-close {
    top: 16px;
    right: 16px;
  }
}