/* Voodigo - IPTV Premium France */
/* Design DNA: tacotaco.fr clone - Dark modern, green accent */

:root {
  --bg-body: #0F1729;
  --bg-nav: rgba(15, 23, 41, 0.8);
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --accent: #22c55e;
  --accent-hover: #1ea34d;
  --accent-light: #4ade80;
  --accent-glow: rgba(34, 197, 94, 0.2);
  --text-primary: #F8FAFC;
  --text-muted: #9ca3af;
  --text-dark: #6b7280;
  --border: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(34, 197, 94, 0.3);
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.3);
  --shadow-accent: 0 4px 15px rgba(34, 197, 94, 0.2);
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========== NAV ========== */
.vg-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.vg-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.vg-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.vg-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vg-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.vg-nav-links a:hover,
.vg-nav-links a.active {
  color: var(--text-primary);
}

.vg-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  transition: background var(--transition);
  border: none;
  cursor: pointer;
}

.vg-nav-cta:hover {
  background: var(--accent-hover);
}

/* Mobile nav */
.vg-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.75rem;
  font-size: 1.5rem;
}

.vg-mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-body);
  z-index: 49;
  padding: 2rem 1rem;
  flex-direction: column;
  gap: 1rem;
}

.vg-mobile-menu.open {
  display: flex;
}

.vg-mobile-menu a {
  font-size: 1.125rem;
  padding: 0.75rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.vg-mobile-menu a:hover {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .vg-nav-links {
    display: none;
  }
  .vg-hamburger {
    display: block;
  }
}

/* ========== HERO ========== */
.vg-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 1rem 4rem;
}

.vg-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vg-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.vg-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg-body) 0%, transparent 30%, transparent 70%, var(--bg-body) 100%);
}

.vg-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.vg-hero-badge {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-accent);
  margin-bottom: 1.5rem;
}

.vg-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

.vg-hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.vg-hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* ========== STATS BAR ========== */
.vg-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

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

.vg-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.vg-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ========== SECTIONS ========== */
.vg-section {
  padding: 5rem 0;
}

.vg-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.vg-section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.vg-section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ========== PRICING ========== */
.vg-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.vg-price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.vg-price-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.vg-price-card.featured {
  border-color: var(--accent);
  background: rgba(34, 197, 94, 0.05);
}

.vg-price-card.featured::before {
  content: 'POPULAIRE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.1em;
}

.vg-price-name {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.vg-price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.vg-price-amount .currency {
  font-size: 1.25rem;
  vertical-align: super;
}

.vg-price-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.vg-price-features {
  text-align: left;
  margin-bottom: 2rem;
}

.vg-price-features li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

/* ========== FEATURES ========== */
.vg-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.vg-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}

.vg-feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

.vg-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.vg-feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.vg-feature-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

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

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

.vg-faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.vg-faq-question:hover {
  background: var(--bg-card-hover);
}

.vg-faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.vg-faq-item.open .vg-faq-question::after {
  content: '-';
}

.vg-faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.vg-faq-item.open .vg-faq-answer {
  display: block;
}

/* ========== SEO TEXT ========== */
.vg-seo-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.vg-seo-block h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.vg-seo-block h3 {
  font-size: 1.125rem;
  margin: 1.5rem 0 0.75rem;
}

.vg-seo-block p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* ========== CONTACT ========== */
.vg-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.vg-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.vg-contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.vg-contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.vg-hours-box {
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  max-width: 500px;
  margin: 2rem auto 0;
}

.vg-hours-box h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.vg-hours-box p {
  color: var(--text-muted);
}

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

.vg-form-group {
  margin-bottom: 1.25rem;
}

.vg-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.vg-form-group input,
.vg-form-group select,
.vg-form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition);
  min-height: 44px;
}

.vg-form-group input:focus,
.vg-form-group select:focus,
.vg-form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.vg-form-group input::placeholder,
.vg-form-group textarea::placeholder {
  color: var(--text-dark);
}

.vg-form .btn-primary {
  width: 100%;
  margin-top: 0.5rem;
}

