/*
 * ============================================================
 *  VOXIRE DESIGN SYSTEM - v1.0
 *  Source of truth: VOXIRE_WEBSITE_UI_SYSTEM.md
 *  Import AFTER style.css to override legacy --voxire-* tokens
 * ============================================================
 */

/* ============================================================
   1. ROOT TOKENS - mode-independent
   ============================================================ */
:root {
  /* Brand */
  --vx-teal:   #6FCEEB;
  --vx-blue:   #519AD1;
  --vx-purple: #5A4398;
  --vx-brand-gradient:      linear-gradient(135deg, #6FCEEB 0%, #519AD1 50%, #5A4398 100%);
  --vx-brand-gradient-v:    linear-gradient(180deg,  #6FCEEB 0%, #519AD1 50%, #5A4398 100%);
  --vx-brand-gradient-text: linear-gradient(135deg, #6FCEEB 0%, #7BB8E8 50%, #7B5EC0 100%);

  /* Teal scale */
  --vx-teal-400: #7DD4CD;
  --vx-teal-500: #6FCEEB;
  --vx-teal-600: #45A89F;
  --vx-teal-700: #2E857D;

  /* Blue scale */
  --vx-blue-400: #7BB8E8;
  --vx-blue-500: #519AD1;
  --vx-blue-600: #3A7DB8;

  /* Purple scale */
  --vx-purple-300: #9B7ED4;
  --vx-purple-400: #7B5EC0;
  --vx-purple-500: #5A4398;
  --vx-purple-600: #432E78;

  /* Typography */
  --vx-font-display: 'Manrope', 'Work Sans', system-ui, sans-serif;
  --vx-font-body:    'Work Sans', system-ui, sans-serif;
  --vx-font-mono:    'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;

  /* Type scale */
  --vx-text-xs:   0.75rem;
  --vx-text-sm:   0.875rem;
  --vx-text-base: 1rem;
  --vx-text-lg:   1.125rem;
  --vx-text-xl:   1.25rem;
  --vx-text-2xl:  1.5rem;
  --vx-text-3xl:  1.875rem;
  --vx-text-4xl:  2.25rem;
  --vx-text-5xl:  3rem;
  --vx-text-6xl:  3.75rem;
  --vx-text-7xl:  4.5rem;

  /* Spacing */
  --vx-space-1:  0.25rem;
  --vx-space-2:  0.5rem;
  --vx-space-3:  0.75rem;
  --vx-space-4:  1rem;
  --vx-space-5:  1.25rem;
  --vx-space-6:  1.5rem;
  --vx-space-8:  2rem;
  --vx-space-10: 2.5rem;
  --vx-space-12: 3rem;
  --vx-space-16: 4rem;
  --vx-space-20: 5rem;
  --vx-space-24: 6rem;
  --vx-space-32: 8rem;

  /* Border radius */
  --vx-radius-sm:   4px;
  --vx-radius-md:   8px;
  --vx-radius-lg:   12px;
  --vx-radius-xl:   16px;
  --vx-radius-2xl:  24px;
  --vx-radius-full: 9999px;

  /* Easing */
  --vx-ease-snappy: cubic-bezier(0.76, 0, 0.24, 1);
  --vx-ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --vx-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --vx-ease-out:    cubic-bezier(0, 0, 0.2, 1);

  /* Duration */
  --vx-duration-fast:   150ms;
  --vx-duration-base:   250ms;
  --vx-duration-slow:   400ms;
  --vx-duration-slower: 600ms;
}


/* ============================================================
   2. DARK MODE TOKENS (DEFAULT)
   ============================================================ */
:root,
[data-theme="dark"] {
  --vx-bg:          #111118;
  --vx-bg-2:        #1A1A26;
  --vx-bg-3:        #222232;
  --vx-bg-overlay:  rgba(17, 17, 24, 0.85);

  --vx-border:        rgba(255, 255, 255, 0.08);
  --vx-border-strong: rgba(255, 255, 255, 0.16);

  --vx-text-primary:   #F0F0F6;
  --vx-text-secondary: rgba(240, 240, 246, 0.80);
  --vx-text-muted:     rgba(240, 240, 246, 0.52);
  --vx-text-disabled:  rgba(240, 240, 246, 0.28);

  --vx-primary:        #6FCEEB;
  --vx-primary-hover:  #7DD4CD;
  --vx-primary-active: #45A89F;
  --vx-primary-ghost:  rgba(111, 206, 235, 0.10);
  --vx-primary-glow:   rgba(111, 206, 235, 0.25);

  --vx-accent:         #5A4398;
  --vx-accent-hover:   #7B5EC0;
  --vx-accent-active:  #432E78;
  --vx-accent-ghost:   rgba(90, 67, 152, 0.15);

  --vx-success: #3ECFA0;
  --vx-warning: #F0A854;
  --vx-error:   #F05454;
  --vx-info:    #519AD1;

  --vx-shadow-sm:      0 0 0 1px var(--vx-border);
  --vx-shadow-md:      0 4px 24px rgba(0, 0, 0, 0.40);
  --vx-shadow-lg:      0 8px 48px rgba(0, 0, 0, 0.50);
  --vx-shadow-primary: 0 0 32px rgba(111, 206, 235, 0.25);
  --vx-shadow-accent:  0 0 32px rgba(90, 67, 152, 0.20);
}


/* ============================================================
   3. LIGHT MODE TOKENS
   ============================================================ */
[data-theme="light"] {
  --vx-bg:          #F5F5FA;
  --vx-bg-2:        #FFFFFF;
  --vx-bg-3:        #EEEEF5;
  --vx-bg-overlay:  rgba(245, 245, 250, 0.90);

  --vx-border:        rgba(17, 17, 24, 0.08);
  --vx-border-strong: rgba(17, 17, 24, 0.16);

  --vx-text-primary:   #111118;
  --vx-text-secondary: rgba(17, 17, 24, 0.65);
  --vx-text-muted:     rgba(17, 17, 24, 0.38);
  --vx-text-disabled:  rgba(17, 17, 24, 0.20);

  --vx-primary:        #3EA8A0;
  --vx-primary-hover:  #6FCEEB;
  --vx-primary-active: #2E857D;
  --vx-primary-ghost:  rgba(62, 168, 160, 0.08);
  --vx-primary-glow:   rgba(62, 168, 160, 0.18);

  --vx-accent:         #5A4398;
  --vx-accent-hover:   #432E78;
  --vx-accent-ghost:   rgba(90, 67, 152, 0.08);

  --vx-shadow-sm:      0 1px 3px rgba(17, 17, 24, 0.08);
  --vx-shadow-md:      0 4px 16px rgba(17, 17, 24, 0.10);
  --vx-shadow-lg:      0 8px 32px rgba(17, 17, 24, 0.12);
  --vx-shadow-primary: 0 4px 24px rgba(62, 168, 160, 0.20);
}


/* ============================================================
   4. ALIAS LEGACY --voxire-* → --vx-* TOKENS
   All 335 legacy selectors auto-update through these aliases.
   ============================================================ */
body {
  background: var(--vx-bg);
  color: var(--vx-text-secondary);
  font-family: var(--vx-font-body);
  font-size: var(--vx-text-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Legacy aliases */
  --voxire-primary-font:    var(--vx-font-display);
  --voxire-secondary-font:  var(--vx-font-body);
  --voxire-primary-color:   var(--vx-primary);
  --voxire-secondary-color: var(--vx-text-primary);
  --voxire-body-color:      var(--vx-text-secondary);
  --voxire-headline-color:  var(--vx-text-primary);
  --voxire-border-color:    var(--vx-border);
  --voxire-dark-color:      var(--vx-bg);
  --voxire-tertiary-color:  var(--vx-bg-2);
  --voxire-primary-rgb:     111, 206, 235;
  --voxire-secondary-rgb:   240, 240, 246;
  --voxire-tertiary-rgb:    26, 26, 38;
}


/* ============================================================
   5. TYPOGRAPHY SYSTEM
   ============================================================ */

/* Headings → Manrope */
h1, h2, h3, h4,
.h1, .h2, .h3, .h4 {
  font-family: var(--vx-font-display);
  color: var(--vx-text-primary);
  font-weight: 600;
  line-height: 1.15;
  transform: translateZ(0);
  will-change: transform;
  -webkit-font-smoothing: antialiased;
}
h1, .h1 {
  font-size: clamp(2.5rem, 5vw, var(--vx-text-7xl));
  letter-spacing: -0.02em;
  font-weight: 700;
}
h2, .h2 {
  font-size: clamp(2rem, 3.5vw, var(--vx-text-5xl));
  letter-spacing: -0.02em;
  font-weight: 700;
}
h3, .h3 {
  font-size: clamp(1.5rem, 2.5vw, var(--vx-text-3xl));
  letter-spacing: -0.01em;
  font-weight: 600;
}
h4, .h4 {
  font-size: var(--vx-text-2xl);
  letter-spacing: -0.01em;
  font-weight: 600;
}
h5, .h5 { font-size: var(--vx-text-xl); font-weight: 500; }
h6, .h6 { font-size: var(--vx-text-lg); font-weight: 500; }

/* Body copy */
p {
  font-family: var(--vx-font-body);
  color: var(--vx-text-secondary);
  line-height: 1.7;
}

/* Links */
a {
  color: var(--vx-text-secondary);
  transition: color var(--vx-duration-base) var(--vx-ease-smooth);
}
a:hover {
  color: var(--vx-primary);
}

/* Sub-label (small uppercase tag above section headings) */
.section-title .sub-title {
  font-family: var(--vx-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vx-primary);
  display: inline-block;
  margin-bottom: 12px;
}
/* Remove the old SVG bullet from sub-title */
.section-title .sub-title:before {
  display: none;
}

/* Mono */
code, pre, .mono {
  font-family: var(--vx-font-mono);
  font-size: 0.9em;
}


/* ============================================================
   6. BUTTON SYSTEM
   ============================================================ */

/* Override legacy .theme-btn to use Voxire tokens */
.theme-btn,
a.theme-btn {
  font-family: var(--vx-font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 12px 28px;
  border-radius: var(--vx-radius-md);
  border: 1.5px solid var(--vx-border-strong);
  background: transparent;
  color: var(--vx-text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--vx-duration-base) var(--vx-ease-smooth),
    color var(--vx-duration-base) var(--vx-ease-smooth),
    border-color var(--vx-duration-base) var(--vx-ease-smooth),
    box-shadow var(--vx-duration-base) var(--vx-ease-smooth);
  position: relative;
  overflow: hidden;
  user-select: none;
}
.theme-btn:hover,
a.theme-btn:hover {
  background: var(--vx-primary);
  border-color: var(--vx-primary);
  color: var(--vx-bg);
  box-shadow: var(--vx-shadow-primary);
}
.theme-btn.style-two,
a.theme-btn.style-two {
  background: var(--vx-primary);
  border-color: var(--vx-primary);
  color: var(--vx-bg);
}
.theme-btn.style-two:hover,
a.theme-btn.style-two:hover {
  background: transparent;
  color: var(--vx-primary);
}



/* ============================================================
   7. FILM GRAIN NOISE OVERLAY (rawlab-inspired)
   Dark mode only. Add <div class="noise-overlay"></div>
   as first child of <body> via Layout.js
   ============================================================ */
.noise-overlay {
  display: none; /* hidden on mobile - desktop-only cosmetic */
  pointer-events: none;
}
@media (min-width: 992px) {
  .noise-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-image: url('/assets/images/noise.png');
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.028;
    animation: noise-shift 0.2s steps(2) infinite;
  }
}
@keyframes noise-shift {
  0%   { background-position: 0 0; }
  50%  { background-position: 32px 16px; }
  100% { background-position: 64px 64px; }
}
[data-theme="light"] .noise-overlay {
  display: none;
}


/* ============================================================
   8. SCROLL REVEAL SYSTEM
   Replace WOW.js classes with Intersection Observer-driven reveals.
   JS side in utils.js handles adding .is-visible.
   ============================================================ */
/* Mobile base: no animation - content always visible on small screens */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 1;
  transform: none;
  transition: none;
}
/* Stagger children inside a reveal group (layout-only, no animation effect on mobile) */
.reveal-group > *:nth-child(1) { transition-delay: 0ms; }
.reveal-group > *:nth-child(2) { transition-delay: 80ms; }
.reveal-group > *:nth-child(3) { transition-delay: 160ms; }
.reveal-group > *:nth-child(4) { transition-delay: 240ms; }
.reveal-group > *:nth-child(5) { transition-delay: 320ms; }
.reveal-group > *:nth-child(6) { transition-delay: 400ms; }
/* Desktop enhancement: scroll reveal animations at ≥992px */
@media (min-width: 992px) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity var(--vx-duration-slow) var(--vx-ease-out),
      transform var(--vx-duration-slow) var(--vx-ease-out);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition:
      opacity var(--vx-duration-slow) var(--vx-ease-out),
      transform var(--vx-duration-slow) var(--vx-ease-out);
  }
  .reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition:
      opacity var(--vx-duration-slow) var(--vx-ease-out),
      transform var(--vx-duration-slow) var(--vx-ease-out);
  }
  .reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Keep WOW.js classes visible so existing markup doesn't break
   while we progressively migrate to .reveal */
.wow {
  opacity: 1 !important;
  visibility: visible !important;
  animation-name: none !important;
}
@media (min-width: 992px) {
  .wow.fadeInLeft,
  .wow.fadeInRight,
  .wow.fadeInUp,
  .wow.fadeIn {
    animation-name: unset;
  }
}


/* ============================================================
   9. FORM INPUTS
   ============================================================ */
input.form-control,
textarea.form-control,
select.form-control {
  background: var(--vx-bg-3);
  border: 1.5px solid var(--vx-border);
  border-radius: var(--vx-radius-md);
  padding: 14px 18px;
  color: var(--vx-text-primary);
  font-family: var(--vx-font-body);
  font-size: var(--vx-text-base);
  width: 100%;
  transition:
    border-color var(--vx-duration-fast) var(--vx-ease-smooth),
    box-shadow var(--vx-duration-fast) var(--vx-ease-smooth);
}
input.form-control::placeholder,
textarea.form-control::placeholder {
  color: var(--vx-text-muted);
}
input.form-control:focus,
textarea.form-control:focus {
  border-color: var(--vx-primary);
  box-shadow: 0 0 0 3px var(--vx-primary-ghost);
  outline: none;
}


/* Page banner background */
.page-banner-area {
  background: var(--vx-bg-2);
}


/* ============================================================
   10. DARK MODE THEME TOGGLE
   Stored in localStorage under key "vx-theme"
   Applied as data-theme attr on <html>
   ============================================================ */
html {
  color-scheme: dark;
}
[data-theme="light"] {
  color-scheme: light;
}


/* ============================================================
   11. SCROLLBAR STYLING
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--vx-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--vx-border-strong);
  border-radius: var(--vx-radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--vx-primary);
}


/* ============================================================
   12. SELECTION COLOR
   ============================================================ */
::selection {
  background: var(--vx-primary-ghost);
  color: var(--vx-primary);
}


/* ============================================================
   13. VOXIRE PRIMARY COLOR - UNIVERSAL ACCENT LOCK
   Ensure no lingering template mint green (#6FCEEB) shows.
   Any element still using the old primary via inline style
   or direct CSS gets clamped here.
   ============================================================ */

/* Sub-title dots/shapes that use primary color SVG backgrounds */
.sub-title::before,
.sub-title::after {
  background-color: var(--vx-primary) !important;
  background-image: none;
}

/* Highlight / mark tag */
mark {
  background: var(--vx-primary-ghost);
  color: var(--vx-primary);
  border-radius: 2px;
  padding: 0 2px;
}


/* ============================================================
   REDUCED MOTION - disable animations for accessibility
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .noise-overlay {
    animation: none;
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal-group > * {
    transition-delay: 0ms;
  }
}

/* ============================================================
   15. BLOG LISTING PAGE
   Minimal, content-first blog grid with featured hero card.
   ============================================================ */

/* Category filter pills */
.vx-filter-btn:hover {
  border-color: rgba(99, 198, 189, 0.35) !important;
  color: var(--vx-text-primary) !important;
}

/* Featured post card */
.vx-featured-post {
  cursor: pointer;
}
.vx-featured-post:hover {
  border-color: rgba(99, 198, 189, 0.18) !important;
}
.vx-featured-post:hover img {
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

/* Blog grid cards */
.vx-blog-card:hover {
  border-color: rgba(99, 198, 189, 0.22) !important;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.vx-blog-card:hover .vx-card-img {
  transform: scale(1.05);
}
.vx-card-img {
  transition: transform 0.45s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   16. BLOG POST - PROSE STYLES
   Typography for article body rendered via react-markdown.
   ============================================================ */

.vx-prose {
  color: rgba(240, 240, 246, 0.88);
  font-size: 17px;
  line-height: 1.82;
  font-family: 'Inter', sans-serif;
}
.vx-prose p {
  margin-bottom: 1.55em;
}
.vx-prose h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--vx-text-primary);
  margin-top: 56px;
  margin-bottom: 16px;
  line-height: 1.22;
  scroll-margin-top: 90px;
}
.vx-prose h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  color: var(--vx-text-primary);
  margin-top: 36px;
  margin-bottom: 10px;
  line-height: 1.3;
  scroll-margin-top: 90px;
}
.vx-prose ul,
.vx-prose ol {
  padding-left: 1.4em;
  margin-bottom: 1.55em;
}
.vx-prose li {
  margin-bottom: 0.45em;
}
.vx-prose a {
  color: var(--vx-primary);
  text-decoration: underline;
  text-decoration-color: rgba(99, 198, 189, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.vx-prose a:hover {
  text-decoration-color: var(--vx-primary);
}
.vx-prose code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.87em;
  background: rgba(99, 198, 189, 0.08);
  border: 1px solid rgba(99, 198, 189, 0.16);
  border-radius: 4px;
  padding: 2px 7px;
  color: var(--vx-primary);
}
.vx-prose pre {
  background: var(--vx-bg-3);
  border: 1px solid rgba(240, 240, 246, 0.08);
  border-radius: 10px;
  padding: 20px 24px;
  overflow-x: auto;
  margin-bottom: 1.55em;
}
.vx-prose pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--vx-text-primary);
  font-size: 14px;
}
.vx-prose blockquote {
  border-left: 3px solid var(--vx-primary);
  padding: 14px 22px;
  margin: 28px 0;
  background: rgba(99, 198, 189, 0.05);
  border-radius: 0 8px 8px 0;
}
.vx-prose blockquote p {
  margin-bottom: 0;
  font-style: italic;
  color: rgba(240, 240, 246, 0.75);
}
.vx-prose hr {
  border: none;
  border-top: 1px solid rgba(240, 240, 246, 0.1);
  margin: 52px 0;
}
.vx-prose strong {
  color: var(--vx-text-primary);
  font-weight: 600;
}
.vx-prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.55em;
  font-size: 15px;
}
.vx-prose th {
  background: var(--vx-bg-3);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--vx-text-primary);
  border-bottom: 1px solid rgba(240, 240, 246, 0.1);
}
.vx-prose td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(240, 240, 246, 0.06);
  vertical-align: top;
}

