/* ============================================
   Vidzila.com - Global Stylesheet
   Design DNA: Clean/Modern/Minimalist (hdxtv.us clone)
   Colors: White #fff, Dark #191919, Green #25d366, Light Gray #f5f5f5
   Fonts: Montserrat + Noto Sans
   Prefix: vz-*
   ============================================ */

:root {
  --vz-bg: #ffffff;
  --vz-bg-alt: #f5f5f5;
  --vz-bg-dark: #191919;
  --vz-accent: #25d366;
  --vz-accent-hover: #1da851;
  --vz-accent-light: rgba(37, 211, 102, 0.1);
  --vz-text: #191919;
  --vz-text-muted: #555555;
  --vz-text-light: #888888;
  --vz-text-white: #ffffff;
  --vz-border: rgba(0, 0, 0, 0.08);
  --vz-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --vz-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --vz-radius: 12px;
  --vz-radius-sm: 8px;
  --vz-radius-pill: 50px;
  --vz-transition: 0.3s ease;
  --vz-max-width: 1200px;
  --vz-font-heading: 'Montserrat', sans-serif;
  --vz-font-body: 'Noto Sans', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--vz-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--vz-text);
  background: var(--vz-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vz-accent); text-decoration: none; transition: color var(--vz-transition); }
a:hover { color: var(--vz-accent-hover); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vz-font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--vz-text);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; }

/* Container */
.vz-container {
  max-width: var(--vz-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Section spacing */
.vz-section {
  padding: 80px 0;
}

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

.vz-section--dark {
  background: var(--vz-bg-dark);
  color: var(--vz-text-white);
}

.vz-section--dark h2,
.vz-section--dark h3,
.vz-section--dark h4 {
  color: var(--vz-text-white);
}

.vz-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.vz-section-title h2 {
  margin-bottom: 12px;
}

.vz-section-title p {
  color: var(--vz-text-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.vz-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--vz-bg);
  border-bottom: 1px solid var(--vz-border);
  transition: box-shadow var(--vz-transition);
}

.vz-header.scrolled {
  box-shadow: var(--vz-shadow);
}

.vz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: var(--vz-max-width);
  margin: 0 auto;
  height: 70px;
}

.vz-logo {
  font-family: var(--vz-font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--vz-text);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.vz-logo span {
  color: var(--vz-accent);
}

.vz-nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
  padding: 0;
  margin: 0;
}

.vz-nav-links a {
  color: var(--vz-text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--vz-transition);
  text-decoration: none;
}

.vz-nav-links a:hover,
.vz-nav-links a.active {
  color: var(--vz-accent);
}

/* Dropdown */
.vz-dropdown {
  position: relative;
}

.vz-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.vz-dropdown-toggle::after {
  content: '';
  border: 4px solid transparent;
  border-top-color: currentColor;
  margin-top: 2px;
}

.vz-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--vz-bg);
  border: 1px solid var(--vz-border);
  border-radius: var(--vz-radius-sm);
  box-shadow: var(--vz-shadow-lg);
  min-width: 200px;
  padding: 8px 0;
  z-index: 100;
}

.vz-dropdown:hover .vz-dropdown-menu {
  display: block;
}

.vz-dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
}

.vz-dropdown-menu a:hover {
  background: var(--vz-bg-alt);
}

.vz-nav-cta {
  background: var(--vz-accent);
  color: var(--vz-text-white) !important;
  padding: 10px 22px;
  border-radius: var(--vz-radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--vz-transition), transform var(--vz-transition);
}

.vz-nav-cta:hover {
  background: var(--vz-accent-hover);
  color: var(--vz-text-white) !important;
  transform: translateY(-1px);
}

/* Mobile menu */
.vz-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.vz-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vz-text);
  margin: 5px 0;
  transition: var(--vz-transition);
}

/* ============================================
   BUTTONS
   ============================================ */
.vz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--vz-radius-pill);
  font-family: var(--vz-font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--vz-transition);
  text-decoration: none;
  line-height: 1.4;
}

.vz-btn--primary {
  background: var(--vz-accent);
  color: var(--vz-text-white);
}

