/*
 * Velocity Marketing Software - Modern CSS Architecture
 * Bootstrap 5 Compatible Design System
 */

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
  /* Primary Colors */
  --vm-primary: #0d66e9;
  --vm-primary-hover: #0a52ba;
  --vm-primary-dark: #084298;
  --vm-primary-light: #4a8ef5;
  --vm-primary-subtle: #e8f1fd;

  /* Secondary/Accent Colors */
  --vm-secondary: #1e293b;
  --vm-secondary-hover: #334155;
  --vm-accent: #10b981;
  --vm-accent-hover: #059669;
  --vm-warning: #f59e0b;
  --vm-danger: #ef4444;
  --vm-info: #06b6d4;

  /* Neutral Colors */
  --vm-white: #ffffff;
  --vm-gray-50: #f8fafc;
  --vm-gray-100: #f1f5f9;
  --vm-gray-200: #e2e8f0;
  --vm-gray-300: #cbd5e1;
  --vm-gray-400: #94a3b8;
  --vm-gray-500: #64748b;
  --vm-gray-600: #475569;
  --vm-gray-700: #334155;
  --vm-gray-800: #1e293b;
  --vm-gray-900: #0f172a;

  /* Typography */
  --vm-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --vm-font-display: 'Plus Jakarta Sans', var(--vm-font-sans);

  /* Font Sizes */
  --vm-text-xs: 1rem;
  --vm-text-sm: 1.125rem;
  --vm-text-base: 1.25rem;
  --vm-text-lg: 1.375rem;
  --vm-text-xl: 1.5rem;
  --vm-text-2xl: 1.75rem;
  --vm-text-3xl: 2.125rem;
  --vm-text-4xl: 2.5rem;
  --vm-text-5xl: 3.5rem;
  --vm-text-6xl: 4.5rem;

  /* Font Weights */
  --vm-font-normal: 400;
  --vm-font-medium: 500;
  --vm-font-semibold: 600;
  --vm-font-bold: 700;

  /* Line Heights */
  --vm-leading-tight: 1.25;
  --vm-leading-normal: 1.5;
  --vm-leading-relaxed: 1.625;

  /* Spacing Scale */
  --vm-space-1: 0.25rem;
  --vm-space-2: 0.5rem;
  --vm-space-3: 0.75rem;
  --vm-space-4: 1rem;
  --vm-space-5: 1.25rem;
  --vm-space-6: 1.5rem;
  --vm-space-8: 2rem;
  --vm-space-10: 2.5rem;
  --vm-space-12: 3rem;
  --vm-space-16: 4rem;
  --vm-space-20: 5rem;
  --vm-space-24: 6rem;

  /* Border Radius */
  --vm-radius-sm: 0.375rem;
  --vm-radius-md: 0.5rem;
  --vm-radius-lg: 0.75rem;
  --vm-radius-xl: 1rem;
  --vm-radius-2xl: 1.5rem;
  --vm-radius-full: 9999px;

  /* Shadows */
  --vm-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --vm-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --vm-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --vm-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --vm-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  /* Transitions */
  --vm-transition-fast: 150ms ease;
  --vm-transition-normal: 250ms ease;
  --vm-transition-slow: 350ms ease;

  /* Container Max Width */
  --vm-container-max: 1320px;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

body {
  font-family: var(--vm-font-sans);
  font-size: var(--vm-text-base);
  line-height: var(--vm-leading-normal);
  color: var(--vm-gray-700);
  background-color: var(--vm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vm-font-display);
  font-weight: var(--vm-font-bold);
  color: var(--vm-gray-900);
  line-height: var(--vm-leading-tight);
}

p, li, td, th, label, span {
  font-size: inherit;
}

.small, small {
  font-size: var(--vm-text-sm) !important;
}

.lead {
  font-size: var(--vm-text-xl) !important;
}

.form-control, .form-select, .btn {
  font-size: var(--vm-text-base);
}

.btn-lg {
  font-size: var(--vm-text-lg);
}

.btn-sm {
  font-size: var(--vm-text-sm);
}

a {
  color: var(--vm-primary);
  text-decoration: none;
  transition: color var(--vm-transition-fast);
}

a:hover {
  color: var(--vm-primary-hover);
}

/* ==========================================================================
   Navigation Styles
   ========================================================================== */

.vm-navbar {
  background: var(--vm-white);
  box-shadow: var(--vm-shadow-sm);
  padding: var(--vm-space-3) 0;
  transition: all var(--vm-transition-normal);
}