/* ============================================================
   17. BLOG POST - TOC SIDEBAR
   ============================================================ */

.vx-toc {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: none;
  display: none;
}
.vx-toc::-webkit-scrollbar { display: none; }

@media (min-width: 992px) {
  .vx-toc { display: block; }
}

.vx-toc__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 240, 246, 0.55);
  margin-bottom: 14px;
  display: block;
}
.vx-toc a {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  padding: 6px 0 6px 14px;
  color: rgba(240, 240, 246, 0.62);
  text-decoration: none;
  border-left: 2px solid rgba(240, 240, 246, 0.08);
  transition: color 0.2s ease, border-color 0.2s ease;
  margin-bottom: 2px;
}
.vx-toc a:hover {
  color: rgba(240, 240, 246, 0.8);
  border-left-color: rgba(240, 240, 246, 0.3);
}
.vx-toc a.vx-toc--active {
  color: var(--vx-primary);
  border-left-color: var(--vx-primary);
}

/* ============================================================
   18. BLOG POST - PROGRESS BAR + SHARE + RELATED
   ============================================================ */

.vx-reading-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #63C6BD, #519AD1, #5A4398);
  z-index: 9999;
  pointer-events: none;
  transition: width 0.08s linear;
}

.vx-share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(240, 240, 246, 0.1);
  background: transparent;
  color: rgba(240, 240, 246, 0.75);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
  font-family: inherit;
  width: 100%;
  justify-content: center;
  margin-bottom: 8px;
  min-height: 44px;
}
.vx-share-btn:hover {
  border-color: rgba(99, 198, 189, 0.35);
  color: var(--vx-primary);
  background: rgba(99, 198, 189, 0.04);
}

