/* ========================================
   VENTURES HARBOR — MAIN STYLESHEET
   ======================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy-900: #3983F6;
  --navy-800: #3983F6;
  --navy-700: #3983F6;
  --navy-600: #3983F6;
  --navy-500: #3983F6;
  --blue-400: #3983F6;
  --blue-300: #3983F6;
  --gold-400: #22c55e;
  --gold-500: #16a34a;
  --white: #ffffff;
  --gray-50: #fcfdff;
  --gray-100: #f4f7fb;
  --gray-200: #e8edf4;
  --gray-300: #d3dce8;
  --gray-400: #93a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --card-bg: #ffffff;
  --card-border: rgba(24, 58, 100, 0.12);
  --card-shadow: 0 4px 24px rgba(7, 26, 46, 0.08);
  --card-shadow-hover: 0 16px 48px rgba(7, 26, 46, 0.14);
  --font-main: "Outfit", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea {
  font-family: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
  background: var(--navy-700);
  border-radius: 3px;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-top {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
}
.logo-bottom {
  font-family: var(--font-main);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold-400);
}
.nav-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.45rem 1rem;
  flex: 1;
  max-width: 300px;
  color: var(--gray-300);
  transition: var(--transition);
}
.nav-search:focus-within {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.nav-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.85rem;
  width: 100%;
}
.nav-search input::placeholder {
  color: var(--gray-400);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.btn-create-venture {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-create-venture:hover {
  background: linear-gradient(135deg, var(--navy-600), #3983F6);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(57, 131, 246, 0.4);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.72) 40%,
    rgba(10, 22, 40, 0.35) 70%,
    rgba(10, 22, 40, 0.55) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(240, 192, 64, 0.6);
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120px) translateX(40px);
    opacity: 0;
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240, 192, 64, 0.12);
  border: 1px solid rgba(240, 192, 64, 0.35);
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease both;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(240, 192, 64, 0.6);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(240, 192, 64, 0);
  }
}
.hero-tagline {
  font-family: var(--font-main);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 400;
  color: var(--blue-300);
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  animation: fadeInDown 0.7s 0.1s ease both;
}
.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: fadeInDown 0.7s 0.15s ease both;
}
.hero-title-accent {
  background: linear-gradient(135deg, #3983F6, #3983F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 2.2rem;
  line-height: 1.75;
  animation: fadeInDown 0.7s 0.2s ease both;
}
.hero-highlight {
  color: var(--blue-300);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  animation: fadeInDown 0.7s 0.25s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-500) 100%);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(57, 131, 246, 0.35);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(57, 131, 246, 0.5);
  background: linear-gradient(135deg, #3983F6 0%, #3983F6 100%);
}
.btn-primary svg {
  transition: transform 0.3s ease;
}
.btn-primary:hover svg {
  transform: translateX(4px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
.hero-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInDown 0.7s 0.3s ease both;
}
.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}
.hf-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.hero-feature:hover .hf-icon {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold-400);
  color: var(--gold-400);
  transform: translateY(-3px);
}
.hero-feature span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s 0.8s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 2.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 3rem;
  position: relative;
}
.stat-item > * {
  display: inline;
}
.stat-number {
  font-family: var(--font-main);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
}
.stat-prefix,
.stat-suffix {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-400);
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   SECTION SHARED STYLES
   ======================================== */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gray-300),
    transparent
  );
}
.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy-800);
  white-space: nowrap;
}
.section-subtitle {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 0.2rem;
}
.section-header-text {
  text-align: center;
}

/* ========================================
   VENTURES SECTION
   ======================================== */
.ventures-section {
  padding: 5rem 0;
  background: var(--gray-50);
}

/* Filter Tabs */
.venture-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover {
  border-color: var(--navy-700);
  color: var(--navy-700);
}
.filter-btn.active {
  background: var(--navy-700);
  color: var(--white);
  border-color: var(--navy-700);
  box-shadow: 0 4px 12px rgba(26, 58, 107, 0.25);
}

/* Ventures Grid */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.venture-card {
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}
.venture-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-700), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.venture-card:hover::before {
  transform: scaleX(1);
}
.venture-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(26, 58, 107, 0.2);
}
.vc-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.vc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.vc-title-block {
  flex: 1;
  min-width: 0;
}
.vc-title {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.vc-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem;
}
.vc-tag {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 500;
}
.vc-sep {
  color: var(--gray-300);
  font-size: 0.7rem;
}
.vc-financials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: var(--gray-50);
  border-radius: 10px;
}
.vc-fin-item {
  text-align: center;
}
.vc-fin-value {
  display: block;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.2;
}
.vc-fin-label {
  display: block;
  font-size: 0.65rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.vc-progress-wrap {
  margin-bottom: 0.8rem;
}
.vc-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.vc-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--bar-color);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.vc-progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  animation: shimmer 2s ease infinite;
}
@keyframes shimmer {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.vc-progress-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.vc-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.vc-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}
.vc-actions {
  display: flex;
  gap: 0.6rem;
}
.btn-join {
  flex: 1;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-join:hover {
  background: linear-gradient(135deg, var(--navy-600), #3983F6);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(26, 58, 107, 0.3);
}
.btn-details {
  flex: 1;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-700);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}
.btn-details:hover {
  border-color: var(--navy-700);
  background: var(--gray-50);
}
.btn-details--full {
  flex: 1;
}

/* Partner card additions */
.vc-partner-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  padding: 0.6rem 0.8rem;
  background: var(--gray-50);
  border-radius: 10px;
}
.partner-rule {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 500;
}
.partner-info-icon {
  font-size: 0.7rem;
  color: var(--gray-400);
  cursor: help;
}
.partner-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
}
.partner-badge--green {
  background: #dcfce7;
  color: #16a34a;
}
.partner-badge--purple {
  background: #ede9fe;
  color: #7c3aed;
}
.partner-badge--orange {
  background: #fff7ed;
  color: #f97316;
}