.vm-navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.vm-navbar .navbar-brand img {
  height: 45px;
  width: auto;
}

.vm-navbar .nav-link {
  font-weight: var(--vm-font-medium);
  font-size: var(--vm-text-base);
  color: var(--vm-gray-700);
  padding: var(--vm-space-2) var(--vm-space-4) !important;
  transition: color var(--vm-transition-fast);
}

.vm-navbar .nav-link:hover,
.vm-navbar .nav-link:focus {
  color: var(--vm-primary);
}

.vm-navbar .nav-link.active {
  color: var(--vm-primary);
}

.vm-navbar .dropdown-menu {
  border: none;
  box-shadow: var(--vm-shadow-lg);
  border-radius: var(--vm-radius-lg);
  padding: var(--vm-space-2);
  margin-top: var(--vm-space-2);
}

.vm-navbar .dropdown-item {
  padding: var(--vm-space-2) var(--vm-space-4);
  border-radius: var(--vm-radius-md);
  font-weight: var(--vm-font-medium);
  font-size: var(--vm-text-base);
  color: var(--vm-gray-700);
}

.vm-navbar .dropdown-item:hover {
  background-color: var(--vm-primary-subtle);
  color: var(--vm-primary);
}

.vm-navbar .btn-login {
  font-weight: var(--vm-font-semibold);
  font-size: var(--vm-text-base);
}

/* ==========================================================================
   Hero Sections
   ========================================================================== */

.vm-hero {
  padding: var(--vm-space-20) 0;
  position: relative;
  overflow: hidden;
}

.vm-hero-home {
  background: linear-gradient(135deg, var(--vm-primary) 0%, var(--vm-primary-dark) 100%);
  color: var(--vm-white);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.vm-hero-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.vm-hero-page {
  background: linear-gradient(135deg, var(--vm-primary) 0%, var(--vm-primary-dark) 100%);
  color: var(--vm-white);
  padding: var(--vm-space-12) 0 var(--vm-space-16);
}

.vm-hero .badge {
  font-size: var(--vm-text-sm);
  font-weight: var(--vm-font-semibold);
  padding: var(--vm-space-2) var(--vm-space-4);
  border-radius: var(--vm-radius-full);
}

.vm-hero h1 {
  font-size: var(--vm-text-5xl);
  font-weight: var(--vm-font-bold);
  color: inherit;
  margin-bottom: var(--vm-space-6);
}

.vm-hero .lead {
  font-size: var(--vm-text-xl);
  opacity: 0.9;
  margin-bottom: var(--vm-space-8);
}

.vm-hero-image {
  position: relative;
  z-index: 1;
}

.vm-hero-image img {
  border-radius: var(--vm-radius-xl);
  box-shadow: var(--vm-shadow-2xl);
}

/* Page Hero (internal pages) */
.vm-page-hero {
  background: linear-gradient(135deg, var(--vm-primary) 0%, var(--vm-primary-dark) 100%);
  color: var(--vm-white);
  padding: var(--vm-space-12) 0;
}

.vm-page-hero h1 {
  color: var(--vm-white);
  margin-bottom: var(--vm-space-3);
}

.vm-page-hero .lead {
  opacity: 0.9;
  margin-bottom: 0;
}

.vm-page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: var(--vm-space-4);
}

.vm-page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
}

.vm-page-hero .breadcrumb-item.active {
  color: var(--vm-white);
}

.vm-page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Sections
   ========================================================================== */

.vm-section {
  padding: var(--vm-space-16) 0;
}

.vm-section-sm {
  padding: var(--vm-space-12) 0;
}

.vm-section-lg {
  padding: var(--vm-space-24) 0;
}

.vm-section-light {
  background-color: var(--vm-gray-50);
}

.vm-section-dark {
  background-color: var(--vm-gray-900);
  color: var(--vm-white);
}

.vm-section-dark h2,
.vm-section-dark h3,
.vm-section-dark h4 {
  color: var(--vm-white);
}

.vm-section-primary {
  background: linear-gradient(135deg, var(--vm-primary) 0%, var(--vm-primary-dark) 100%);
  color: var(--vm-white);
}

.vm-section-primary h2,
.vm-section-primary h3 {
  color: var(--vm-white);
}

/* Section Headers */
.vm-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--vm-space-12);
}

.vm-section-header .overline {
  font-size: var(--vm-text-sm);
  font-weight: var(--vm-font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vm-primary);
  margin-bottom: var(--vm-space-3);
}

.vm-section-header h2 {
  font-size: var(--vm-text-4xl);
  margin-bottom: var(--vm-space-4);
}