.vg-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.form-message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-size: 0.875rem;
  text-align: center;
}

.form-message--success {
  background: rgba(34, 197, 94, 0.15);
  color: var(--accent-light);
  border: 1px solid var(--border-accent);
}

.form-message--error {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ========== TRIAL FORM ========== */
.vg-trial-section {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(15, 23, 41, 0.8));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.vg-trial-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.vg-trial-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ========== CHANNELS ========== */
.vg-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.vg-channel-cat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.vg-channel-cat h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vg-channel-cat .count {
  color: var(--accent);
  font-size: 0.8rem;
}

.vg-channel-cat p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ========== RESELLER ========== */
.vg-reseller-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.vg-reseller-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.vg-reseller-tier h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.vg-reseller-tier .credits {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ========== ABOUT ========== */
.vg-about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.vg-value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.vg-value-card h3 {
  font-size: 1rem;
  margin: 0.75rem 0 0.5rem;
}

.vg-value-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.vg-value-icon {
  font-size: 2rem;
}

/* ========== SETUP GUIDE ========== */
.vg-guide-content {
  max-width: 800px;
  margin: 0 auto;
}

.vg-guide-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.vg-guide-content h3 {
  font-size: 1.125rem;
  margin: 1.25rem 0 0.75rem;
}

.vg-guide-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.vg-guide-content ol,
.vg-guide-content ul {
  margin: 1rem 0 1rem 1.5rem;
  list-style: decimal;
}

.vg-guide-content ul {
  list-style: disc;
}

.vg-guide-content li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* ========== LEGAL ========== */
.vg-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 1rem 4rem;
}

.vg-legal h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.vg-legal .updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.vg-legal h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.vg-legal h3 {
  font-size: 1.05rem;
  margin: 1rem 0 0.5rem;
}

.vg-legal p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.vg-legal ul,
.vg-legal ol {
  margin: 0.75rem 0 1rem 1.5rem;
}

.vg-legal ul {
  list-style: disc;
}

.vg-legal ol {
  list-style: decimal;
}

.vg-legal li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.vg-legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.vg-legal th,
.vg-legal td {
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.9rem;
}

.vg-legal th {
  background: var(--bg-card);
  font-weight: 600;
}

.vg-legal td {
  color: var(--text-muted);
}

.vg-legal strong {
  color: var(--text-primary);
}

.vg-legal a {
  color: var(--accent);
}

.vg-legal a:hover {
  text-decoration: underline;
}

/* ========== CHECKOUT ========== */
.vg-checkout-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.vg-order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.vg-order-summary h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.vg-order-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.vg-order-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 0;
  font-weight: 700;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .vg-checkout-wrap {
    grid-template-columns: 1fr;
  }
}

/* ========== FOOTER ========== */
.vg-footer {
  background: var(--bg-body);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 3rem;
}

.vg-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

@media (max-width: 480px) {
  .vg-footer-grid {
    grid-template-columns: 1fr;
  }
}

.vg-footer-brand .vg-logo {
  margin-bottom: 1rem;
}

.vg-footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.vg-footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vg-footer-col ul li {
  margin-bottom: 0.75rem;
}

.vg-footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.vg-footer-col ul li a:hover {
  color: var(--accent);
}

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

.vg-footer-bottom p {
  color: var(--text-dark);
  font-size: 0.75rem;
  line-height: 1.6;
}

.vg-footer-bottom .disclaimer {
  max-width: 700px;
  margin: 0.5rem auto 0;
}

/* ========== PAGE HEADER ========== */
.vg-page-header {
  padding: 8rem 0 3rem;
  text-align: center;
}

.vg-page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

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

/* ========== BREADCRUMB ========== */
.vg-breadcrumb {
  padding: 6rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.vg-breadcrumb a {
  color: var(--accent);
}

.vg-breadcrumb a:hover {
  text-decoration: underline;
}

.vg-breadcrumb span {
  margin: 0 0.5rem;
}

/* ========== UTILITIES ========== */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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