/* ============================
   Vision Boosters – Custom UI
   Subtile modernisation du design
   sans casser la base Webflow
   ============================ */

:root {
  --vb-primary: #5f64e1;
  --vb-primary-soft: rgba(95, 100, 225, 0.12);
  --vb-secondary: #dc5e6b;
  --vb-secondary-soft: rgba(220, 94, 107, 0.1);
  --vb-dark: #050816;
  --vb-surface: #070b1e;
  --vb-surface-alt: #0b1025;
  --vb-border-subtle: rgba(148, 163, 184, 0.18);
  --vb-text-main: #e5e7eb;
  --vb-text-soft: #9ca3af;
  --vb-text-strong: #f9fafb;
  --vb-radius-lg: 20px;
  --vb-radius-md: 14px;
  --vb-radius-pill: 999px;
  --vb-shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.45);
}

/* --------- Base & Layout --------- */

body.body {
  background: #020617;
  color: var(--vb-text-main);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Glow Orbs */
body.body::before,
body.body::after {
  content: "";
  position: fixed;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
  animation: orbFloat 25s infinite alternate ease-in-out;
}

body.body::before {
  background: var(--vb-primary);
  top: -10%;
  left: -10%;
}

body.body::after {
  background: var(--vb-secondary);
  bottom: -10%;
  right: -10%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10%, 15%) scale(1.1); }
}

/* Scroll Progress Bar */
.vb-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, var(--vb-primary), var(--vb-secondary));
  z-index: 9999;
  transition: width 0.1s ease-out;
}

.section,
.banner-div {
  position: relative;
}

.container,
.w-container,
.container-4,
.container-titre {
  max-width: 1160px;
}

.section.section-banner {
  padding-top: 6rem;
  padding-bottom: 5rem;
}

@media (max-width: 767px) {
  .section.section-banner {
    padding-top: 4.5rem;
    padding-bottom: 3.5rem;
  }
}

/* --------- Typography --------- */

.h1,
.h2,
.h3 {
  letter-spacing: -0.03em;
}

.h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--vb-text-strong);
}

.h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--vb-text-strong);
}

.h3 {
  font-size: clamp(1.25rem, 2.1vw, 1.5rem);
  line-height: 1.2;
}

.subtitle,
.grey,
.light-grey,
.white,
.blue-grey,
.paragraph-colonne-gauche-taille,
.text-avantages,
.smaller {
  line-height: 1.7;
  font-size: 0.97rem;
}

.grey,
.light-grey,
.blue-grey {
  color: var(--vb-text-soft);
}

.white {
  color: var(--vb-text-main);
}

/* Header Active Link */
.spark-nav-link.active {
  color: var(--vb-secondary) !important;
  font-weight: 700 !important;
  position: relative;
}

.spark-nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 2px;
  background: var(--vb-secondary);
  border-radius: 2px;
}

.light-blue,
.bleu-light,
.blue {
  color: var(--vb-primary);
}

/* Limiter la largeur des blocs de texte longs pour la lisibilité */
.set-width,
.set-width.light-grey,
.set-width.mobile-centered,
.texte-gauche p,
.texte-gauche .light-grey {
  max-width: 640px;
}

/* --------- Hero (accueil & pages internes) --------- */

.banner-div .subtitle {
  margin-top: 1.25rem;
}

.banner-btn-container {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

@media (max-width: 767px) {
  .banner-btn-container {
    justify-content: center;
  }
}

.video.embed-video img,
.image-phone.cover,
.image-a-droite img {
  border-radius: var(--vb-radius-lg);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.55);
  object-fit: cover;
}

/* --------- Boutons --------- */

/* --------- Glassmorphism Header --------- */
.spark-square-menu-with-centered-links {
  background: rgba(5, 8, 22, 0.7) !important;
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, padding 0.3s ease;
}

.spark-square-menu-with-centered-links.scrolled {
  background: rgba(5, 8, 22, 0.9) !important;
  padding: 0.5rem 0 !important;
}

/* --------- Premium Cards --------- */
.vb-card, .vb-premium-card {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--vb-radius-lg);
  padding: 2.5rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
              border-color 0.3s ease, 
              box-shadow 0.3s ease;
}

.vb-card:hover, .vb-premium-card:hover {
  transform: translateY(-8px);
  border-color: rgba(95, 100, 225, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
              0 0 20px rgba(95, 100, 225, 0.1);
}

.vb-gradient-text {
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.btn-3-outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--vb-shadow-soft);
}

