/* ── Variables ──────────────────────────────────────────────────────────────── */
:root {
  --v2-purple:       #7c3aed;
  --v2-purple-light: #a78bfa;
  --v2-bg:           #030712;
  --v2-bg2:          rgb(16,18,23);
  --v2-bg3:          rgb(16,18,24);
  --v2-border:       rgba(255,255,255,0.08);
}

/* ── Navbar ─────────────────────────────────────────────────────────────────── */
.v2-nav {
  background: var(--v2-bg) !important;
  border-bottom: 1px solid var(--v2-border) !important;
  height: 68px;
}
.v2-nav .nav-link {
  color: #d1d5db !important;
  font-size: 15px;
  padding: 8px 14px !important;
  border-radius: 8px;
}
.v2-nav .nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.05);
}
.v2-nav .dropdown-menu {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 220px;
}
.v2-nav .dropdown-item {
  color: #d1d5db;
  padding: 8px 16px;
  font-size: 14px;
}
.v2-nav .dropdown-item:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.v2-nav .menuNumber {
  color: #d1d5db;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
}
.v2-nav .menuNumber:hover { color: #fff; }

/* .v2-nav-logo { height: auto; } */
/* .v2-nav-logo-full  { width: 100px; display: inline-block; } */
.v2-nav-logo-icon  { width: 36px;  display: none; }

@media (max-width: 560px) {
  .v2-nav-logo-full { display: none; }
  .v2-nav-logo-icon { display: inline-block; width: 40px; }
}

.v2-btn-demo {
  font-size: 14px;
  border-radius: 8px;
  padding: 0 20px;
  line-height: 1;
  height: 40px;
  display: inline-flex;
  align-items: center;
}
.v2-btn-login {
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  background: rgba(255,255,255,0.05);
  padding: 0 18px;
  line-height: 1;
  height: 40px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}
.v2-btn-login:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.v2-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--v2-bg);
}
.v2-hero-bg {
  position: absolute;
  inset: 0;
}
.v2-hero-vimeo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.v2-hero-vimeo-mobile { display: none; }
@media (max-width: 1080px) {
  .v2-hero-vimeo-desktop { display: none; }
  .v2-hero-vimeo-mobile  { display: block; }
  .v2-hero-vimeo-mobile .v2-hero-vimeo {
    width: 100%;
    min-width: unset;
    height: 177.78vw;
    min-height: 100%;
  }
}
.v2-hero-vimeo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  border: 0;
}
.v2-hero-content {
  z-index: 2;
  padding-bottom: 96px;
}
.v2-hero-h1 {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: 0px;
  line-height: 1.05;
}
.v2-hero-accent { color: var(--v2-purple-light); }
.v2-hero-desc {
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.7;
}
.v2-btn-learn {
  background-color: #fff;
  color: #111;
  border: none;
  font-size: 15px;
  border-radius: 12px;
  padding: 14px 28px;
  transition: background-color 0.2s, color 0.2s;
}
.v2-btn-learn:hover,
.v2-btn-learn:focus,
.v2-btn-learn:active {
  background-color: #e9e9e9 !important;
  color: #111 !important;
}
.v2-btn-book {
  background-color: var(--v2-purple);
  border: none;
  font-size: 15px;
  border-radius: 12px;
  padding: 14px 28px;
  color: #fff;
  transition: background-color 0.2s, color 0.2s;
}
.v2-btn-book:hover,
.v2-btn-book:focus,
.v2-btn-book:active {
  background-color: #6d28d9 !important;
  color: #fff !important;
}
.v2-btn-learn svg,
.v2-btn-book svg {
  transition: transform 0.25s ease;
}
.v2-btn-learn:hover svg,
.v2-btn-book:hover svg {
  transform: translateX(5px);
}

/* ── Partners Strip ─────────────────────────────────────────────────────────── */
.v2-partners-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  background-color: var(--v2-bg);
  padding: 24px 0;
}
@keyframes v2marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.v2-marquee {
  display: flex;
  width: max-content;
  animation: v2marquee 28s linear infinite;
  align-items: center;
}
.v2-marquee:hover { animation-play-state: paused; }
.v2-partner-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: 0.4;
  margin: 0 48px;
  flex-shrink: 0;
}