.vm-section-header p {
  font-size: var(--vm-text-lg);
  color: var(--vm-gray-600);
}

/* ==========================================================================
   Cards
   ========================================================================== */

.vm-card {
  background: var(--vm-white);
  border-radius: var(--vm-radius-xl);
  box-shadow: var(--vm-shadow-md);
  padding: var(--vm-space-8);
  height: 100%;
  transition: all var(--vm-transition-normal);
  border: 1px solid var(--vm-gray-100);
}

.vm-card:hover {
  box-shadow: var(--vm-shadow-xl);
  transform: translateY(-4px);
}

.vm-card-icon {
  width: 60px;
  height: 60px;
  background: var(--vm-primary-subtle);
  border-radius: var(--vm-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--vm-space-5);
}

.vm-card-icon i {
  font-size: 1.5rem;
  color: var(--vm-primary);
}

.vm-card h3 {
  font-size: var(--vm-text-xl);
  margin-bottom: var(--vm-space-3);
}

.vm-card p {
  color: var(--vm-gray-600);
  margin-bottom: 0;
}

/* Feature Card */
.vm-feature-card {
  text-align: center;
}

.vm-feature-card .vm-card-icon {
  margin-left: auto;
  margin-right: auto;
}

/* Pricing Card */
.vm-pricing-card {
  text-align: center;
  position: relative;
}

.vm-pricing-card.featured {
  border: 2px solid var(--vm-primary);
  transform: scale(1.05);
}

.vm-pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vm-primary);
  color: var(--vm-white);
  padding: var(--vm-space-1) var(--vm-space-4);
  border-radius: var(--vm-radius-full);
  font-size: var(--vm-text-sm);
  font-weight: var(--vm-font-semibold);
}

.vm-pricing-card .price {
  font-size: var(--vm-text-5xl);
  font-weight: var(--vm-font-bold);
  color: var(--vm-gray-900);
}

.vm-pricing-card .price span {
  font-size: var(--vm-text-lg);
  font-weight: var(--vm-font-normal);
  color: var(--vm-gray-500);
}

.vm-pricing-card ul {
  list-style: none;
  padding: 0;
  margin: var(--vm-space-6) 0;
  text-align: left;
}

.vm-pricing-card ul li {
  padding: var(--vm-space-2) 0;
  color: var(--vm-gray-600);
  display: flex;
  align-items: center;
  gap: var(--vm-space-3);
}

.vm-pricing-card ul li i {
  color: var(--vm-accent);
}

/* Testimonial Card */
.vm-testimonial-card {
  padding: var(--vm-space-8);
}

.vm-testimonial-card .quote {
  font-size: var(--vm-text-lg);
  font-style: italic;
  color: var(--vm-gray-700);
  margin-bottom: var(--vm-space-6);
  line-height: var(--vm-leading-relaxed);
}

.vm-testimonial-card .author {
  display: flex;
  align-items: center;
  gap: var(--vm-space-4);
}

.vm-testimonial-card .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--vm-radius-full);
  background: var(--vm-primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--vm-font-bold);
  color: var(--vm-primary);
}

.vm-testimonial-card .author-info h4 {
  font-size: var(--vm-text-base);
  margin-bottom: 0;
}

.vm-testimonial-card .author-info p {
  font-size: var(--vm-text-sm);
  color: var(--vm-gray-500);
  margin-bottom: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.vm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--vm-space-2);
  padding: var(--vm-space-3) var(--vm-space-6);
  font-size: var(--vm-text-base);
  font-weight: var(--vm-font-semibold);
  border-radius: var(--vm-radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--vm-transition-fast);
  text-decoration: none;
}

.vm-btn-primary {
  background: var(--vm-primary);
  color: var(--vm-white);
  border-color: var(--vm-primary);
}

.vm-btn-primary:hover {
  background: var(--vm-primary-hover);
  border-color: var(--vm-primary-hover);
  color: var(--vm-white);
}

.vm-btn-secondary {
  background: var(--vm-secondary);
  color: var(--vm-white);
  border-color: var(--vm-secondary);
}

.vm-btn-secondary:hover {
  background: var(--vm-secondary-hover);
  border-color: var(--vm-secondary-hover);
  color: var(--vm-white);
}

.vm-btn-outline {
  background: transparent;
  color: var(--vm-primary);
  border-color: var(--vm-primary);
}

.vm-btn-outline:hover {
  background: var(--vm-primary);
  color: var(--vm-white);
}