.ventures-cta {
  text-align: center;
}
.btn-view-all {
  padding: 0.85rem 2.5rem;
  border-radius: 12px;
  background: transparent;
  border: 2px solid var(--navy-700);
  color: var(--navy-700);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.btn-view-all:hover {
  background: var(--navy-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 58, 107, 0.2);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(57, 131, 246, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hiw-header {
  text-align: center;
  margin-bottom: 4rem;
}
.hiw-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(240, 192, 64, 0.12);
  border: 1px solid rgba(240, 192, 64, 0.25);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.hiw-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.hiw-subtitle {
  font-size: 1rem;
  color: var(--gray-400);
}
.hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.hiw-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}
.hiw-step:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(57, 131, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.hiw-step-num {
  font-family: var(--font-main);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  line-height: 1;
}
.hiw-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(57, 131, 246, 0.3);
  transition: var(--transition);
}
.hiw-step:hover .hiw-step-icon {
  box-shadow: 0 12px 28px rgba(57, 131, 246, 0.5);
  transform: scale(1.05);
}
.hiw-step-title {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.hiw-step-desc {
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.6;
}
.hiw-connector {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  margin-top: 3rem;
  flex-shrink: 0;
}
.hiw-connector-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(57, 131, 246, 0.5),
    rgba(57, 131, 246, 0.2)
  );
}

/* Bottom row steps */
.hiw-bottom-steps {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.8rem;
}
.hiw-bottom-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.hiw-bottom-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hiw-bottom-step h4 {
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}
.hiw-bottom-step p {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ========================================
   WHY SECTION
   ======================================== */
.why-section {
  padding: 6rem 2rem;
  background: var(--white);
}
.why-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-700);
  background: rgba(26, 58, 107, 0.08);
  border: 1px solid rgba(26, 58, 107, 0.15);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.why-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy-900);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.why-title-accent {
  background: linear-gradient(135deg, var(--navy-700), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.why-cta {
  margin-top: 1.5rem;
}
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-100);
  background: var(--gray-50);
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(26, 58, 107, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}
.wc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wc-title {
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 0.4rem;
}
.wc-desc {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy-900);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-desc {
  font-size: 0.83rem;
  color: var(--gray-400);
  line-height: 1.65;
}
.footer-links-title {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.2rem;
}
.footer-links-list li {
  margin-bottom: 0.65rem;
}
.footer-links-list a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}
.footer-links-list a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}
.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.modal-close:hover {
  background: var(--gray-200);
  color: var(--gray-800);
}
.modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(26, 58, 107, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.modal-title {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
}
.modal-subtitle {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1.8rem;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
}
.form-group input,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--gray-800);
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
}
.modal-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ========================================
   TOAST
   ======================================== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1.5px solid #dcfce7;
  border-radius: 12px;
  padding: 0.85rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-in {
  animation: fadeInUp 0.6s ease both;
}
.animate-in-delay-1 {
  animation-delay: 0.1s;
}
.animate-in-delay-2 {
  animation-delay: 0.2s;
}
.animate-in-delay-3 {
  animation-delay: 0.3s;
}

/* Venture card hidden state for filter */
.venture-card.hidden {
  display: none;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
  padding: 5rem 0;
  background: var(--gray-50);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(15, 39, 64, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  transition: var(--transition, all 0.3s ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(26, 58, 107, 0.15);
}
.testimonial-quote {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 0.25rem;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--navy-800);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  min-height: 5.5em;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(15, 39, 64, 0.08);
  padding-top: 1rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 0.15rem;
}
.testimonial-author span {
  font-size: 0.75rem;
  color: var(--gray-500);
}
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .ventures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .hiw-steps {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hiw-connector {
    display: none;
  }
  .hiw-step {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

@media (max-width: 768px) {
  .nav-search {
    display: none;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-hamburger {
    display: flex;
  }
  .ventures-grid {
    grid-template-columns: 1fr;
  }
  .stats-container {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    padding: 0 1.5rem;
  }
  .hero-features {
    gap: 1.2rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .hiw-step {
    flex: 0 0 100%;
  }
  .why-right {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 1.2rem 3rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