/* ── Industries ─────────────────────────────────────────────────────────────── */
.v2-industries {
  background-color: var(--v2-bg2);
  overflow: hidden;
  padding: 60px 0;
}
.v2-industries-h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.v2-scroll-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-industries-scroll {
  overflow-x: auto;
  scrollbar-width: none;
  padding-left: max(12px, calc((100vw - 1320px) / 2 + 12px));
  padding-right: 0;
}
.v2-industries-scroll::-webkit-scrollbar { display: none; }
.v2-industry-card { flex-shrink: 0; width: 410px; }
.v2-industry-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 450px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
.v2-industry-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.v2-industry-label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  padding: 20px;
}
.v2-industry-btn {
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  background: transparent;
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
}
.v2-industry-btn:hover { color: #fff; background: rgba(255,255,255,0.05); }

/* ── Impact ─────────────────────────────────────────────────────────────────── */
.v2-impact {
  background-color: var(--v2-bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0;
}
.v2-section-eyebrow {
  color: var(--v2-purple-light);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}
.v2-impact-h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
}
.v2-impact-desc {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 400;
}
.v2-stat-card {
  background-color: var(--v2-bg3);
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.v2-stat-card:hover { border-color: rgba(124,58,237,0.5); }
.v2-stat-card-desc {
  color: #9ca3af;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.v2-stat-number {
  color: #fff;
  font-weight: 900;
  font-size: 68px;
  letter-spacing: 0px;
  line-height: 1;
  margin-bottom: 10px;
}
.v2-stat-label {
  color: var(--v2-purple-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}

/* ── How It Works ───────────────────────────────────────────────────────────── */
.v2-howitworks {
  background-color: var(--v2-bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0;
}
.v2-platform-h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
}
.v2-platform-desc {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.v2-feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.v2-feature-title {
  font-size: 15px;
  margin-bottom: 4px;
}
.v2-feature-desc {
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}
.v2-orbit-wrap {
  position: relative;
  width: 480px;
  height: 480px;
}
.v2-orbit-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 340px;
  border-radius: 50%;
  filter: blur(70px);
}
.v2-orbit-ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.v2-orbit-ring-inner {
  position: absolute;
  inset: 44px;
  border-radius: 50%;
}
.v2-orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-orbit-center-logo { width: 60px; height: 60px; object-fit: contain; }
.v2-orbit-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
}
.v2-orbit-node-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgb(22,24,34);
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-orbit-node-label {
  color: #d1d5db;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.v2-orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.v2-footer { background-color: var(--v2-bg2); }
.v2-footer-logo { height: 25px; width: auto; display: block; }
.v2-footer-features { padding-left: 20px; }
.v2-footer-heading {
  font-size: 13px;
  letter-spacing: 1.5px;
}
.v2-app-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #d1d5db;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-app-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }
.v2-footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); }
.v2-copyright {
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 0;
}

/* Shared */
.v2-fl { color: #9ca3af; text-decoration: none; font-size: 15px; transition: color .15s; }
.v2-fl:hover { color: #fff; }
.v2-sb {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.v2-sb:hover { background: rgba(124,58,237,0.3); border-color: rgba(124,58,237,0.6); }

/* ── Page wrapper ───────────────────────────────────────────────────────────── */
.v2-page { background-color: var(--v2-bg); min-height: 100vh; overflow-x: hidden; }
.v2-main  { padding-top: 68px; }

/* ── Responsive: Tablet (≤ 991px) ──────────────────────────────────────────── */
@media (max-width: 991px) {
  /* Navbar — expand to full screen overlay when open */
  .v2-nav { height: auto; min-height: 68px; }
  .v2-nav .navbar-collapse {
    position: fixed;
    top: 68px;
    left: 0; right: 0; bottom: 0;
    background: var(--v2-bg);
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    overflow-y: auto;
    z-index: 1040;
  }
  .v2-nav .navbar-nav .nav-link { padding: 12px 8px !important; font-size: 16px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .v2-nav .navbar-nav .nav-item:last-child .nav-link { border-bottom: none; }
  .v2-nav .navbar-collapse .d-flex { margin-top: 20px !important; }

  /* Hero */
  .v2-hero-h1 { font-size: 38px; }
  .v2-hero-content { padding-bottom: 64px; }

  /* Impact */
  .v2-impact { padding: 60px 0; }
  .v2-impact-h2 { font-size: 28px; }
  .v2-stat-number { font-size: 52px; }

  /* How it works */
  .v2-howitworks { padding: 60px 0; }

  /* Industries */
  .v2-industry-card { width: 300px; }
  .v2-industry-img-wrap { height: 380px; }

  /* Footer */
  .v2-footer-features { padding-left: 0; }
}

/* ── Responsive: Mobile (≤ 767px) ──────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Navbar */
  .v2-btn-login { padding: 8px 14px; font-size: 13px; }

  /* Hero */
  .v2-hero { min-height: 70vh; align-items: center; }
  .v2-hero-h1 { font-size: 30px; line-height: 1.1; }
   .v2-hero-content { padding-bottom: 48px; padding-top: 300px; } 
  .v2-hero-desc { font-size: 14px; }
  .v2-btn-learn,
  .v2-btn-book { font-size: 14px; padding: 0 20px; height: 40px; }

  /* Partners */
  .v2-partner-logo { height: 26px; margin: 0 28px; }

  /* Industries */
  .v2-industries { padding: 40px 0; }
  .v2-industry-card { width: 260px; }
  .v2-industry-img-wrap { height: 320px; }
  .v2-industry-label { font-size: 18px; }

  /* Impact */
  .v2-impact { padding: 48px 0; }
  .v2-impact-h2 { font-size: 24px; }
  .v2-stat-card { padding: 20px 16px; }
  .v2-stat-number { font-size: 40px; }
  .v2-stat-card-desc { font-size: 13px; margin-bottom: 1.5rem; }

  /* How it works */
  .v2-howitworks { padding: 48px 0; }
  .v2-platform-h2 { font-size: 24px; }
  .v2-platform-desc { font-size: 14px; margin-bottom: 1.5rem; }
  .v2-feature-icon { width: 44px; height: 44px; }
  .v2-feature-title { font-size: 14px; }

  /* Footer — stack all columns vertically, center aligned */
  .v2-footer-features { padding-left: 0; }
  .v2-footer .col-6 { width: 100% !important; flex: 0 0 100% !important; max-width: 100% !important; }
  .v2-footer .row > div { text-align: center; }
  .v2-footer .v2-footer-logo { margin-left: auto; margin-right: auto; }
  .v2-footer .d-flex.flex-wrap.gap-2 { justify-content: center; }
  .v2-footer .list-unstyled { text-align: center; }
  .v2-footer .d-flex.gap-2 { justify-content: center; }
  .v2-footer-bottom .container {
    flex-direction: column !important;
    text-align: center;
    gap: 8px !important;
  }
  .v2-footer-bottom .d-flex { justify-content: center; }
}

/* ── Responsive: iPad (768px) — footer fix ─────────────────────────────────── */
@media (min-width: 768px) and (max-width: 900px) {
  .v2-footer .col-md-3 { width: 100% !important; flex: 0 0 100% !important; max-width: 100% !important; }
  .v2-footer .col-md-5 { width: 100% !important; flex: 0 0 100% !important; max-width: 100% !important; }
  .v2-footer .col-md-2 { width: 50% !important; flex: 0 0 50% !important; max-width: 50% !important; padding-left: 0 !important; }
  .v2-footer-features { padding-left: 0; }
  .v2-footer-bottom .container {
    flex-direction: column !important;
    text-align: center;
    gap: 8px !important;
  }
  .v2-footer-bottom .d-flex { justify-content: center; }
}

/* ── Responsive: Below 530px — impact cards full width ─────────────────────── */
@media (max-width: 530px) {
  .v2-impact .col-6 { width: 100% !important; flex: 0 0 100% !important; max-width: 100% !important; }
}

/* ── Responsive: Small Mobile (≤ 479px) ────────────────────────────────────── */
@media (max-width: 479px) {
  .v2-hero-h1 { font-size: 26px; }
  .v2-industry-card { width: 80vw; }
  .v2-industry-img-wrap { height: 280px; }
  .v2-stat-number { font-size: 36px; }
  .v2-impact-h2 { font-size: 22px; }
  .v2-btn-learn,
  .v2-btn-book {
    font-size: 13px;
    padding: 0 16px;
    height: 38px;
    width: auto;
  }
}

/* ── Calendly popup overlay darkening ───────────────────────────────────────── */
.calendly-overlay {
  background-color: rgba(0, 0, 0, 0.75) !important;
}