.vm-btn-outline-light {
  background: transparent;
  color: var(--vm-white);
  border-color: var(--vm-white);
}

.vm-btn-outline-light:hover {
  background: var(--vm-white);
  color: var(--vm-primary);
}

.vm-btn-light {
  background: var(--vm-white);
  color: var(--vm-primary);
  border-color: var(--vm-white);
}

.vm-btn-light:hover {
  background: var(--vm-gray-100);
  border-color: var(--vm-gray-100);
  color: var(--vm-primary);
}

.vm-btn-lg {
  padding: var(--vm-space-4) var(--vm-space-8);
  font-size: var(--vm-text-lg);
}

.vm-btn-sm {
  padding: var(--vm-space-2) var(--vm-space-4);
  font-size: var(--vm-text-sm);
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */

.vm-trust-bar {
  padding: var(--vm-space-10) 0;
  background: var(--vm-gray-50);
  border-bottom: 1px solid var(--vm-gray-200);
}

.vm-trust-bar p {
  color: var(--vm-gray-500);
  font-weight: var(--vm-font-medium);
  margin-bottom: var(--vm-space-6);
}

.vm-trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--vm-space-12);
  flex-wrap: wrap;
  opacity: 0.6;
}

.vm-trust-logos img {
  height: 30px;
  width: auto;
  filter: grayscale(100%);
  transition: all var(--vm-transition-normal);
}

.vm-trust-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   Stats Counter
   ========================================================================== */

.vm-stats {
  display: flex;
  justify-content: center;
  gap: var(--vm-space-16);
  flex-wrap: wrap;
}

.vm-stat {
  text-align: center;
}

.vm-stat-number {
  font-size: var(--vm-text-5xl);
  font-weight: var(--vm-font-bold);
  color: var(--vm-primary);
  line-height: 1;
  margin-bottom: var(--vm-space-2);
}

.vm-stat-label {
  font-size: var(--vm-text-base);
  color: var(--vm-gray-600);
  font-weight: var(--vm-font-medium);
}

.vm-section-dark .vm-stat-number,
.vm-section-primary .vm-stat-number {
  color: var(--vm-white);
}

.vm-section-dark .vm-stat-label,
.vm-section-primary .vm-stat-label {
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Feature Showcase (alternating sections)
   ========================================================================== */

.vm-feature-row {
  display: flex;
  align-items: center;
  gap: var(--vm-space-16);
  margin-bottom: var(--vm-space-16);
}

.vm-feature-row:last-child {
  margin-bottom: 0;
}

.vm-feature-row.reverse {
  flex-direction: row-reverse;
}

.vm-feature-content {
  flex: 1;
}

.vm-feature-content h3 {
  font-size: var(--vm-text-3xl);
  margin-bottom: var(--vm-space-4);
}

.vm-feature-content p {
  font-size: var(--vm-text-lg);
  color: var(--vm-gray-600);
  margin-bottom: var(--vm-space-6);
}

.vm-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--vm-space-3);
  padding: var(--vm-space-2) 0;
  color: var(--vm-gray-700);
}

.vm-feature-list li i {
  color: var(--vm-accent);
  margin-top: 4px;
}

.vm-feature-image {
  flex: 1;
}

.vm-feature-image img {
  border-radius: var(--vm-radius-xl);
  box-shadow: var(--vm-shadow-xl);
  width: 100%;
}

/* ==========================================================================
   CTA Sections
   ========================================================================== */

.vm-cta {
  text-align: center;
  padding: var(--vm-space-16) 0;
}

.vm-cta h2 {
  font-size: var(--vm-text-4xl);
  margin-bottom: var(--vm-space-4);
}

.vm-cta p {
  font-size: var(--vm-text-xl);
  margin-bottom: var(--vm-space-8);
  opacity: 0.9;
}

.vm-cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--vm-space-4);
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.vm-footer {
  background: var(--vm-gray-900);
  color: var(--vm-gray-400);
  padding: var(--vm-space-16) 0 var(--vm-space-8);
}

.vm-footer h4 {
  color: var(--vm-white);
  font-size: var(--vm-text-lg);
  margin-bottom: var(--vm-space-6);
}

.vm-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-footer-links li {
  margin-bottom: var(--vm-space-3);
}

.vm-footer-links a {
  color: var(--vm-gray-400);
  transition: color var(--vm-transition-fast);
}

.vm-footer-links a:hover {
  color: var(--vm-white);
}

.vm-footer-social {
  display: flex;
  gap: var(--vm-space-4);
  margin-top: var(--vm-space-6);
}

