/* =====================================================
   HOME PAGE — BIZOPPZ
===================================================== */

/* ---------- SECTION BASE ---------- */

.section {
  padding: 6rem 0;
}

.section-tight {
  padding: 4.5rem 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: var(--text-3xl);
  margin-bottom: 1rem;
}

.section-description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
}


/* =====================================================
   HERO (HOME ENTRY)
===================================================== */

.home-hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  text-align: center;
}

.home-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.home-hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: 1.25rem;
}

.home-hero p {
  font-size: var(--text-lg);
  margin-bottom: 2.25rem;
}

.home-hero .hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}


/* =====================================================
   PLATFORM OVERVIEW
===================================================== */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.platform-card {
  padding: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.platform-card h4 {
  font-size: var(--text-lg);
  margin-bottom: 0.75rem;
}

.platform-card p {
  font-size: var(--text-sm);
}


/* =====================================================
   HOW IT WORKS
===================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  padding: 2rem;
  border-left: 2px solid var(--border-subtle);
}

.step-index {
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.step-card h4 {
  font-size: var(--text-base);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: var(--text-sm);
}


/* =====================================================
   FEATURED OPPORTUNITIES (PREVIEW)
===================================================== */

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.opportunity-card {
  padding: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.25s ease;
}

.opportunity-card:hover {
  border-color: var(--brand-primary);
}

.opportunity-meta {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.opportunity-title {
  font-size: var(--text-lg);
  margin-bottom: 0.5rem;
}

.opportunity-desc {
  font-size: var(--text-sm);
}


/* =====================================================
   CTA SECTION
===================================================== */

.home-cta {
  text-align: center;
  background: var(--bg-layer);
}

.home-cta h2 {
  font-size: var(--text-3xl);
  margin-bottom: 1rem;
}

.home-cta p {
  max-width: 520px;
  margin: 0 auto 2rem;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {
  .platform-grid,
  .opportunities-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   HOME HERO — SPLIT LAYOUT
===================================================== */

.home-hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* LEFT */
.home-hero-left h1 {
  font-size: var(--text-4xl);
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: var(--text-lg);
  max-width: 520px;
  margin-bottom: 2rem;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.stat-item strong {
  display: block;
  font-size: 2.4rem;
  font-weight: var(--font-semibold);
  color: var(--text-primary);
}

.stat-item span {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ACTIONS */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* BUTTON ANIMATION */
.hero-btn-animated {
  position: relative;
  padding: 0.55rem 1.6rem;
  border-radius: 999px;
  background: var(--brand-primary);
  color: #fff;
  font-weight: var(--font-medium);
  overflow: hidden;
}

.hero-btn-animated::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 60%);
  opacity: 0;
  animation: pulseBtn 3.5s ease-in-out infinite;
}

@keyframes pulseBtn {
  0% { opacity: 0; }
  50% { opacity: 0.45; }
  100% { opacity: 0; }
}

/* RIGHT IMAGE */
.home-hero-right {
  display: flex;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  width: 320px;
}

.image-wrapper img {
  height: auto;
  position: relative;
  z-index: 2;
}

/* FLOATING DOLLARS */
.floating-dollar {
  position: absolute;
  font-size: 5.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  animation: floatDollar 18s ease-in-out infinite;
}

.floating-dollar:nth-child(2) {
  top: 10%;
  left: -10%;
  animation-duration: 22s;
}

.floating-dollar:nth-child(3) {
  top: 50%;
  right: -12%;
  animation-duration: 26s;
}

.floating-dollar:nth-child(4) {
  bottom: -5%;
  left: 20%;
  animation-duration: 24s;
}

.floating-dollar:nth-child(5) {
  top: -8%;
  right: 25%;
  animation-duration: 28s;
}

@keyframes floatDollar {
  0%   { transform: translateY(0) scale(1); opacity: 0.35; }
  50%  { transform: translateY(-40px) scale(1.08); opacity: 0.65; }
  100% { transform: translateY(0) scale(1); opacity: 0.35; }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .home-hero-right {
    margin-top: 3rem;
  }
}



/* ================= INVESTMENT SECTIONS ================= */

.investment-section {
  padding: 5.5rem 0;
}

.section-head {
  margin-bottom: 2.75rem;
}

/* ================= SECTION HEADING EMPHASIS ================= */

.section-head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.85rem;
}

/* Brand accent bar */
.section-head h2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;

  width: 42px;
  height: 3px;
  background: var(--brand-primary);
  border-radius: 2px;
}

/* Soft underline extension */
.section-head h2::after {
  content: '';
  position: absolute;
  left: 50px;
  bottom: 1px;

  width: 110px;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--border-subtle),
    transparent
  );
}