.vz-btn--primary:hover {
  background: var(--vz-accent-hover);
  color: var(--vz-text-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.vz-btn--outline {
  background: transparent;
  color: var(--vz-accent);
  border: 2px solid var(--vz-accent);
}

.vz-btn--outline:hover {
  background: var(--vz-accent);
  color: var(--vz-text-white);
}

.vz-btn--white {
  background: var(--vz-bg);
  color: var(--vz-text);
}

.vz-btn--white:hover {
  background: var(--vz-bg-alt);
  transform: translateY(-2px);
}

.vz-btn--dark {
  background: var(--vz-bg-dark);
  color: var(--vz-text-white);
}

.vz-btn--dark:hover {
  background: #2a2a2a;
  color: var(--vz-text-white);
}

.vz-btn--lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.vz-btn--sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ============================================
   HERO
   ============================================ */
.vz-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: var(--vz-bg);
}

.vz-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vz-hero h1 .vz-highlight {
  color: var(--vz-accent);
}

.vz-hero p {
  font-size: 1.15rem;
  color: var(--vz-text-muted);
  max-width: 700px;
  margin: 0 auto 30px;
}

.vz-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.vz-hero-image {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--vz-radius);
  overflow: hidden;
}

.vz-hero-image img {
  width: 100%;
  border-radius: var(--vz-radius);
}

/* ============================================
   GUARANTEE BAR
   ============================================ */
.vz-guarantee {
  background: var(--vz-bg-alt);
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid var(--vz-border);
  border-bottom: 1px solid var(--vz-border);
}

.vz-guarantee p {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: var(--vz-text);
}

.vz-guarantee .vz-highlight {
  color: var(--vz-accent);
}

/* ============================================
   PRICING CARDS
   ============================================ */
.vz-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vz-price-card {
  background: var(--vz-bg);
  border: 1px solid var(--vz-border);
  border-radius: var(--vz-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--vz-transition);
  position: relative;
  overflow: hidden;
}

.vz-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vz-shadow-lg);
}

.vz-price-card--featured {
  border-color: var(--vz-accent);
  box-shadow: 0 0 0 2px var(--vz-accent);
}

