/* ============================================================
   VENTIA LANDING — Custom CSS (Child Theme)
   Scope: .vl (ventia-landing wrapper)
   ============================================================ */

/* ---------- Reset within landing ---------- */
.vl, .vl * { box-sizing: border-box; }
.vl img { display: block; max-width: 100%; }
.vl a { text-decoration: none; }
.vl ul, .vl ol { list-style: none; padding: 0; margin: 0; }
.vl button { cursor: pointer; }

/* Complete reset of Gutenberg block defaults inside .vl to prevent parent theme styles from bleeding in */
.vl :where(.wp-block-group, .wp-block-heading, .wp-block-paragraph, .wp-block-image, figure) {
  margin: 0;
  padding: 0;
  max-width: none;
}
.vl .wp-block-group,
.vl figure {
  box-sizing: border-box !important;
}

/* Page-level override for blank template and general full-width content */
.wp-site-blocks,
.wp-block-post-content,
.entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Remove default Gutenberg block constraint for the .vl element specifically */
.is-layout-constrained > .vl {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ---------- CSS Variables ---------- */
:root {
  --v-blue: #1d4ed8;
  --v-blue-l: #2563eb;
  --v-blue-ring: #93c5fd;
  --v-black: #000;
  --v-white: #fff;
  --v-gray-50: #f9fafb;
  --v-gray-200: #e5e7eb;
  --v-gray-400: #9ca3af;
  --v-gray-600: #4b5563;
  --v-gray-700: #374151;
  --v-gray-800: #1f2937;
  --v-green: #25D366;
}

/* Offsets the fixed navbar when the WordPress admin bar is present */
body.admin-bar .vl-nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .vl-nav {
    top: 46px;
  }
}

/* ---------- Font helpers ---------- */
.vl .f-bebas    { font-family: "Bebas Neue", sans-serif; font-weight: 400; }
.vl .f-inconsolata { font-family: "Inconsolata", monospace; font-weight: 400; }
.vl .f-anton    { font-family: "Anton", sans-serif; font-weight: 400; }
.vl .f-teko     { font-family: "Teko", sans-serif; font-weight: 400; }
.vl .f-roboto-mono { font-family: "Roboto Mono", monospace; font-weight: 700; }
.vl .f-nunito   { font-family: "Nunito", sans-serif; font-weight: 400; }

/* ============================================================
   NAVBAR
   ============================================================ */
.vl-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: #fff !important;
  border-bottom: 1px solid var(--v-gray-200);
  height: 48px !important;
  padding: 0 !important;
  margin: 0 !important;
}
.vl-nav-inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center !important;
  height: 48px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}