.section-head p {
  max-width: 520px;
  color: var(--text-secondary);
}

/* GRID */
.investment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* CARD */
.investment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.75rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.investment-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
}

/* IMAGE */
.investment-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.investment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NON-SQUARE SHAPES */
.img-shape-1 { border-radius: 16px; }
.img-shape-2 { border-radius: 28px 8px 28px 8px; }
.img-shape-3 { border-radius: 50% 20% 50% 20%; }

/* TEXT */
.investment-card h4 {
  font-size: var(--text-lg);
  margin-bottom: 0.4rem;
}

.investment-desc {
  font-size: var(--text-sm);
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* STATS */
.investment-stats {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.investment-stats div {
  text-align: left;
}

.investment-stats strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.investment-stats span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .investment-grid {
    grid-template-columns: 1fr;
  }

  .investment-image {
    height: 200px;
  }
}


/* ================= FAQ SECTION ================= */


/* ===== FAQ ACCENT COLORS ===== */

:root[data-theme="dark"] {
  --faq-q-blue: #4f7cff;
  --faq-q-amber: #fbbf24;
  --faq-q-green: #34d399;
  --faq-q-neutral: #e5e7eb;
}

:root[data-theme="light"] {
  --faq-q-blue: #1f3cff;
  --faq-q-amber: #f59e0b;
  --faq-q-green: #10b981;
  --faq-q-neutral: #374151;
}


.faq-section {
  padding: 6rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

/* LEFT VISUAL */
.faq-visual {
  display: flex;
  justify-content: center;
}

.question-stack {
  position: relative;
  width: 220px;
  height: 320px;
}

.q {
  position: absolute;
  font-size: 4.5rem;
  font-weight: 700;
  opacity: 0.18;
}

/* Individual colors & positions */
.q1 { top: 0; left: 50%; color: #9ca3af; transform: translateX(-50%); }
.q2 { top: 60px; left: 20px; color: var(--brand-primary); }
.q3 { top: 120px; right: 20px; color: #f59e0b; }
.q4 { bottom: 60px; left: 40px; color: #111827; }
.q5 { bottom: 0; right: 60px; color: #22c55e; }

/* RIGHT CONTENT */
.faq-title {
  font-size: var(--text-3xl);
  margin-bottom: 0.5rem;
}

.faq-subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

/* ACCORDION */
.faq-accordion {
  border-top: 1px solid var(--border-subtle);
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 0;
  background: none;
  border: none;
  text-align: left;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  
}

.faq-question .icon {
  font-size: 1.4rem;
  color: var(--brand-primary);
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* ACTIVE STATE */
.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faq-visual {
    order: -1;
  }

  .question-stack {
    height: 240px;
  }
}


/* ================= QUESTION MARK ANIMATION ================= */

.q {
  position: absolute;
  font-size: 4.8rem;
  font-weight: 700;

  opacity: 0.55;
  animation: floatQ 10s ease-in-out infinite,
             pulseQ 6s ease-in-out infinite;

  will-change: transform, opacity;
}

/* Individual colors */
.q1 { top: 0; left: 50%; transform: translateX(-50%); color: var(--faq-q-neutral); }
.q2 { top: 60px; left: 10px; color: var(--faq-q-blue); animation-delay: 1s; }
.q3 { top: 120px; right: 15px; color: var(--faq-q-amber); animation-delay: 2s; }
.q4 { bottom: 70px; left: 40px; color: var(--faq-q-neutral); animation-delay: 3s; }
.q5 { bottom: 0; right: 50px; color: var(--faq-q-green); animation-delay: 4s; }


@keyframes floatQ {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-18px) scale(1.06); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes pulseQ {
  0%   { opacity: 0.35; }
  50%  { opacity: 0.75; }
  100% { opacity: 0.35; }
}


/* ================= HEADER ================= */

.site-header {
  background: var(--bg-main);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

/* BRAND */
.nav-brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 1.05rem;       /* BIGGER */
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* CTA */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-cta {
  background: var(--brand-primary);
  color: #ffffff;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  background: var(--brand-secondary);
  transform: translateY(-1px);
}

/* THEME TOGGLE */
.theme-toggle {
  background: none;
  border: none;
  font-size: 1.15rem;
  cursor: pointer;
  color: #fbbf24;
}

/* LIGHT THEME FIX */
[data-theme="light"] .nav-links a {
  color: rgba(17, 24, 39, 0.85);
}

/* MOBILE */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
}


.investment-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.investment-card-link:hover {
  text-decoration: none;
}
