

:root {
  --vo-blue: #0358f7;
  --vo-blue-dark: #0247c6;
  --vo-blue-soft: rgba(3, 88, 247, 0.08);
  --vo-text: #0f172a;
  --vo-muted: #64748b;
  --vo-bg: #ffffff;
  --vo-bg-alt: #eceeef;
  --vo-border: #e2e8f0;
  --vo-radius: 12px;
  --vo-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --vo-max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--vo-font);
  color: var(--vo-text);
  background: var(--vo-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.vo-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vo-border);
}

.vo-nav-inner {
  max-width: var(--vo-max);
  margin: 0 auto;
  padding: 0.35rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}

.vo-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.vo-logo img,
.vo-logo-img {
  display: block;
  height: 1.5rem;
  max-height: 1.5rem;
  width: auto;
  max-width: 2.75rem;
  object-fit: contain;
  animation: vo-logo-redraw 5s linear infinite;
}

@keyframes vo-logo-redraw {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  /* 0.8s of a 5s cycle = 16% */
  16% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vo-logo img,
  .vo-logo-img {
    animation: none;
    clip-path: none;
    opacity: 1;
  }
}

.vo-brand {
  color: var(--vo-blue);
  font-weight: 700;
}

.vo-footer-copy .vo-brand {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.vo-nav-links {
  display: none;
  gap: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--vo-muted);
}

.vo-nav-links a:hover { color: var(--vo-blue); }

.vo-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.vo-nav .vo-btn {
  min-height: 32px;
  padding: 0.3rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1.2;
}

.vo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, background 0.15s;
}

.vo-btn:active { transform: scale(0.98); }

.vo-btn .vo-brand {
  margin-left: 0.35em;
}

.vo-btn-ghost {
  background: transparent;
  color: var(--vo-text);
}

.vo-btn-ghost:hover { background: var(--vo-blue-soft); color: var(--vo-blue); }

.vo-btn-primary {
  background: var(--vo-blue);
  color: #fff;
}

.vo-btn-primary:hover { background: var(--vo-blue-dark); }

.vo-btn-primary .vo-brand {
  color: inherit;
  font-weight: inherit;
}

.vo-btn-outline {
  background: #fff;
  color: var(--vo-blue);
  border: 1.5px solid var(--vo-blue);
}

.vo-hero {
  max-width: var(--vo-max);
  margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
  text-align: center;
}

.vo-hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.vo-hero p {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--vo-muted);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.vo-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.vo-section {
  padding: 4rem 1.25rem;
  scroll-margin-top: 5rem;
}

.vo-section-alt { background: var(--vo-bg-alt); }

.vo-section-inner {
  max-width: var(--vo-max);
  margin: 0 auto;
}

.vo-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 0.5rem;
}

.vo-section .vo-lead {
  text-align: center;
  color: var(--vo-muted);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.vo-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.vo-card {
  background: #fff;
  border: 1px solid var(--vo-border);
  border-radius: var(--vo-radius);
  padding: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.vo-section-alt .vo-card { background: #fff; }

.vo-card:hover {
  border-color: rgba(3, 88, 247, 0.35);
  box-shadow: 0 8px 30px rgba(3, 88, 247, 0.08);
}

.vo-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--vo-blue-soft);
  color: var(--vo-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  overflow: hidden;
  flex-shrink: 0;
}

.vo-card-icon img {
  display: block;
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  object-fit: contain;
}

.vo-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.vo-card p {
  margin: 0;
  color: var(--vo-muted);
  font-size: 0.9375rem;
}


#features .vo-card-icon {
  margin-left: auto;
  margin-right: auto;
}

#features .vo-card h3 {
  text-align: center;
}

#features .vo-card p {
  text-align: justify;
  hyphens: auto;
}

.vo-steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

.vo-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.vo-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vo-blue);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.vo-pricing {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}


body.vo-pricing-page {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

body.vo-pricing-page .vo-pricing-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.vo-pricing-page .vo-pricing-main .vo-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.vo-billing-toggle {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  margin: 0 auto 1.75rem;
  border: 1px solid var(--vo-border);
  border-radius: 999px;
  background: #fff;
}

.vo-billing-opt {
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--vo-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.vo-billing-opt.is-active {
  background: var(--vo-blue);
  color: #fff;
}

.vo-billing-save {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.vo-billing-opt:not(.is-active) .vo-billing-save {
  display: none;
}

.vo-price-card {
  border: 1px solid var(--vo-border);
  border-radius: var(--vo-radius);
  padding: 1.75rem;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.vo-price-card.featured {
  border-color: var(--vo-blue);
  box-shadow: 0 12px 40px rgba(3, 88, 247, 0.12);
}

.vo-price-card h3 { margin: 0; font-size: 1.15rem; }

.vo-price {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.5rem 0;
  color: var(--vo-blue);
}

.vo-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vo-muted);
}

.vo-price-period {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vo-muted);
}

.vo-price-billed {
  margin: -0.25rem 0 0.5rem;
  font-size: 0.8125rem;
  color: var(--vo-muted);
  min-height: 1.25rem;
}

.vo-price-billed-muted {
  color: var(--vo-muted);
}

.vo-price-custom {
  font-size: 1.5rem;
  font-weight: 800;
}

.vo-price-card .vo-btn {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.vo-price-card ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--vo-muted);
  font-size: 0.9rem;
  flex: 1;
}

.vo-cta-band {
  text-align: center;
  padding: 4rem 1.25rem;
  background: linear-gradient(135deg, var(--vo-blue) 0%, #1a6bff 100%);
  color: #fff;
}

.vo-cta-band h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.vo-cta-band p {
  opacity: 0.9;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.vo-cta-band .vo-brand-on-dark {
  color: #fff;
  font-weight: 800;
}

.vo-cta-band .vo-btn-primary {
  background: #fff;
  color: var(--vo-blue);
}

.vo-footer {
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--vo-border);
  text-align: center;
}

.vo-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .vo-footer {
    padding: 1.25rem 1rem;
  }

  .vo-footer-legal {
    gap: 0.35rem 0.75rem;
    margin-bottom: 0.65rem;
  }
}

.vo-footer-legal a {
  color: var(--vo-muted);
  text-decoration: none;
}

.vo-footer-legal a:hover { color: var(--vo-blue); }

.vo-footer-copy {
  font-size: 0.8125rem;
  color: var(--vo-muted);
}

.vo-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vo-fade.visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 768px) {
  .vo-nav-links { display: flex; }
  .vo-grid { grid-template-columns: repeat(3, 1fr); }
  .vo-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .vo-pricing { grid-template-columns: repeat(2, 1fr); }
  .vo-steps { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1100px) {
  .vo-pricing { grid-template-columns: repeat(4, 1fr); }
}