.vx-related-card {
  background: var(--vx-bg-2);
  border: 1px solid rgba(240, 240, 246, 0.06);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none !important;
  display: block;
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.vx-related-card:hover {
  border-color: rgba(99, 198, 189, 0.22);
  transform: translateY(-3px);
}
.vx-related-card:hover .vx-card-img {
  transform: scale(1.05);
}

/* ── Share row: flex on mobile, static on desktop ─ */
.vx-share-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.vx-share-btn {
  flex: 1;
  min-width: 120px;
}
@media (min-width: 992px) {
  .vx-share-row {
    flex-wrap: nowrap;
  }
  .vx-share-btn {
    flex: 0 0 auto;
  }
}

/* ============================================================
   19. BLOG POST - 3-COLUMN ARTICLE GRID
   ============================================================ */

.vx-post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

@media (min-width: 992px) {
  .vx-post-grid {
    grid-template-columns: 220px 1fr 160px;
    gap: 0;
  }
}

@media (min-width: 1200px) {
  .vx-post-grid {
    grid-template-columns: 240px 1fr 180px;
  }
}

/* ============================================================
   20. GET-A-QUOTE PAGE (moved from inline <style> tag)
   ============================================================ */

/* ── 20. Get-a-Quote page ────────────────────────────────────────────────── */

.vx-quote {
  padding: 140px 16px 60px;
  max-width: 640px;
  margin: 0 auto;
}
.vx-quote__title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 7vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--vx-text-primary, #F0F0F6);
  margin: 0 0 12px;
}
.vx-quote__subtitle {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--vx-text-secondary, rgba(240, 240, 246, 0.65));
  margin: 0 0 40px;
}
.vx-quote-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vx-quote-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vx-quote-field__label {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--vx-text-primary, #F0F0F6);
}
.vx-quote-field__label--optional::after {
  content: ' (optional)';
  font-weight: 400;
  color: var(--vx-text-secondary, rgba(240, 240, 246, 0.65));
}
.vx-quote-field__input,
.vx-quote-field__select,
.vx-quote-field__textarea {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--vx-text-primary, #F0F0F6);
  background: var(--vx-bg-3, #222232);
  border: 1px solid rgba(240, 240, 246, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  min-height: 44px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.vx-quote-field__input::placeholder,
.vx-quote-field__textarea::placeholder {
  color: var(--vx-text-secondary, rgba(240, 240, 246, 0.65));
}
.vx-quote-field__input:focus,
.vx-quote-field__select:focus,
.vx-quote-field__textarea:focus {
  border-color: var(--vx-primary, #63C6BD);
}
.vx-quote-field__input--error,
.vx-quote-field__select--error,
.vx-quote-field__textarea--error {
  border-color: #E05A5A;
}
.vx-quote-field__select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23F0F0F6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.vx-quote-field__textarea {
  resize: vertical;
  min-height: 140px;
}
.vx-quote-field__error {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 13px;
  color: #E05A5A;
  margin: 0;
}
.vx-quote-field__hint {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 13px;
  color: var(--vx-text-secondary, rgba(240, 240, 246, 0.65));
  margin: 0;
}
.vx-quote__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--vx-bg, #111118);
  background: var(--vx-primary, #63C6BD);
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  min-height: 44px;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.vx-quote__submit:hover,
.vx-quote__submit:focus-visible {
  opacity: 0.88;
}
.vx-quote-success {
  padding: 140px 16px 120px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.vx-quote-success__icon {
  width: 64px;
  height: 64px;
  color: var(--vx-primary, #63C6BD);
  margin: 0 auto 24px;
}
.vx-quote-success__heading {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 6vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--vx-text-primary, #F0F0F6);
  margin: 0 0 12px;
}
.vx-quote-success__text {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--vx-text-secondary, rgba(240, 240, 246, 0.65));
  margin: 0;
}
@media (min-width: 480px) {
  .vx-quote { padding: 160px 24px 80px; }
  .vx-quote-success { padding: 160px 24px 140px; }
}
@media (min-width: 768px) {
  .vx-quote { padding: 180px 40px 100px; }
  .vx-quote-success { padding: 180px 40px 160px; }
}
@media (min-width: 992px) {
  .vx-quote { padding: 200px 40px 120px; }
  .vx-quote__submit { width: auto; }
  .vx-quote-success { padding: 200px 40px 180px; }
}

/* ============================================================
   21. BLOG LISTING PAGE
   ============================================================ */

.vx-blog-header {
  padding-top: 150px;
  padding-bottom: 36px;
}
.vx-blog-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vx-primary);
  margin-bottom: 14px;
  font-family: 'Manrope', system-ui, sans-serif;
}
.vx-blog-h1 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--vx-text-primary);
  margin: 0;
  line-height: 1.08;
  max-width: 540px;
}
.vx-blog-intro {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.65;
  color: var(--vx-text-secondary);
  max-width: 640px;
  margin: 20px 0 0;
}
.vx-blog-filter {
  padding-bottom: 44px;
}
.vx-blog-filter__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(240, 240, 246, 0.07);
}
.vx-filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(240, 240, 246, 0.11);
  background: transparent;
  color: rgba(240, 240, 246, 0.72);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  min-height: 44px;
  white-space: nowrap;
}
.vx-filter-btn--active,
.vx-filter-btn:hover {
  border-color: var(--vx-primary);
  background: rgba(99, 198, 189, 0.1);
  color: var(--vx-primary);
  font-weight: 600;
}
.vx-blog-featured {
  padding-bottom: 56px;
}
.vx-featured-link {
  text-decoration: none;
  display: block;
}
.vx-featured-post {
  background: var(--vx-bg-2);
  border: 1px solid rgba(240, 240, 246, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.vx-featured-post:hover {
  border-color: rgba(99, 198, 189, 0.22);
}
.vx-featured-post:hover .vx-featured-cover__img {
  transform: scale(1.03);
}
.vx-featured-cover {
  position: relative;
  aspect-ratio: 21/8;
  overflow: hidden;
}
.vx-featured-cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.vx-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 24, 0.92) 0%, rgba(17, 17, 24, 0.3) 55%, transparent 100%);
  pointer-events: none;
}
.vx-featured-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(20px, 4vw, 44px);
}
.vx-featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.vx-blog-meta-dim {
  font-size: 13px;
  color: rgba(240, 240, 246, 0.68);
}
.vx-meta-dot {
  color: rgba(240, 240, 246, 0.2);
  margin: 0 6px;
}
.vx-featured-title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 700;
  color: #F0F0F6;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.18;
  max-width: 680px;
}
.vx-featured-excerpt {
  color: rgba(240, 240, 246, 0.65);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 18px;
  max-width: 560px;
  display: none;
}
@media (min-width: 768px) {
  .vx-featured-excerpt { display: block; }
}
.vx-featured-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--vx-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vx-blog-grid {
  padding-bottom: 120px;
}
.vx-blog-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}
.vx-blog-card {
  background: var(--vx-bg-2);
  border: 1px solid rgba(240, 240, 246, 0.06);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.vx-blog-card:hover {
  border-color: rgba(99, 198, 189, 0.22);
  transform: translateY(-3px);
}
.vx-blog-card:hover .vx-card-img {
  transform: scale(1.05);
}
.vx-blog-card__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.vx-blog-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vx-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  flex-wrap: wrap;
}
.vx-blog-meta-sm {
  font-size: 12px;
  color: rgba(240, 240, 246, 0.58);
}
.vx-cat-badge {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(99, 198, 189, 0.1);
  color: var(--vx-primary);
  border: 1px solid rgba(99, 198, 189, 0.18);
}
.vx-blog-card__title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--vx-text-primary);
  letter-spacing: -0.01em;
  line-height: 1.38;
  margin: 0 0 10px;
}
.vx-blog-card__excerpt {
  font-size: 13.5px;
  color: rgba(240, 240, 246, 0.70);
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}
.vx-blog-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(240, 240, 246, 0.06);
}
.vx-blog-card__date {
  font-size: 12px;
  color: rgba(240, 240, 246, 0.52);
}
.vx-blog-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--vx-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.vx-blog-empty {
  padding-bottom: 120px;
  text-align: center;
}
.vx-blog-empty__text {
  color: rgba(240, 240, 246, 0.4);
  font-size: 16px;
  margin: 0 auto;
  max-width: 360px;
}