.btn-3-outline:hover {
  border-color: var(--vb-primary);
  background: radial-gradient(circle at top left, rgba(95, 100, 225, 0.32), rgba(15, 23, 42, 0.85));
}

.text-block-15 {
  font-weight: 600;
}

/* --------- Cartes / blocs (services, avantages, packs) --------- */

.wrap-content-avantage,
.pack-formation-container,
.wrap-content-coeur,
.pack-container {
  border-radius: var(--vb-radius-lg);
  border: 1px solid var(--vb-border-subtle);
  background: radial-gradient(circle at top left, rgba(95, 100, 225, 0.08), rgba(15, 23, 42, 0.9));
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(16px);
}

.wrap-content-avantage:hover,
.pack-formation-container:hover,
.wrap-content-coeur:hover,
.pack-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--vb-shadow-soft);
  border-color: rgba(129, 140, 248, 0.9);
}

.wrap-content-avantage,
.wrap-content-coeur {
  padding: 1.4rem 1.3rem;
}

.pack-formation-container .pack-formation-info {
  padding: 1.2rem 1.3rem 1.35rem;
}

.forma-card,
.image-coeur-de-metier,
.image-composition img {
  border-radius: var(--vb-radius-md);
}

.les-avantages {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.les-avantages .h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.wrap-avantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.pack-mindeo-formation-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  margin-top: 2.2rem;
}

/* --------- Sections Promotion / CTA --------- */

.pack-cta-container._100-tablette,
.section.bg.less-padding.bg-lighter.calendly {
  border-radius: 32px 32px 0 0;
  background: radial-gradient(circle at top left, rgba(95, 100, 225, 0.28), #020617);
}

.pack-forma-cta-left {
  padding-right: 2.2rem;
}

@media (max-width: 991px) {
  .pack-forma-cta-left {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

.badge.relative {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  border-radius: var(--vb-radius-pill);
  background: rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  font-size: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

/* Calendly placeholder – full width on mobile */
.calendly-placeholder {
  max-width: 100%;
}

@media (max-width: 768px) {
  .calendly-placeholder {
    min-width: 100% !important;
    height: 520px !important;
  }
}

/* --------- Premium Footer --------- */

.vb-footer {
  background: radial-gradient(circle at top, #060b1e 0%, #000000 80%);
  border-top: 1px solid rgba(95, 100, 225, 0.2);
  color: var(--vb-text-soft);
  padding: 4rem 1rem 2rem;
  font-family: 'Outfit', sans-serif;
  position: relative;
  overflow: hidden;
}

.vb-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vb-primary), transparent);
  opacity: 0.6;
}

.vb-footer-container {
  max-width: 1160px;
  margin: 0 auto;
}

.vb-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .vb-footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.vb-brand-col {
  padding-right: 2rem;
}

.vb-footer-logo {
  height: 80px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.vb-footer-logo:hover {
  transform: scale(1.02);
}

.vb-footer-desc {
  line-height: 1.7;
  font-size: 0.95rem;
  color: var(--vb-text-soft);
  max-width: 400px;
}

.vb-footer-title {
  color: var(--vb-text-strong);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.vb-footer-links, .vb-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vb-footer-links li, .vb-footer-contact li {
  margin-bottom: 1rem;
}

.vb-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.6;
}

.vb-contact-icon {
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 0.2rem;
}

.vb-footer-link {
  color: var(--vb-text-soft);
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
}

.vb-footer-links .vb-footer-link::before {
  content: '→';
  margin-right: 8px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.25s ease;
  color: var(--vb-primary);
}

.vb-footer-link:hover {
  color: var(--vb-primary);
  transform: translateX(4px);
}

.vb-footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.vb-footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .vb-footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

.vb-social-icons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.vb-social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--vb-text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vb-social-icons a:hover {
  background: linear-gradient(135deg, var(--vb-primary), var(--vb-secondary));
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 20px rgba(95, 100, 225, 0.4);
}

.vb-footer-copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--vb-text-soft);
}

/* --------- Premium Home Sections --------- */

.vb-premium-section {
  position: relative;
  padding: 6rem 0;
  background-color: transparent; /* Assuming container handles main bg */
  overflow: hidden;
  z-index: 1;
}

/* Subtle glowing orb backgrounds for depth */
.vb-premium-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;
  height: 70vh;
  background: radial-gradient(circle, rgba(95, 100, 225, 0.08) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.vb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.vb-section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.vb-section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vb-text-main);
  letter-spacing: -0.02em;
}

