/* VendStar CSS — Two-Sided Cleaning Vendor Marketplace
   Design: Shades of blue, clean/modern/professional, Angi/Thumbtack-style */

/* ============================================
   VARIABLES & RESET
============================================ */
:root {
  --blue-900: #0F2A4A;
  --blue-800: #1E3A5F;
  --blue-700: #1E4D8C;
  --blue-600: #2E6AB5;
  --blue-500: #3B82C4;
  --blue-400: #60A5FA;
  --blue-300: #93C5FD;
  --blue-200: #BFDBFE;
  --blue-100: #DBEAFE;
  --blue-50: #EFF6FF;

  --text-dark: #1A1A2E;
  --text-medium: #334155;
  --text-light: #64748B;
  --text-muted: #94A3B8;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;

  --green-500: #22C55E;
  --green-100: #DCFCE7;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', var(--font-sans);

  --shadow-sm: 0 1px 3px rgba(30, 77, 140, 0.08);
  --shadow-md: 0 4px 12px rgba(30, 77, 140, 0.12);
  --shadow-lg: 0 8px 30px rgba(30, 77, 140, 0.15);
  --shadow-xl: 0 20px 60px rgba(30, 77, 140, 0.2);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; }

/* ============================================
   UTILITIES
============================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-500);
  background: var(--blue-100);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto 40px;
}

.section-header { text-align: center; margin-bottom: 56px; }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--blue-700);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--blue-700);
  border-color: var(--blue-500);
}
.btn-secondary:hover {
  background: var(--blue-50);
}

.btn-white {
  background: var(--white);
  color: var(--blue-700);
}
.btn-white:hover {
  background: var(--gray-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   HEADER / NAV
============================================ */
.vs-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.vs-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.vs-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-700);
  flex-shrink: 0;
}

.vs-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 18px;
}

.vs-logo span { color: var(--blue-400); }

.vs-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.vs-nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  transition: all var(--transition);
}

.vs-nav-links a:hover, .vs-nav-links a.active {
  background: var(--blue-50);
  color: var(--blue-700);
}

.vs-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.vs-nav-actions .btn { padding: 9px 18px; font-size: 14px; }

/* ============================================
   HERO SECTION
============================================ */
.vs-hero {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--blue-500) 100%);
  color: var(--white);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.vs-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15), transparent 70%);
  border-radius: 50%;
}

.vs-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 196, 0.2), transparent 70%);
  border-radius: 50%;
}

.vs-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.vs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--blue-200);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.vs-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.vs-hero h1 .highlight {
  background: linear-gradient(135deg, var(--blue-300), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vs-hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.vs-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.vs-hero-stat { text-align: center; }
.vs-hero-stat-number {
  font-size: 36px;
  font-weight: 800;
  font-family: var(--font-display);
}
.vs-hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   TRUST BADGES
============================================ */
.vs-trust-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}

.vs-trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.vs-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-medium);
}

.vs-trust-badge-icon {
  width: 32px;
  height: 32px;
  background: var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  font-size: 14px;
}

/* ============================================
   HOW IT WORKS
============================================ */
.vs-how {
  background: var(--white);
}

.vs-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 0;
}

.vs-step {
  position: relative;
  padding: 32px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.vs-step:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.vs-step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.vs-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.vs-step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   SPLIT SECTIONS (Businesses / Vendors)
============================================ */
.vs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vs-split.reverse { direction: rtl; }
.vs-split.reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .vs-split { grid-template-columns: 1fr; gap: 32px; }
  .vs-split.reverse { direction: ltr; }
}

.vs-split-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 8px;
}

.vs-split h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
}

.vs-split p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 28px;
}

.vs-split-image {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  border-radius: var(--radius-xl);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.vs-split-image::before {
  content: '';
  position: absolute;
  inset: 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.06'%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");
}

.vs-split-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.vs-split-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vs-split-feature-icon {
  width: 28px;
  height: 28px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.vs-split-feature-icon svg { width: 14px; height: 14px; color: var(--green-500); }

.vs-split-feature span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-medium);
}

/* ============================================
   CLEANING CATEGORIES
============================================ */
.vs-categories {
  background: var(--gray-50);
}

.vs-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.vs-category-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.vs-category-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.vs-category-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
}

.vs-category-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================
   PRICING
============================================ */
.vs-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.vs-pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  transition: all var(--transition);
}

.vs-pricing-card.featured {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-xl);
}

.vs-pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-700);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 50px;
}

.vs-pricing-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-500);
  margin-bottom: 8px;
}

.vs-pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.vs-pricing-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.vs-pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.vs-pricing-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.vs-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.vs-pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-medium);
}

.vs-pricing-feature-icon {
  width: 20px;
  height: 20px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vs-pricing-feature-icon svg { width: 10px; height: 10px; color: var(--green-500); }

.vs-pricing-card .btn { width: 100%; justify-content: center; }

/* ============================================
   FAQ
============================================ */
.vs-faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vs-faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.vs-faq-item:hover { border-color: var(--blue-200); }

.vs-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  gap: 12px;
}

.vs-faq-question:hover { color: var(--blue-700); }