/* ============================================================
   22. BLOG POST DETAIL PAGE
   ============================================================ */

.vx-post-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 21/8;
  overflow: hidden;
  margin-top: 80px;
}
.vx-post-cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vx-post-cover__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 17, 24, 0.4) 0%, rgba(17, 17, 24, 0.92) 100%);
  pointer-events: none;
}
.vx-article-header {
  background: var(--vx-bg);
  border-bottom: 1px solid rgba(240, 240, 246, 0.06);
  padding: 36px 0 32px;
}
.vx-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(240, 240, 246, 0.60);
}
.vx-breadcrumb__link {
  color: rgba(240, 240, 246, 0.60);
  text-decoration: none;
  transition: color 0.2s;
}
.vx-breadcrumb__link:hover {
  color: var(--vx-primary);
}
.vx-breadcrumb__current {
  color: rgba(240, 240, 246, 0.6);
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vx-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.vx-article-meta__item {
  font-size: 13px;
  color: rgba(240, 240, 246, 0.62);
}
.vx-article-meta__sep {
  color: rgba(240, 240, 246, 0.18);
}
.vx-article-title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--vx-text-primary);
  margin: 0 0 20px;
  line-height: 1.12;
  max-width: 820px;
}
.vx-article-byline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.vx-article-byline__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #63C6BD 0%, #5A4398 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}
.vx-article-byline__name {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(240, 240, 246, 0.6);
  line-height: 1.3;
}
.vx-article-byline__role {
  display: block;
  font-size: 11px;
  color: rgba(240, 240, 246, 0.32);
  line-height: 1.3;
}
.vx-blog-card__byline {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.vx-blog-card__author {
  font-size: 11px;
  font-weight: 400;
  color: rgba(240, 240, 246, 0.38);
  letter-spacing: 0.01em;
}
.vx-article-body-section {
  padding: 60px 0 80px;
}
.vx-toc-aside {
  padding-right: 32px;
}
.vx-article-center {
  min-width: 0;
}
.vx-article-lead {
  font-size: 19px;
  line-height: 1.72;
  color: rgba(240, 240, 246, 0.75);
  margin-bottom: 36px;
  font-style: italic;
  border-left: 3px solid var(--vx-primary);
  padding-left: 20px;
}
.vx-cta-box {
  margin-top: 48px;
  padding: 32px 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99, 198, 189, 0.07) 0%, rgba(81, 154, 209, 0.05) 100%);
  border: 1px solid rgba(99, 198, 189, 0.18);
  border-top: 3px solid #63C6BD;
}
.vx-cta-box__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--vx-text-primary);
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.vx-cta-box__p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(240, 240, 246, 0.72);
  margin: 0 0 16px;
}
.vx-cta-box__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(99, 198, 189, 0.12);
  border: 1px solid rgba(99, 198, 189, 0.3);
  color: var(--vx-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-right: 10px;
  margin-bottom: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.vx-cta-box__link:hover {
  background: rgba(99, 198, 189, 0.22);
  border-color: rgba(99, 198, 189, 0.55);
  color: var(--vx-primary);
}
.vx-article-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid rgba(240, 240, 246, 0.07);
  margin-top: 56px;
}
.vx-article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(240, 240, 246, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.vx-article-back:hover {
  color: var(--vx-primary);
}
.vx-share-sidebar {
  position: sticky;
  top: 96px;
  padding-left: 32px;
}
.vx-share-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 240, 246, 0.3);
  margin-bottom: 14px;
}
.vx-related {
  border-top: 1px solid rgba(240, 240, 246, 0.07);
  padding: 72px 0 100px;
  background: var(--vx-bg-2);
}
.vx-related__heading {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--vx-text-primary);
  margin: 0 0 36px;
}
.vx-related-card__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.vx-related-card__body {
  padding: 20px 22px 22px;
}
.vx-related-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.vx-related-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--vx-primary);
}
.vx-related-card__time {
  font-size: 12px;
  color: rgba(240, 240, 246, 0.3);
}
.vx-related-card__title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--vx-text-primary);
  letter-spacing: -0.01em;
  line-height: 1.38;
  margin: 0;
}
.vx-post-not-found {
  padding: 160px 0 120px;
}