.vb-section-title .vb-gradient-text {
  background: linear-gradient(135deg, var(--vb-primary), var(--vb-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vb-section-title p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--vb-text-soft);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Base Glassmorphism Card System */
.vb-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.vb-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--vb-primary), var(--vb-secondary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vb-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(95, 100, 225, 0.1);
  border-color: rgba(95, 100, 225, 0.3);
}

.vb-card:hover::before {
  opacity: 1;
}

.vb-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.vb-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vb-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .vb-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .vb-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vb-grid-3, .vb-grid-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Card Content: Avantages List-style */
.vb-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(95, 100, 225, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(95, 100, 225, 0.2);
  transition: transform 0.3s ease;
}

.vb-card:hover .vb-icon-box {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(95, 100, 225, 0.2);
}

.vb-icon-box img {
  width: 32px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(95, 100, 225, 0.5));
}

.vb-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--vb-text-strong);
}

.vb-card p {
  color: var(--vb-text-soft);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Extended Card Content: Services (Images included) */
.vb-service-card {
  padding: 0;
  text-decoration: none; /* In case it's an anchor tag */
  display: block;
}

.vb-service-card .vb-card-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.vb-service-card .vb-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vb-service-card:hover .vb-card-img-wrapper img {
  transform: scale(1.08);
}

.vb-service-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vb-service-content h3 {
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.vb-service-card:hover .vb-service-content h3 {
  color: var(--vb-primary);
}

.vb-service-content .vb-desc {
  margin-bottom: 1.5rem;
  flex: 1;
}

.vb-card-action {
  display: flex;
  align-items: center;
  color: var(--vb-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.vb-card-action .vb-arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.vb-service-card:hover .vb-card-action {
  opacity: 1;
  letter-spacing: 0.5px;
}

.vb-service-card:hover .vb-card-action .vb-arrow {
  transform: translateX(6px);
}

/* --------- Divers & Accessibilité --------- */

/* Corrige les commentaires invalides éventuels // dans le CSS inline en les
   laissant être écrasés par des règles valides ici */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: rgba(15, 23, 42, 0.85);
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--vb-primary), var(--vb-secondary));
}

ul.list {
  padding-left: 1.1rem;
}

ul.list li {
  margin-bottom: 0.35rem;
}

.quote {
  border-left: 3px solid rgba(129, 140, 248, 0.7);
  padding-left: 1rem;
}

/* Petits ajustements sur les sections grises pour mieux contraster */
.section.light-grey,
.section.white-bg,
.section.bg-lighter {
  background-color: rgba(15, 23, 42, 0.96);
}


/* --------- Premium AI Chatbot --------- */

.vb-assistant-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 10000;
  font-family: 'Outfit', sans-serif;
}

.vb-assistant-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vb-primary), var(--vb-secondary));
  box-shadow: 0 8px 25px rgba(95, 100, 225, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.vb-assistant-button:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(95, 100, 225, 0.6);
}

.vb-assistant-button i {
  color: white;
  font-size: 24px;
}

.vb-chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  max-width: calc(100vw - 40px);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--vb-border-subtle);
  border-radius: 20px;
  box-shadow: var(--vb-shadow-soft);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.vb-chat-header {
  padding: 20px;
  background: linear-gradient(90deg, var(--vb-primary-soft), transparent);
  border-bottom: 1px solid var(--vb-border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vb-chat-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--vb-text-strong);
  display: flex;
  align-items: center;
  gap: 10px;
}

.vb-chat-close {
  cursor: pointer;
  color: var(--vb-text-soft);
  transition: color 0.3s ease;
}

.vb-chat-close:hover {
  color: var(--vb-secondary);
}

.vb-chat-body {
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vb-chat-msg {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.95rem;
  max-width: 85%;
  line-height: 1.5;
}

.vb-msg-bot {
  background: rgba(95, 100, 225, 0.1);
  color: var(--vb-text-main);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.vb-chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.vb-chat-opt {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--vb-border-subtle);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--vb-text-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}

.vb-chat-opt:hover {
  background: var(--vb-primary-soft);
  border-color: var(--vb-primary);
  color: var(--vb-text-strong);
}

.vb-chat-footer {
  padding: 15px;
  border-top: 1px solid var(--vb-border-subtle);
  background: rgba(5, 8, 22, 0.5);
}

.vb-chat-input-wrap {
  display: flex;
  gap: 10px;
  position: relative;
}

.vb-chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--vb-border-subtle);
  border-radius: 12px;
  padding: 10px 40px 10px 12px;
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.vb-chat-input:focus {
  border-color: var(--vb-primary);
}