.vs-faq-icon {
  width: 24px;
  height: 24px;
  background: var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.vs-faq-icon svg { width: 12px; height: 12px; color: var(--blue-600); }

.vs-faq-item.open .vs-faq-icon { transform: rotate(45deg); }

.vs-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.vs-faq-item.open .vs-faq-answer { max-height: 300px; }

.vs-faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
============================================ */
.vs-cta {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.vs-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
}

.vs-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 36px;
}

.vs-cta .btn-white {
  font-size: 16px;
  padding: 14px 32px;
}

/* ============================================
   FORMS
============================================ */
.vs-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.vs-form-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.vs-form-subtitle {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 32px;
}

.vs-form-group {
  margin-bottom: 20px;
}

.vs-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.vs-form-group input,
.vs-form-group select,
.vs-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
}

.vs-form-group input:focus,
.vs-form-group select:focus,
.vs-form-group textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 196, 0.15);
}

.vs-form-group textarea { resize: vertical; min-height: 100px; }

.vs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vs-form-section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 16px;
}

.vs-form .btn-primary { width: 100%; justify-content: center; padding: 14px; font-size: 16px; }

/* ============================================
   FOOTER
============================================ */
.vs-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.vs-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .vs-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.vs-footer-brand { }
.vs-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.vs-footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.vs-footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.vs-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.vs-footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.vs-footer-col a:hover { color: var(--blue-300); }

.vs-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.vs-footer-bottom a { color: rgba(255,255,255,0.5); }
.vs-footer-bottom a:hover { color: var(--blue-300); }

/* ============================================
   SUCCESS PAGES
============================================ */
.vs-success-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.vs-success-icon {
  width: 80px;
  height: 80px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.vs-success-icon svg { width: 40px; height: 40px; color: var(--green-500); }

.vs-success-page h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.vs-success-page p {
  font-size: 16px;
  color: var(--text-medium);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ============================================
   ABOUT PAGE
============================================ */
.vs-about-hero {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: white;
  padding: 80px 0;
  text-align: center;
}

.vs-about-content {
  max-width: 800px;
  margin: 0 auto;
}

.vs-about-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
}

.vs-about-content > p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.vs-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.vs-info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.vs-info-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.vs-info-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
}

.vs-info-card .contact-line {
  font-size: 15px;
  color: var(--blue-700);
  font-weight: 600;
  margin-top: 4px;
}

/* ============================================
   PAGE HEADER (inner pages)
============================================ */
.vs-page-header {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: white;
  padding: 64px 0;
  text-align: center;
}

.vs-page-header h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.vs-page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================
   MOBILE RESPONSIVE
============================================ */
@media (max-width: 768px) {
  .vs-nav-links { display: none; }
  .vs-hero-stats { gap: 24px; }
  .vs-hero-stat-number { font-size: 28px; }
  .vs-pricing-grid { grid-template-columns: 1fr; }
  .vs-form-row { grid-template-columns: 1fr; }
  .section-pad { padding: 56px 0; }
  .vs-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fadeUp 0.5s ease forwards; }

/* Scroll-triggered animations */
.vs-step, .vs-category-card, .vs-pricing-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.vs-step.visible, .vs-category-card.visible, .vs-pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   CHECKBOXES & RADIOS (form enhancements)
============================================ */
.vs-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.vs-checkbox-label,
.vs-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  transition: all var(--transition);
}

.vs-checkbox-label:hover,
.vs-radio-label:hover {
  border-color: var(--blue-300);
  background: var(--blue-50);
}

.vs-checkbox-label input,
.vs-radio-label input {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--blue-600);
}

.vs-checkbox-label:has(input:checked),
.vs-radio-label:has(input:checked) {
  border-color: var(--blue-500);
  background: var(--blue-50);
  color: var(--blue-700);
}

.vs-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.vs-radio-label {
  flex-direction: row;
}

/* ============================================
   CERTIFICATION PAGE
============================================ */
.vs-cert-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vs-cert-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}

.vs-cert-step:last-child { border-bottom: none; }

.vs-cert-step-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-display);
}

.vs-cert-step-content { flex: 1; }

.vs-cert-step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.vs-cert-step-content p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 14px;
}

.vs-cert-req-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-700);
  background: var(--blue-100);
  padding: 4px 12px;
  border-radius: 50px;
}

@media (max-width: 600px) {
  .vs-cert-step { flex-direction: column; gap: 16px; }
  .vs-cert-step-icon { width: 40px; height: 40px; min-width: 40px; font-size: 16px; }
}

/* ============================================
   DASHBOARD PAGE
============================================ */
.vs-dashboard-container { }

/* ============================================
   MOBILE RESPONSIVE (Phase 2 additions)
============================================ */
@media (max-width: 768px) {
  .vs-checkbox-grid { grid-template-columns: 1fr 1fr; }
  .vs-split { grid-template-columns: 1fr; gap: 32px; }
  .vs-split.reverse { direction: ltr; }
  .vs-nav-links { display: none; }
  .vs-hero-stats { gap: 24px; }
  .vs-hero-stat-number { font-size: 28px; }
  .vs-pricing-grid { grid-template-columns: 1fr; }
  .vs-form-row { grid-template-columns: 1fr; }
  .section-pad { padding: 56px 0; }
  .vs-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}