/* ── 404 page image filter ───────────────────────────────────────── */
.vx-404-img {
  filter: hue-rotate(18deg) saturate(0.75);
}

/* ── get-a-quote error message ──────────────────────────────────── */
.vx-form-error {
  color: var(--vx-error, #ff6b6b);
  margin-top: 12px;
  font-size: 14px;
}

/* ── HeroParticles reduced-motion fallback ──────────────────────── */
.vx-hero__reduced-motion-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: var(--vx-brand-gradient, linear-gradient(135deg, #63C6BD 0%, #519AD1 50%, #5A4398 100%));
}

/* ── Section 23: RTYLR product page ─────────────────────────────── */
/* ── Hero ── */
.vx-rtylr-hero {
  padding: 130px 16px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vx-rtylr-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vx-primary, #63C6BD);
  margin: 0 0 20px;
}
.vx-rtylr-hero__logo {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #63C6BD 0%, #519AD1 50%, #5A4398 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 16px;
  line-height: 1;
}
.vx-rtylr-hero__title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 7vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--vx-text-primary, #F0F0F6);
  margin: 0 0 16px;
  max-width: 680px;
}
.vx-rtylr-hero__sub {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--vx-text-secondary, rgba(240,240,246,0.65));
  margin: 0 0 32px;
  max-width: 540px;
}
.vx-rtylr-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.vx-rtylr-hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--vx-bg, #111118);
  background: var(--vx-primary, #63C6BD);
  border-radius: 8px;
  padding: 14px 28px;
  min-height: 44px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.vx-rtylr-hero__cta-primary:hover,
.vx-rtylr-hero__cta-primary:focus-visible {
  opacity: 0.88;
  color: var(--vx-bg, #111118);
}
.vx-rtylr-hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--vx-text-secondary, rgba(240,240,246,0.65));
  text-decoration: none;
  transition: color 0.2s ease;
  min-height: 44px;
}
.vx-rtylr-hero__cta-secondary:hover,
.vx-rtylr-hero__cta-secondary:focus-visible {
  color: var(--vx-text-primary, #F0F0F6);
}

/* ── Stats strip ── */
.vx-rtylr-stats {
  padding: 40px 16px;
  border-top: 1px solid rgba(240,240,246,0.07);
  border-bottom: 1px solid rgba(240,240,246,0.07);
  margin: 40px 0 0;
}
.vx-rtylr-stats__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
  text-align: center;
}
.vx-rtylr-stats__value {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #63C6BD 0%, #519AD1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 4px;
  line-height: 1;
}
.vx-rtylr-stats__label {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 14px;
  color: var(--vx-text-secondary, rgba(240,240,246,0.65));
  margin: 0;
}