.vz-price-card__badge {
  position: absolute;
  top: 14px;
  right: -32px;
  background: var(--vz-accent);
  color: var(--vz-text-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
}

.vz-price-card__name {
  font-family: var(--vz-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.vz-price-card__price {
  font-family: var(--vz-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--vz-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.vz-price-card__price .vz-currency {
  font-size: 1.2rem;
  vertical-align: super;
}

.vz-price-card__period {
  font-size: 0.9rem;
  color: var(--vz-text-muted);
  margin-bottom: 20px;
}

.vz-price-card__original {
  text-decoration: line-through;
  color: var(--vz-text-light);
  font-size: 0.9rem;
}

.vz-price-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  font-size: 0.9rem;
}

.vz-price-card__features li {
  padding: 6px 0;
  border-bottom: 1px solid var(--vz-border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.vz-price-card__features li:last-child {
  border-bottom: none;
}

.vz-price-card__features li::before {
  content: '\2713';
  color: var(--vz-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.vz-price-card .vz-btn {
  width: 100%;
}

/* ============================================
   PAYMENT METHODS
   ============================================ */
.vz-payments {
  text-align: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--vz-border);
}

.vz-payments-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.vz-payment-method {
  text-align: center;
  font-size: 0.9rem;
  color: var(--vz-text-muted);
}

.vz-payment-method strong {
  display: block;
  color: var(--vz-text);
  font-weight: 600;
  margin-bottom: 4px;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.vz-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vz-feature-card {
  background: var(--vz-bg);
  border: 1px solid var(--vz-border);
  border-radius: var(--vz-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--vz-transition);
}

.vz-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--vz-shadow);
}

.vz-feature-card__icon {
  width: 56px;
  height: 56px;
  background: var(--vz-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.vz-feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.vz-feature-card p {
  font-size: 0.95rem;
  color: var(--vz-text-muted);
  margin: 0;
}

/* ============================================
   FEATURES TABLE
   ============================================ */
.vz-features-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--vz-radius);
  overflow: hidden;
  font-size: 0.95rem;
}

.vz-features-table th,
.vz-features-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--vz-border);
}

.vz-features-table th {
  background: var(--vz-bg-dark);
  color: var(--vz-text-white);
  font-weight: 600;
}

.vz-features-table tr:nth-child(even) {
  background: var(--vz-bg-alt);
}

.vz-features-table tr:hover {
  background: var(--vz-accent-light);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.vz-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vz-testimonial {
  background: var(--vz-bg);
  border: 1px solid var(--vz-border);
  border-radius: var(--vz-radius);
  padding: 28px;
}

.vz-testimonial__stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.vz-testimonial__text {
  font-style: italic;
  margin-bottom: 16px;
  color: var(--vz-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.vz-testimonial__author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--vz-text);
}

.vz-testimonial__location {
  font-size: 0.85rem;
  color: var(--vz-text-light);
}

/* ============================================
   STATS BAR
   ============================================ */
.vz-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.vz-stat__number {
  font-family: var(--vz-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--vz-accent);
  line-height: 1;
}

.vz-stat__label {
  font-size: 0.95rem;
  color: var(--vz-text-muted);
  margin-top: 8px;
}

/* ============================================
   HOW IT WORKS / STEPS
   ============================================ */
.vz-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.vz-step__number {
  width: 48px;
  height: 48px;
  background: var(--vz-accent);
  color: var(--vz-text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vz-font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

.vz-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.vz-step p {
  font-size: 0.9rem;
  color: var(--vz-text-muted);
}

/* ============================================
   FORMS
   ============================================ */
.vz-form {
  max-width: 560px;
  margin: 0 auto;
}

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

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

.vz-form-group input,
.vz-form-group select,
.vz-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--vz-border);
  border-radius: var(--vz-radius-sm);
  font-family: var(--vz-font-body);
  font-size: 1rem;
  color: var(--vz-text);
  background: var(--vz-bg);
  transition: border-color var(--vz-transition), box-shadow var(--vz-transition);
  min-height: 48px;
}

.vz-form-group input:focus,
.vz-form-group select:focus,
.vz-form-group textarea:focus {
  outline: none;
  border-color: var(--vz-accent);
  box-shadow: 0 0 0 3px var(--vz-accent-light);
}

.vz-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.vz-form .vz-btn {
  width: 100%;
  min-height: 52px;
  font-size: 1.05rem;
}

.vz-form-trust {
  text-align: center;
  font-size: 0.85rem;
  color: var(--vz-text-light);
  margin-top: 12px;
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--vz-radius-sm);
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-message--success {
  background: rgba(37, 211, 102, 0.1);
  color: #1a8a3e;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.form-message--error {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

/* Honeypot */
.vz-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ============================================
   FAQ
   ============================================ */
.vz-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.vz-faq-item {
  border: 1px solid var(--vz-border);
  border-radius: var(--vz-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.vz-faq-question {
  width: 100%;
  padding: 18px 24px;
  background: var(--vz-bg);
  border: none;
  text-align: left;
  font-family: var(--vz-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vz-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--vz-transition);
}

.vz-faq-question:hover {
  background: var(--vz-bg-alt);
}

.vz-faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--vz-accent);
  transition: transform var(--vz-transition);
}

.vz-faq-item.active .vz-faq-question::after {
  content: '\2212';
}

.vz-faq-answer {
  display: none;
  padding: 0 24px 18px;
  color: var(--vz-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.vz-faq-item.active .vz-faq-answer {
  display: block;
}

/* ============================================
   CHANNELS
   ============================================ */
.vz-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vz-channel-cat {
  background: var(--vz-bg);
  border: 1px solid var(--vz-border);
  border-radius: var(--vz-radius);
  padding: 24px;
}

.vz-channel-cat h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vz-channel-cat ul {
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
  color: var(--vz-text-muted);
}

.vz-channel-cat ul li {
  padding: 4px 0;
  border-bottom: 1px solid var(--vz-border);
}

.vz-channel-cat ul li:last-child { border-bottom: none; }

/* ============================================
   FOOTER
   ============================================ */
.vz-footer {
  background: var(--vz-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

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

.vz-footer h4 {
  color: var(--vz-text-white);
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vz-footer p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.vz-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--vz-transition);
}

.vz-footer a:hover {
  color: var(--vz-accent);
}

.vz-footer-links {
  list-style: none;
  padding: 0;
}

.vz-footer-links li {
  margin-bottom: 8px;
}

.vz-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.vz-breadcrumbs {
  padding: 16px 0;
  font-size: 0.9rem;
  color: var(--vz-text-muted);
}

.vz-breadcrumbs a {
  color: var(--vz-text-muted);
}

.vz-breadcrumbs a:hover {
  color: var(--vz-accent);
}

.vz-breadcrumbs span {
  margin: 0 8px;
  color: var(--vz-text-light);
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.vz-page-header {
  background: var(--vz-bg-alt);
  padding: 50px 0;
  text-align: center;
  border-bottom: 1px solid var(--vz-border);
}

.vz-page-header h1 {
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.vz-page-header p {
  color: var(--vz-text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* ============================================
   CONTENT (legal pages, setup guide)
   ============================================ */
.vz-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.vz-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--vz-border);
}

.vz-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.vz-content h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
}

.vz-content ul, .vz-content ol {
  margin-bottom: 16px;
}

.vz-content li {
  margin-bottom: 6px;
}

.vz-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95rem;
}

.vz-content table th,
.vz-content table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--vz-border);
}

.vz-content table th {
  background: var(--vz-bg-alt);
  font-weight: 600;
}

.vz-content strong {
  color: var(--vz-text);
}

/* ============================================
   SETUP GUIDE
   ============================================ */
.vz-guide-step {
  margin-bottom: 40px;
  padding: 24px;
  background: var(--vz-bg-alt);
  border-radius: var(--vz-radius);
  border-left: 4px solid var(--vz-accent);
}

.vz-guide-step h3 {
  margin-bottom: 12px;
}

.vz-guide-step img {
  border-radius: var(--vz-radius-sm);
  margin: 16px 0;
}

/* ============================================
   RESELLER
   ============================================ */
.vz-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vz-tier-card {
  background: var(--vz-bg);
  border: 1px solid var(--vz-border);
  border-radius: var(--vz-radius);
  padding: 32px 24px;
  text-align: center;
}

.vz-tier-card h3 {
  margin-bottom: 8px;
}

.vz-tier-card .vz-tier-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--vz-accent);
  margin-bottom: 16px;
}

/* ============================================
   CHECKOUT
   ============================================ */
.vz-checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.vz-order-summary {
  background: var(--vz-bg-alt);
  border-radius: var(--vz-radius);
  padding: 32px;
  border: 1px solid var(--vz-border);
}

.vz-order-summary h3 {
  margin-bottom: 20px;
}

.vz-order-summary table {
  width: 100%;
  font-size: 0.95rem;
}

.vz-order-summary td {
  padding: 8px 0;
  border-bottom: 1px solid var(--vz-border);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .vz-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .vz-footer-grid { grid-template-columns: 1fr 1fr; }
  .vz-checkout-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .vz-hero h1 { font-size: 2.25rem; }
  .vz-section { padding: 50px 0; }

  .vz-nav-links { display: none; }
  .vz-menu-toggle { display: block; }

  .vz-nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--vz-bg);
    padding: 20px;
    border-bottom: 1px solid var(--vz-border);
    box-shadow: var(--vz-shadow);
    z-index: 999;
  }

  .vz-features-grid,
  .vz-testimonials-grid,
  .vz-channels-grid,
  .vz-tiers-grid { grid-template-columns: 1fr; }

  .vz-pricing-grid { grid-template-columns: 1fr; }
  .vz-stats { grid-template-columns: repeat(2, 1fr); }
  .vz-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .vz-footer-grid { grid-template-columns: 1fr; }

  .vz-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
  }
}

@media (max-width: 480px) {
  .vz-hero h1 { font-size: 1.75rem; }
  .vz-stats { grid-template-columns: 1fr 1fr; }
  .vz-steps-grid { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITIES
   ============================================ */
.vz-text-center { text-align: center; }
.vz-text-accent { color: var(--vz-accent); }
.vz-mt-1 { margin-top: 8px; }
.vz-mt-2 { margin-top: 16px; }
.vz-mt-3 { margin-top: 24px; }
.vz-mt-4 { margin-top: 32px; }
.vz-mb-1 { margin-bottom: 8px; }
.vz-mb-2 { margin-bottom: 16px; }
.vz-mb-3 { margin-bottom: 24px; }
.vz-mb-4 { margin-bottom: 32px; }
.vz-hidden { display: none; }

/* FAQ Toggle Script Styles */
.vz-faq-item .vz-faq-answer { overflow: hidden; }