.vl-nav-inner > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (min-width: 640px) {
  .vl-nav-inner {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .vl-nav-inner {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  .vl-nav-inner { grid-template-columns: 1fr auto !important; }
}
.vl-nav-logo { display: flex; align-items: center; }
.vl-nav-logo figure,
.vl-nav-logo .wp-block-image {
  margin: 0;
  display: flex;
  align-items: center;
}
.vl-nav-logo img {
  height: 40px !important;
  width: auto !important;
  max-width: none !important;
  aspect-ratio: auto !important;
}
.vl-nav-links {
  display: flex; justify-content: center; align-items: center; gap: 1.5rem;
}
@media (max-width: 767px) { .vl-nav-links { display: none; } }
.vl-nav-links a {
  font-family: "Inconsolata", monospace; font-size: 1.05rem; color: var(--v-gray-700);
  transition: all 0.2s; letter-spacing: 0.03em;
  padding: 4px 0 2px;
  border-bottom: 2px solid transparent;
}
.vl-nav-links a:hover, .vl-nav-links a.active {
  color: var(--v-black);
  font-weight: 700;
  border-bottom: 2px solid var(--v-black);
}
.vl-nav-actions {
  display: flex; justify-content: flex-end; align-items: center; gap: 0.75rem;
}
@media (max-width: 767px) { .vl-nav-actions { display: none; } }
.vl-btn-contact {
  font-family: "Inconsolata", monospace; font-size: 0.95rem; font-weight: 700;
  border: 1.5px solid var(--v-black); color: var(--v-black);
  padding: 0.5rem 1.1rem; border-radius: 4px;
  display: flex; align-items: center; gap: 0.375rem;
  transition: all 0.2s;
}
.vl-btn-contact:hover { background: #f5f7ff; }
.vl-btn-login {
  font-family: "Inconsolata", monospace; font-size: 0.95rem; font-weight: 700;
  background: var(--v-black); color: #fff;
  padding: 0.5rem 1.1rem; border-radius: 4px; transition: all 0.2s;
}
.vl-btn-login:hover { background: #222; }
.vl-hamburger {
  display: none; background: none; border: none; padding: 0.25rem;
  color: var(--v-gray-700);
}
@media (max-width: 767px) { .vl-hamburger { display: flex; align-items: center; } }
.vl-hamburger svg { width: 24px; height: 24px; }
.vl-mobile-menu {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--v-gray-200);
  padding: 0.75rem 1rem; gap: 0;
}
.vl-mobile-menu.open { display: flex; }
.vl-mobile-menu a {
  font-family: "Inconsolata", monospace; font-size: 0.9rem; color: var(--v-gray-700);
  padding: 0.625rem 0; border-bottom: 1px solid #f3f4f6; display: block;
}

/* ============================================================
   HERO
   ============================================================ */
.vl-hero {
  background: #fff; min-height: 100vh;
  display: flex; flex-direction: column; padding-top: 48px;
}
.vl-hero-inner {
  max-width: 72rem; width: 100%; margin: 0 auto; padding: 1.5rem;
  display: flex; flex: 1; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
@media (min-width: 768px) {
  .vl-hero-inner { flex-direction: row; }
}
.vl-hero-text { width: 100%; text-align: center; }
@media (min-width: 768px) { .vl-hero-text { width: 50%; text-align: left; } }

.vl-hero-h1 {
  font-family: "Bebas Neue", sans-serif; font-weight: 700;
  font-size: 2.5rem; line-height: 1.1;
  margin-top: 0 !important;
  margin-bottom: 0.25rem !important;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centered on mobile */
}
@media (min-width: 768px) { 
  .vl-hero-h1 { 
    font-size: 4.5rem; 
    align-items: flex-start; /* Left-aligned on desktop */
  } 
}
.vl-hero-h1.h1-black-wrap,
.editor-styles-wrapper .vl-hero-h1.h1-black-wrap {
  margin-top: 0 !important;
  margin-bottom: 0.25rem !important;
}
.vl-hero-h1.h1-blue-wrap,
.editor-styles-wrapper .vl-hero-h1.h1-blue-wrap {
  margin-top: 0 !important;
  margin-bottom: 1.5rem !important;
}
.vl-hero-h1 .h1-black {
  background: var(--v-black) !important; color: #fff !important; padding: 0.5rem; display: inline-block; margin-bottom: 0 !important;
}
.vl-hero-h1 .h1-blue {
  background: #1d4ed8 !important; color: #fff !important; padding: 0.5rem; display: inline-block;
}

/* Gutenberg Editor RichText active selection & focus resets */
.editor-styles-wrapper .vl-hero-h1 .h1-black,
.editor-styles-wrapper .vl-hero-h1 [data-rich-text-format-boundary] .h1-black,
.editor-styles-wrapper .vl-hero-h1 .h1-black[data-rich-text-format-boundary] {
  background: var(--v-black) !important;
  background-color: var(--v-black) !important;
  color: #fff !important;
}

.editor-styles-wrapper .vl-hero-h1 .h1-blue,
.editor-styles-wrapper .vl-hero-h1 [data-rich-text-format-boundary] .h1-blue,
.editor-styles-wrapper .vl-hero-h1 .h1-blue[data-rich-text-format-boundary] {
  background: #1d4ed8 !important;
  background-color: #1d4ed8 !important;
  color: #fff !important;
}


.vl-hero-p {
  font-family: "Inconsolata", monospace; font-size: 1.125rem;
  color: var(--v-gray-600); line-height: 1.7; margin-bottom: 1.5rem;
}
.vl-hero-cta {
  font-family: "Inconsolata", monospace;
  font-size: 1.125rem;
  font-weight: 600;
  background-color: #1d4ed8;
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 0 0 2px #60a5fa;
  transition: all 0.3s ease;
  cursor: pointer;
}
.vl-hero-cta:hover {
  background-color: #000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 0 0 2px #000;
}

.vl-hero-img { width: 100%; display: flex; justify-content: center; }
@media (min-width: 768px) { .vl-hero-img { width: 50%; } }
.vl-hero-img img { width: 100%; max-width: 480px; object-fit: contain; }

/* ============================================================
   MESSAGE CAROUSEL
   ============================================================ */
.vl-carousel { overflow: hidden; text-align: center; padding: 0; margin-top: 1rem; margin-bottom: 0; width: 100%; }
.vl-carousel-title {
  font-family: "Roboto Mono", monospace; font-weight: 700;
  font-size: 0.875rem; color: var(--v-gray-800);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem;
}
.vl-carousel-row { display: flex; gap: 1rem; width: max-content; padding: 0 0.5rem; margin-bottom: 0.25rem; }
.vl-carousel-row-1 { animation: vl-scroll-l 30s linear infinite; }
.vl-carousel-row-2 { animation: vl-scroll-r 30s linear infinite; animation-delay: -15s; }
@keyframes vl-scroll-l { from { transform: translateX(0); } to { transform: translateX(-25%); } }
@keyframes vl-scroll-r { from { transform: translateX(-25%); } to { transform: translateX(0); } }
.vl-pill {
  flex-shrink: 0;
  background-color: #1d4ed8;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 2px; /* rounded-sm */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
  min-width: 220px;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-align: center;
  white-space: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.vl-stats {
  background: var(--v-black); padding: 4rem 1rem;
  display: flex; align-items: center; justify-content: center;
}
.vl-stats-inner { max-width: 56rem; width: 100%; text-align: center; margin: 0 auto; }
.vl-stats-h2 {
  font-family: "Teko", sans-serif; font-weight: 400;
  color: #fff; margin-bottom: 0.25rem; line-height: 1;
  font-size: 2.25rem;
}
@media (min-width: 768px) { .vl-stats-h2 { font-size: 6rem; } }
.vl-stats-h2 .stat-highlight { color: #1d4ed8; }
.vl-stats-desc { color: var(--v-gray-400); margin-bottom: 2rem; font-size: 0.95rem; }
.vl-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; font-family: "Inconsolata", monospace;
}
@media (min-width: 768px) { .vl-stats-grid { grid-template-columns: repeat(4,1fr); } }
.vl-stat-number {
  font-size: 4.5rem; font-weight: 800; color: #1d4ed8;
  line-height: 1; display: block;
}
.vl-stat-label { color: #ffffff; font-size: 1rem; line-height: 1.3; margin-top: 0.25rem; }

/* ============================================================
   FEATURES CARDS (horizontal scroll)
   ============================================================ */
.vl-features { background: #fff; padding: 4rem 0; }
.vl-features-inner { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.vl-features-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem;
}
.vl-features-title {
  font-family: "Anton", sans-serif; font-weight: 400;
  font-size: 3rem; color: var(--v-black); line-height: 1;
  margin: 0 0 0.25rem 0;
}
.vl-features-subtitle {
  font-family: "Inconsolata", monospace; font-size: 1.25rem; color: var(--v-gray-400);
  margin: 0;
}
.vl-features-scroll {
  display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 1rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.vl-features-scroll::-webkit-scrollbar { display: none; }
.vl-feature-card {
  flex-shrink: 0;
  width: 18rem; /* w-72 */
  height: 20rem; /* h-80 */
  background: var(--v-black); border-radius: 8px;
  padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between;
  /* Scroll Animation Initial State */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.vl-feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.vl-feature-card-top { display: flex; flex-direction: column; }
.vl-feature-card-title {
  font-family: "Inconsolata", monospace; font-weight: 700;
  font-size: 1.1rem; color: #fff; margin-bottom: 1rem; text-align: left;
}
.vl-feature-card-icon {
  display: flex; justify-content: center; margin-bottom: 1rem;
}
.vl-feature-card-icon svg { width: 48px; height: 48px; color: #fff; fill: #fff; }
.vl-feature-card hr { border: 0; border-top: 1px solid #d1d5db; margin: 0; width: 100%; }
.vl-feature-card-desc {
  font-family: "Inconsolata", monospace; font-size: 0.875rem;
  color: #ffffff; text-align: left; line-height: 1.6;
}

/* ============================================================
   Gutenberg Editor overrides for Features Section
   ============================================================ */
/* Force wide/full-width container in editor */
.editor-styles-wrapper .wp-block-group.vl-features {
  max-width: none !important;
  width: 100% !important;
}
.editor-styles-wrapper .vl-features-inner {
  max-width: 80rem !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* Specific spacing control inside features header in editor */
.editor-styles-wrapper .vl-features-header,
.editor-styles-wrapper .vl-features-header .wp-block-group {
  margin-bottom: 1rem !important;
  margin-top: 0 !important;
}
.editor-styles-wrapper .vl-features-title {
  margin: 0 0 0.25rem 0 !important;
}
.editor-styles-wrapper .vl-features-subtitle {
  margin: 0 !important;
  color: var(--v-gray-400) !important;
}

/* Card scroll container layout overrides in editor */
.editor-styles-wrapper .vl-features-scroll {
  display: flex !important;
  flex-direction: row !important;
  gap: 1rem !important;
  overflow-x: auto !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 1rem !important;
}
.editor-styles-wrapper .vl-features-scroll > .wp-block {
  flex-shrink: 0 !important;
  width: 18rem !important;
  height: 20rem !important;
  margin: 0 !important;
}

/* Force card visibility and solid background under editing in editor */
.editor-styles-wrapper .vl-feature-card {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  background: var(--v-black) !important;
  background-color: var(--v-black) !important;
  border-radius: 8px !important;
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

/* Prevent white-out/disappearance on focused format states */
.editor-styles-wrapper .vl-feature-card .vl-feature-card-title,
.editor-styles-wrapper .vl-feature-card .vl-feature-card-desc,
.editor-styles-wrapper .vl-feature-card [data-rich-text-format-boundary] {
  color: #ffffff !important;
}
.editor-styles-wrapper .vl-feature-card [data-rich-text-placeholder] {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ============================================================
   FEATURES GRID (3 Steps)
   ============================================================ */
.vl-steps {
  background: var(--v-black);
  color: #fff;
  padding: 6rem 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.vl-steps-inner {
  max-width: 80rem !important;
  width: 100% !important;
  margin: 0 auto !important;
  display: block !important;
}
.vl-steps-header {
  margin-bottom: 3rem !important;
  text-align: right !important;
  display: block !important;
  width: 100% !important;
}
.vl-steps-h1 {
  font-family: "Bebas Neue", sans-serif; font-weight: 700;
  font-size: 3rem; color: #fff; background-color: #1d4ed8;
  display: inline-block; padding: 0.25rem 0.75rem; line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) { .vl-steps-h1 { font-size: 3.75rem; } }
.vl-steps-h1-wrap {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
}
.vl-steps-h1-span {
  display: inline-block;
  white-space: nowrap;
  width: 0;
  transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.vl-steps-h1-span.visible {
  width: 100%;
}
.vl-steps-subtitle {
  font-family: "Inconsolata", monospace; font-size: 1.25rem;
  font-weight: 700; color: var(--v-gray-400); margin-top: 0.5rem;
  margin-bottom: 0;
}
.vl-steps-subtitle-wrap {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
}
.vl-steps-subtitle-span {
  display: inline-block;
  white-space: nowrap;
  width: 0;
  transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.3s;
}
.vl-steps-subtitle-span.visible {
  width: 100%;
}
.vl-steps-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .vl-steps-grid { grid-template-columns: repeat(3,1fr); } }
.vl-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.vl-step.visible {
  opacity: 1;
  transform: translateY(0);
}
.vl-step-icon-wrap {
  width: 8rem; height: 8rem; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; position: relative;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.vl-step-icon-wrap:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(29, 78, 216, 0.4);
}
.vl-step-num {
  position: absolute; top: -0.5rem; left: -0.5rem;
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: #1d4ed8; display: flex; align-items: center; justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}
.vl-step-num span { color: #fff; font-weight: 700; font-size: 0.9rem; }
.vl-step-icon { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.vl-step-icon svg { width: 64px; height: 64px; color: #ffffff; }
.vl-step-h2 {
  font-family: "Inconsolata", monospace; font-size: 1.35rem; font-weight: 700;
  margin-bottom: 0.25rem !important; white-space: nowrap; color: #ffffff;
}
.vl-step-p {
  font-family: "Inconsolata", monospace; font-size: 0.95rem; color: #ffffff; line-height: 1.6;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.5s;
}
.vl-step.visible .vl-step-p {
  opacity: 1;
}

/* ============================================================
   Gutenberg Editor overrides for Steps Section
   ============================================================ */
/* Force wide/full-width container in editor */
.editor-styles-wrapper .wp-block-group.vl-steps {
  max-width: none !important;
  width: 100% !important;
  padding: 6rem 1rem !important;
  display: flex !important;
  justify-content: center !important;
  background: var(--v-black) !important;
}
.editor-styles-wrapper .vl-steps-inner {
  max-width: 80rem !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* Correct displacement by forcing width: auto on title and subtitle spans inside the editor */
.editor-styles-wrapper .vl-steps-h1-span,
.editor-styles-wrapper .vl-steps-subtitle-span {
  width: auto !important;
  white-space: normal !important;
  display: inline-block !important;
}

/* Perfect alignment and spacing inside steps header in editor */
.editor-styles-wrapper .vl-steps-header {
  margin-top: 0 !important;
  margin-bottom: 3rem !important;
  text-align: right !important;
  width: 100% !important;
}
.editor-styles-wrapper .vl-steps-subtitle {
  margin-top: 0.5rem !important;
  margin-bottom: 0 !important;
}

/* Grid layout and column flow overrides for steps section in editor */
.editor-styles-wrapper .vl-steps-grid {
  margin-top: 0 !important;
  display: grid !important;
  gap: 2.5rem !important;
}
.editor-styles-wrapper .vl-steps-grid > .wp-block {
  margin: 0 !important;
}

/* Force step blocks to remain solid white and fully visible at all times in the editor */
.editor-styles-wrapper .vl-step {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.editor-styles-wrapper .vl-step-p {
  opacity: 1 !important;
  color: #ffffff !important;
  transition: none !important;
}
.editor-styles-wrapper .vl-step-h2 {
  color: #ffffff !important;
}
.editor-styles-wrapper .vl-step [data-rich-text-format-boundary] {
  color: #ffffff !important;
  background-color: transparent !important;
}
.editor-styles-wrapper .vl-step [data-rich-text-placeholder] {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.vl-faq { background: #fff; padding: 4rem 1rem; }
.vl-faq-inner { max-width: 48rem; margin: 0 auto; }
.vl-faq-title {
  background: var(--v-blue-l); color: #fff; text-align: center;
  font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem;
  padding: 0.5rem 1rem;
}
@media (min-width: 768px) { .vl-faq-title { font-size: 1.875rem; } }
.vl-faq-item {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 0.5rem;
  border-bottom: none !important;
}
.vl-faq-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 9999px;
}
.vl-faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1rem; background: none; border: none; text-align: left;
  cursor: pointer;
}
.vl-faq-question {
  font-family: "Inconsolata", monospace; font-weight: 700 !important; font-size: 1.125rem !important;
  color: var(--v-black); flex: 1; margin-right: 1rem;
}
.vl-faq-question span {
  display: inline-block;
  white-space: pre;
}
.vl-faq-icon { font-size: 1.25rem; font-weight: 700; color: var(--v-black); user-select: none; }
.vl-faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.vl-faq-answer.open { max-height: 20rem; }
.vl-faq-answer-inner {
  padding: 0.5rem 1rem 1rem !important;
  font-family: "Inconsolata", monospace; font-size: 1.125rem !important;
  font-weight: 400 !important; color: var(--v-black) !important; line-height: 1.6;
}
.vl-faq-more-wrap { text-align: center; margin-top: 2rem; }
.vl-faq-more-btn {
  display: inline-block; padding: 0.75rem 1.5rem;
  border: 2px solid var(--v-black); border-radius: 9999px;
  font-weight: 600; font-size: 1rem; background: none; color: var(--v-black);
  cursor: pointer; transition: all 0.2s;
}
.vl-faq-more-btn:hover { background: var(--v-black); color: #fff; }
.vl-faq-item.hidden { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.vl-footer { background: var(--v-black); color: #fff; }
.vl-footer-inner {
  max-width: 80rem; margin: 0 auto; padding: 1.5rem 1rem;
  display: flex; flex-direction: column; gap: 1rem;
  align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .vl-footer-inner { flex-direction: row; } }
.vl-footer-links {
  display: flex; flex-direction: column; gap: 0.75rem; align-items: center;
  font-family: "Inconsolata", monospace; font-size: 0.8rem; color: #d1d5db;
}
@media (min-width: 640px) {
  .vl-footer-links { flex-direction: row; gap: 0; }
}
.vl-footer-links a { color: #d1d5db; transition: color 0.2s; }
.vl-footer-links a:hover { color: #fff; }
.vl-footer-sep { color: #6b7280; margin: 0 0.75rem; display: none; }
@media (min-width: 640px) { .vl-footer-sep { display: inline; } }
.vl-footer-copy {
  font-family: "Inconsolata", monospace; font-size: 0.8rem; color: #d1d5db; text-align: center;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.vl-wa-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  width: 56px; height: 56px; border-radius: 9999px;
  background: var(--v-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vl-wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.vl-wa-btn svg { width: 32px; height: 32px; fill: #fff; }

/* ============================================================
   GUTENBERG MESSAGE CAROUSEL OVERRIDES
   ============================================================ */
.editor-styles-wrapper .vl-carousel-row-1,
.editor-styles-wrapper .vl-carousel-row-2 {
  animation: none !important;
  transform: none !important;
  display: flex !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  max-width: 100% !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 1rem 0 !important;
  margin-bottom: 1rem !important;
}

.editor-styles-wrapper .vl-pill {
  display: inline-block !important;
  background-color: #1d4ed8 !important;
  color: #ffffff !important;
  padding: 0.75rem 1rem !important;
  border-radius: 2px !important;
  margin: 0.25rem !important;
  min-width: 220px !important;
  text-align: center !important;
  white-space: nowrap !important;
  cursor: text !important;
}

.editor-styles-wrapper .vl-pill[data-rich-text-format-boundary],
.editor-styles-wrapper .vl-pill [data-rich-text-format-boundary] {
  color: #ffffff !important;
  background-color: #1d4ed8 !important;
}

.editor-styles-wrapper .vl-pill[data-rich-text-placeholder]::after {
  color: rgba(255, 255, 255, 0.6) !important;
}