/* ── What is RTYLR ── */
.vx-rtylr-about {
  padding: 72px 16px 48px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.vx-rtylr-section-label {
  display: block;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vx-primary, #63C6BD);
  margin: 0 0 12px;
}
.vx-rtylr-section-heading {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--vx-text-primary, #F0F0F6);
  margin: 0 0 20px;
}
.vx-rtylr-section-body {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--vx-text-secondary, rgba(240,240,246,0.65));
  margin: 0;
}

/* ── One database callout ── */
.vx-rtylr-onedb {
  margin: 0 16px 64px;
  border: 1px solid rgba(99,198,189,0.2);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(99,198,189,0.05) 0%, rgba(81,154,209,0.05) 100%);
  padding: 40px 24px;
  text-align: center;
  max-width: 800px;
}
.vx-rtylr-onedb__title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--vx-text-primary, #F0F0F6);
  margin: 0 0 16px;
}
.vx-rtylr-onedb__body {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--vx-text-secondary, rgba(240,240,246,0.65));
  margin: 0;
  max-width: 560px;
}
.vx-rtylr-onedb-wrap {
  display: flex;
  justify-content: center;
}

/* ── 7 Apps grid ── */
.vx-rtylr-apps {
  padding: 0 16px 72px;
  max-width: 1020px;
  margin: 0 auto;
}
.vx-rtylr-apps__header {
  text-align: center;
  margin-bottom: 40px;
}
.vx-rtylr-apps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.vx-rtylr-app {
  border: 1px solid rgba(240,240,246,0.07);
  border-radius: 16px;
  padding: 24px 20px;
  background: var(--vx-bg-2, #1A1A26);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.vx-rtylr-app:hover {
  border-color: rgba(99,198,189,0.25);
  transform: translateY(-2px);
}
.vx-rtylr-app__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.vx-rtylr-app__icon {
  color: var(--vx-primary, #63C6BD);
  flex-shrink: 0;
}
.vx-rtylr-app__label {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vx-primary, #63C6BD);
  background: rgba(99,198,189,0.1);
  border-radius: 4px;
  padding: 3px 8px;
}
.vx-rtylr-app__title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  color: var(--vx-text-primary, #F0F0F6);
  margin: 0 0 8px;
}
.vx-rtylr-app__desc {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--vx-text-secondary, rgba(240,240,246,0.65));
  margin: 0;
}

/* ── AI section ── */
.vx-rtylr-ai {
  padding: 0 16px 72px;
  max-width: 800px;
  margin: 0 auto;
}
.vx-rtylr-ai__inner {
  border: 1px solid rgba(99,198,189,0.3);
  border-radius: 20px;
  padding: 40px 24px;
  background: rgba(99,198,189,0.04);
  text-align: center;
}
.vx-rtylr-ai__icon {
  color: var(--vx-primary, #63C6BD);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.vx-rtylr-ai__badge {
  display: inline-block;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vx-primary, #63C6BD);
  border: 1px solid rgba(99,198,189,0.35);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.vx-rtylr-ai__title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--vx-text-primary, #F0F0F6);
  margin: 0 0 16px;
}
.vx-rtylr-ai__body {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--vx-text-secondary, rgba(240,240,246,0.65));
  margin: 0 auto 28px;
  max-width: 500px;
}
.vx-rtylr-ai__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--vx-primary, #63C6BD);
  border: 1px solid rgba(99,198,189,0.4);
  border-radius: 8px;
  padding: 12px 24px;
  min-height: 44px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.vx-rtylr-ai__cta:hover,
.vx-rtylr-ai__cta:focus-visible {
  background: rgba(99,198,189,0.1);
  color: var(--vx-primary, #63C6BD);
}

/* ── How it works ── */
.vx-rtylr-how {
  padding: 0 16px 72px;
  max-width: 900px;
  margin: 0 auto;
}
.vx-rtylr-how__header {
  text-align: center;
  margin-bottom: 40px;
}
.vx-rtylr-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.vx-rtylr-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 20px;
  border: 1px solid rgba(240,240,246,0.07);
  border-radius: 14px;
  background: var(--vx-bg-2, #1A1A26);
}
.vx-rtylr-step__num {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #63C6BD 0%, #519AD1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 36px;
}
.vx-rtylr-step__content {}
.vx-rtylr-step__title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--vx-text-primary, #F0F0F6);
  margin: 0 0 6px;
}
.vx-rtylr-step__desc {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--vx-text-secondary, rgba(240,240,246,0.65));
  margin: 0;
}