.vm-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--vm-radius-full);
  background: var(--vm-gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vm-gray-400);
  transition: all var(--vm-transition-fast);
}

.vm-footer-social a:hover {
  background: var(--vm-primary);
  color: var(--vm-white);
}

.vm-footer-bottom {
  border-top: 1px solid var(--vm-gray-800);
  padding-top: var(--vm-space-8);
  margin-top: var(--vm-space-12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--vm-space-4);
}

.vm-footer-bottom p {
  margin: 0;
  color: var(--vm-gray-500);
}

.vm-footer-legal {
  display: flex;
  gap: var(--vm-space-6);
}

.vm-footer-legal a {
  color: var(--vm-gray-500);
  font-size: var(--vm-text-sm);
}

.vm-footer-legal a:hover {
  color: var(--vm-white);
}

/* ==========================================================================
   Forms
   ========================================================================== */

.vm-form-control {
  border: 2px solid var(--vm-gray-200);
  border-radius: var(--vm-radius-lg);
  padding: var(--vm-space-3) var(--vm-space-4);
  font-size: var(--vm-text-base);
  transition: all var(--vm-transition-fast);
  width: 100%;
}

.vm-form-control:focus {
  border-color: var(--vm-primary);
  box-shadow: 0 0 0 3px var(--vm-primary-subtle);
  outline: none;
}

.vm-form-label {
  font-weight: var(--vm-font-medium);
  color: var(--vm-gray-700);
  margin-bottom: var(--vm-space-2);
  display: block;
}

.vm-form-group {
  margin-bottom: var(--vm-space-5);
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.vm-text-primary { color: var(--vm-primary) !important; }
.vm-text-muted { color: var(--vm-gray-500) !important; }
.vm-text-white { color: var(--vm-white) !important; }

.vm-bg-primary { background-color: var(--vm-primary) !important; }
.vm-bg-light { background-color: var(--vm-gray-50) !important; }
.vm-bg-dark { background-color: var(--vm-gray-900) !important; }

.vm-shadow { box-shadow: var(--vm-shadow-md); }
.vm-shadow-lg { box-shadow: var(--vm-shadow-lg); }
.vm-shadow-xl { box-shadow: var(--vm-shadow-xl); }

.vm-rounded { border-radius: var(--vm-radius-lg); }
.vm-rounded-xl { border-radius: var(--vm-radius-xl); }
.vm-rounded-2xl { border-radius: var(--vm-radius-2xl); }

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 991.98px) {
  .vm-hero h1 {
    font-size: var(--vm-text-4xl);
  }

  .vm-section-header h2 {
    font-size: var(--vm-text-3xl);
  }

  .vm-feature-row {
    flex-direction: column;
    gap: var(--vm-space-8);
  }

  .vm-feature-row.reverse {
    flex-direction: column;
  }

  .vm-stats {
    gap: var(--vm-space-8);
  }

  .vm-pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 767.98px) {
  .vm-hero {
    padding: var(--vm-space-12) 0;
  }

  .vm-hero h1 {
    font-size: var(--vm-text-3xl);
  }

  .vm-section {
    padding: var(--vm-space-12) 0;
  }

  .vm-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .vm-cta h2 {
    font-size: var(--vm-text-3xl);
  }
}

/* ==========================================================================
   Legacy Class Mappings (for gradual migration)
   ========================================================================== */

/* Map old slice classes to new section styles */
.slice { padding: var(--vm-space-16) 0; }
.bg-2, .bg-3 { background-color: var(--vm-gray-50); }

/* Map old w-section class */
.w-section { }
.w-section.inverse { background: var(--vm-gray-900); color: var(--vm-white); }

/* Map old button classes */
.btn-one {
  background: var(--vm-primary);
  color: var(--vm-white);
  border: none;
  padding: var(--vm-space-3) var(--vm-space-6);
  border-radius: var(--vm-radius-lg);
  font-weight: var(--vm-font-semibold);
  transition: all var(--vm-transition-fast);
}

.btn-one:hover {
  background: var(--vm-primary-hover);
  color: var(--vm-white);
}

.btn-two {
  background: var(--vm-secondary);
  color: var(--vm-white);
  border: none;
  padding: var(--vm-space-3) var(--vm-space-6);
  border-radius: var(--vm-radius-lg);
  font-weight: var(--vm-font-semibold);
  transition: all var(--vm-transition-fast);
}

.btn-two:hover {
  background: var(--vm-secondary-hover);
  color: var(--vm-white);
}