.vb-chat-send {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--vb-primary);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.vb-chat-send:hover {
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 480px) {
  .vb-chat-window {
    width: calc(100vw - 30px);
    right: -10px;
    bottom: 70px;
  }
}

/* --------- Partners Marquee --------- */

.vb-partners-section {
  padding: 6rem 0;
  background: radial-gradient(circle at center, rgba(95, 100, 225, 0.05) 0%, transparent 70%);
  border-top: 1px solid var(--vb-border-subtle);
  border-bottom: 1px solid var(--vb-border-subtle);
  position: relative;
  overflow: hidden;
}

.vb-partners-wrapper {
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.vb-partners-slider {
  display: flex;
  width: max-content;
  animation: scroll 45s linear infinite;
  gap: 60px;
  align-items: center;
  padding: 20px 0;
}

.vb-partner-logo {
  width: 180px;
  height: 90px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vb-partner-logo:hover {
  filter: grayscale(0) opacity(1) drop-shadow(0 0 15px rgba(95,100,225,0.3));
  transform: translateY(-8px) scale(1.08);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .vb-partners-section {
    padding: 4rem 0;
  }
  .vb-partner-logo {
    width: 130px;
    height: 60px;
  }
  .vb-partners-slider {
    gap: 40px;
  }
}

/* --------- Ambient Background Orbs --------- */

.vb-bg-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: #050816; /* Base dark background */
}

.vb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.vb-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--vb-primary), transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.vb-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--vb-secondary), transparent 70%);
  bottom: 0%;
  left: -10%;
  animation-delay: -5s;
}

.vb-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #4f46e5, transparent 70%);
  top: 40%;
  right: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 100px) scale(1.1); }
  100% { transform: translate(-30px, -50px) scale(0.9); }
}

@media (max-width: 768px) {
  .vb-orb {
    filter: blur(50px);
    opacity: 0.3;
  }
  .vb-orb-1 { width: 300px; height: 300px; }
  .vb-orb-2 { width: 350px; height: 350px; }
  .vb-orb-3 { width: 250px; height: 250px; }
}

/* --------- Contact form (Portfolio + API locale) --------- */

.vb-contact-form-wrap label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vb-text-soft);
  margin-bottom: 0.35rem;
}

.vb-contact-form-wrap input[type="text"],
.vb-contact-form-wrap input[type="email"],
.vb-contact-form-wrap input[type="tel"],
.vb-contact-form-wrap textarea,
.vb-contact-form-wrap select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--vb-radius-md);
  border: 1px solid var(--vb-border-subtle);
  background: rgba(15, 23, 42, 0.65);
  color: var(--vb-text-strong);
  font-size: 1rem;
  margin-bottom: 0;
}

.vb-contact-form-wrap input:focus,
.vb-contact-form-wrap textarea:focus,
.vb-contact-form-wrap select:focus {
  outline: none;
  border-color: rgba(95, 100, 225, 0.55);
  box-shadow: 0 0 0 3px var(--vb-primary-soft);
}

.vb-contact-form-wrap textarea {
  min-height: 140px;
  resize: vertical;
}

.vb-contact-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.vb-contact-form-status {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--vb-radius-md);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 600;
  border: 1px solid transparent;
  white-space: pre-line;
  min-height: 0;
}

.vb-contact-form-status:empty {
  display: none;
  margin: 0;
  padding: 0;
  min-height: 0;
  border: none;
}

.vb-contact-form-status--ok {
  color: #ecfdf5;
  background: linear-gradient(
    145deg,
    rgba(16, 185, 129, 0.45) 0%,
    rgba(5, 150, 105, 0.35) 100%
  );
  border-color: rgba(110, 231, 183, 0.85);
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.25),
    0 8px 24px rgba(16, 185, 129, 0.12);
}

.vb-contact-form-status--warn {
  color: #fffbeb;
  font-weight: 600;
  background: rgba(245, 158, 11, 0.35);
  border-color: rgba(252, 211, 77, 0.75);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.12);
}

.vb-contact-form-status--error {
  color: #fef2f2;
  font-weight: 600;
  background: rgba(220, 38, 38, 0.38);
  border-color: rgba(252, 165, 165, 0.7);
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.1);
}