/* ── Testimonials ── */
.vx-rtylr-testimonials {
  padding: 0 16px 72px;
  max-width: 1020px;
  margin: 0 auto;
}
.vx-rtylr-testimonials__header {
  text-align: center;
  margin-bottom: 40px;
}
.vx-rtylr-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.vx-rtylr-testimonial {
  border: 1px solid rgba(240,240,246,0.07);
  border-radius: 16px;
  padding: 28px 24px;
  background: var(--vx-bg-2, #1A1A26);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vx-rtylr-testimonial__quote {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--vx-text-primary, #F0F0F6);
  margin: 0;
  font-style: italic;
}
.vx-rtylr-testimonial__name {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--vx-primary, #63C6BD);
  margin: 0;
}
.vx-rtylr-testimonial__role {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 13px;
  color: var(--vx-text-secondary, rgba(240,240,246,0.5));
  margin: 2px 0 0;
}

/* ── Pricing ── */
.vx-rtylr-pricing {
  padding: 0 16px 72px;
  max-width: 1020px;
  margin: 0 auto;
}
.vx-rtylr-pricing__header {
  text-align: center;
  margin-bottom: 40px;
}
.vx-rtylr-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.vx-rtylr-plan {
  border: 1px solid rgba(240,240,246,0.07);
  border-radius: 16px;
  padding: 28px 24px;
  background: var(--vx-bg-2, #1A1A26);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.vx-rtylr-plan--featured {
  border-color: rgba(99,198,189,0.35);
  background: linear-gradient(160deg, rgba(99,198,189,0.06) 0%, var(--vx-bg-2, #1A1A26) 100%);
}
.vx-rtylr-plan__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vx-bg, #111118);
  background: var(--vx-primary, #63C6BD);
  border-radius: 20px;
  padding: 4px 12px;
}
.vx-rtylr-plan__name {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--vx-text-primary, #F0F0F6);
  margin: 0 0 4px;
}
.vx-rtylr-plan__price {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--vx-text-primary, #F0F0F6);
  margin: 0;
  line-height: 1;
}
.vx-rtylr-plan__period {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 13px;
  color: var(--vx-text-secondary, rgba(240,240,246,0.5));
  margin: 4px 0 0;
}
.vx-rtylr-plan__note {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 12px;
  color: var(--vx-text-secondary, rgba(240,240,246,0.4));
  margin: 2px 0 0;
}
.vx-rtylr-plan__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vx-rtylr-plan__item {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 14px;
  color: var(--vx-text-secondary, rgba(240,240,246,0.7));
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.vx-rtylr-plan__item::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 1px;
  background: var(--vx-primary, #63C6BD);
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 4.5' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 4.5' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.vx-rtylr-plan__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  padding: 12px 20px;
  min-height: 44px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.vx-rtylr-plan--featured .vx-rtylr-plan__cta {
  color: var(--vx-bg, #111118);
  background: var(--vx-primary, #63C6BD);
}
.vx-rtylr-plan:not(.vx-rtylr-plan--featured) .vx-rtylr-plan__cta {
  color: var(--vx-primary, #63C6BD);
  border: 1px solid rgba(99,198,189,0.35);
  background: transparent;
}
.vx-rtylr-plan__cta:hover,
.vx-rtylr-plan__cta:focus-visible {
  opacity: 0.85;
}
.vx-rtylr-pricing__note {
  text-align: center;
  margin-top: 20px;
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 13px;
  color: var(--vx-text-secondary, rgba(240,240,246,0.45));
}

/* ── Integrations ── */
.vx-rtylr-integrations {
  padding: 0 16px 72px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.vx-rtylr-integrations__header {
  margin-bottom: 32px;
}
.vx-rtylr-integrations__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}
.vx-rtylr-integrations__pill {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--vx-text-secondary, rgba(240,240,246,0.7));
  border: 1px solid rgba(240,240,246,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  background: var(--vx-bg-2, #1A1A26);
}
.vx-rtylr-integrations__more {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 13px;
  color: var(--vx-text-secondary, rgba(240,240,246,0.45));
}

/* ── Why this matters (Voxire proof) ── */
.vx-rtylr-proof {
  padding: 0 16px 72px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ── Bottom CTA ── */
.vx-rtylr-cta {
  padding: 48px 16px 80px;
  text-align: center;
  border-top: 1px solid rgba(240,240,246,0.07);
}
.vx-rtylr-cta__heading {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--vx-text-primary, #F0F0F6);
  margin: 0 0 12px;
}
.vx-rtylr-cta__text {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--vx-text-secondary, rgba(240,240,246,0.65));
  margin: 0 auto 28px;
  max-width: 480px;
}
.vx-rtylr-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--vx-bg, #111118);
  background: var(--vx-primary, #63C6BD);
  border-radius: 8px;
  padding: 14px 28px;
  min-height: 44px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.vx-rtylr-cta__btn:hover,
.vx-rtylr-cta__btn:focus-visible {
  opacity: 0.88;
  color: var(--vx-bg, #111118);
}

/* ── Responsive ── */
@media (min-width: 480px) {
  .vx-rtylr-hero { padding: 150px 24px 48px; }
  .vx-rtylr-hero__actions { flex-direction: row; }
  .vx-rtylr-stats { padding: 48px 24px; }
  .vx-rtylr-stats__inner { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .vx-rtylr-about { padding: 80px 24px 56px; }
  .vx-rtylr-onedb { margin: 0 24px 72px; padding: 48px 36px; }
  .vx-rtylr-apps { padding: 0 24px 80px; }
  .vx-rtylr-ai { padding: 0 24px 80px; }
  .vx-rtylr-ai__inner { padding: 48px 36px; }
  .vx-rtylr-how { padding: 0 24px 80px; }
  .vx-rtylr-testimonials { padding: 0 24px 80px; }
  .vx-rtylr-pricing { padding: 0 24px 80px; }
  .vx-rtylr-integrations { padding: 0 24px 80px; }
  .vx-rtylr-proof { padding: 0 24px 80px; }
  .vx-rtylr-cta { padding: 64px 24px 100px; }
}

@media (min-width: 768px) {
  .vx-rtylr-hero { padding: 170px 40px 56px; }
  .vx-rtylr-hero__logo { font-size: 60px; }
  .vx-rtylr-onedb { margin: 0 auto 80px; padding: 52px 48px; }
  .vx-rtylr-apps__grid { grid-template-columns: repeat(2, 1fr); }
  .vx-rtylr-steps { grid-template-columns: repeat(2, 1fr); }
  .vx-rtylr-testimonials__grid { grid-template-columns: repeat(3, 1fr); }
  .vx-rtylr-pricing__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
  .vx-rtylr-hero { padding: 190px 40px 64px; }
  .vx-rtylr-hero__logo { font-size: 68px; }
  .vx-rtylr-apps__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .vx-rtylr-app { padding: 28px 24px; }
}

/* ============================================================
   SEO SERVICE PAGES - Stats bar, Why grid, Reach section
   Added for /services/seo-lebanon, seo-saudi-arabia, seo-uae
   ============================================================ */

/* -- Stats bar -- */
.vx-svc-stats {
  padding: 0 16px 48px;
}
.vx-svc-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.vx-svc-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,0.02);
  gap: 4px;
}
.vx-svc-stats__val {
  font-family: var(--vx-font-display);
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  color: var(--vx-primary, #63C6BD);
  line-height: 1;
  letter-spacing: -0.02em;
}
.vx-svc-stats__unit {
  font-size: 0.6em;
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: 0;
}
.vx-svc-stats__label {
  font-size: 11px;
  color: rgba(240,240,246,0.45);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.3;
}

/* -- Answer section -- */
.vx-svc-section--answer {
  background: rgba(99,198,189,0.04);
  border-radius: 16px;
  margin-left: 16px;
  margin-right: 16px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid rgba(99,198,189,0.08);
}
.vx-svc-section__body--lg {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.75;
  max-width: 780px;
  color: rgba(240,240,246,0.75);
}

/* -- Why grid -- */
.vx-svc-section--why {
  /* no special wrapper styles needed - uses standard section */
}
.vx-svc-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.vx-svc-why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 24px 20px;
}
.vx-svc-why-card__title {
  font-family: var(--vx-font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--vx-text-primary, #f0f0f6);
  margin: 0 0 10px;
  line-height: 1.3;
}
.vx-svc-why-card__body {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(240,240,246,0.6);
  margin: 0;
}

/* -- Reach section -- */
/* Pricing signal card */
.vx-svc-signal {
  margin-top: 32px;
  background: rgba(99,198,189,0.06);
  border: 1px solid rgba(99,198,189,0.18);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vx-svc-signal__label {
  font-family: var(--vx-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vx-primary, #63c6bd);
}
.vx-svc-signal__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(240,240,246,0.75);
  margin: 0;
}
@media (min-width: 768px) {
  .vx-svc-signal {
    flex-direction: row;
    align-items: baseline;
    gap: 16px;
  }
  .vx-svc-signal__label {
    white-space: nowrap;
  }
}
.vx-svc-reach {
  /* inherits vx-svc-section padding */
}
.vx-svc-reach__markets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.vx-svc-reach__market {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.vx-svc-reach__market:hover,
.vx-svc-reach__market:focus-visible {
  border-color: rgba(99,198,189,0.3);
  background: rgba(99,198,189,0.05);
}
.vx-svc-reach__market-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--vx-text-primary, #f0f0f6);
  font-family: var(--vx-font-display);
}
.vx-svc-reach__market-link {
  font-size: 13px;
  color: var(--vx-primary, #63C6BD);
  font-weight: 500;
}

/* -- Responsive enhancements -- */
@media (min-width: 480px) {
  .vx-svc-stats { padding: 0 24px 56px; }
  .vx-svc-section--answer { margin-left: 24px; margin-right: 24px; padding-left: 28px; padding-right: 28px; }
  .vx-svc-reach__markets { flex-direction: row; gap: 16px; }
  .vx-svc-reach__market { flex: 1; flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (min-width: 768px) {
  .vx-svc-stats { padding: 0 40px 64px; }
  .vx-svc-stats__grid { grid-template-columns: repeat(4, 1fr); }
  .vx-svc-why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .vx-svc-why-card { padding: 28px 24px; }
  .vx-svc-why-card__title { font-size: 16px; }
  .vx-svc-why-card__body { font-size: 14px; }
}

@media (min-width: 992px) {
  .vx-svc-stats__item { padding: 36px 24px; }
  .vx-svc-section--answer { margin-left: 0; margin-right: 0; }
}
