/* ===========================================
   ASTERVOX MARKETING WEBSITE - STYLES
   Version: 1.0
   =========================================== */

/* CSS Variables */
:root {
  /* Primary - Astervox Blue */
  --primary-h: 197;
  --primary-s: 58%;
  --primary: hsl(var(--primary-h), var(--primary-s), 50%);
  --primary-light: hsl(var(--primary-h), var(--primary-s), 87%);
  --primary-dark: hsl(var(--primary-h), var(--primary-s), 38%);
  
  /* Success - Green */
  --success-h: 101;
  --success-s: 52%;
  --success: hsl(var(--success-h), var(--success-s), 52%);
  --success-light: hsl(var(--success-h), var(--success-s), 88%);
  --success-dark: hsl(var(--success-h), var(--success-s), 32%);
  
  /* Warning - Amber */
  --warning-h: 38;
  --warning-s: 92%;
  --warning: hsl(var(--warning-h), var(--warning-s), 50%);
  --warning-light: hsl(var(--warning-h), var(--warning-s), 89%);
  
  /* Error - Red */
  --error-h: 0;
  --error-s: 84%;
  --error: hsl(var(--error-h), var(--error-s), 60%);
  --error-light: hsl(var(--error-h), var(--error-s), 94%);
  
  /* Accent - Violet */
  --accent-h: 258;
  --accent-s: 90%;
  --accent: hsl(var(--accent-h), var(--accent-s), 66%);
  --accent-light: hsl(var(--accent-h), var(--accent-s), 96%);
  
  /* Neutrals */
  --bg: #F6FAFC;
  --surface: #FFFFFF;
  --border: #D9E6EE;
  --text: #1B2A34;
  --text-muted: #4A5B67;
  --nav: #102536;
  
  /* Spacing */
  --container-max: 1200px;
  --section-py: 80px;
  --section-py-mobile: 60px;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions */
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

/* ===========================================
   NAVIGATION
   =========================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo img {
  height: 28px;
  width: auto;
}

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

.nav-link {
  padding: 8px 16px;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  border-radius: 6px;
  transition: background var(--transition);
}

.nav-link:hover {
  background: var(--bg);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
}

.lang-flag {
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 4px;
  transition: all var(--transition);
  opacity: 0.5;
  border: 2px solid transparent;
}

.lang-flag:hover {
  opacity: 1;
}

.lang-flag.active {
  opacity: 1;
  border-color: var(--primary);
}

.lang-flag img {
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.lang-link {
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 4px;
  transition: all var(--transition);
}

.lang-link:hover,
.lang-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.lang-divider {
  color: var(--border);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-link {
  padding: 12px 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: background var(--transition);
}

.mobile-menu-link:hover {
  background: var(--bg);
}

.mobile-lang-switch {
  display: flex;
  gap: 16px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.mobile-lang-switch .lang-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 1;
  border: 1px solid var(--border);
}

.mobile-lang-switch .lang-flag:hover,
.mobile-lang-switch .lang-flag.active {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary);
}

.mobile-lang-switch .lang-flag img {
  border-radius: 2px;
}

.desktop-only {
  display: inline-flex;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links .lang-switch {
    display: none;
  }
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

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

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

.btn-white {
  background: white;
  color: var(--primary-dark);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-warning {
  background: var(--warning);
  color: var(--text);
}

.btn-warning:hover {
  filter: brightness(1.1);
}

.btn-outline-success {
  background: transparent;
  color: var(--success);
  border-color: var(--success);
}

.btn-outline-success:hover {
  background: var(--success-light);
}

.btn-full {
  width: 100%;
}

/* ===========================================
   BADGES & CHIPS
   =========================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 24px;
}

.badge-icon {
  font-size: 16px !important;
}

.badge-warning {
  background: var(--warning-light);
  color: var(--text);
}

.badge-warning .badge-icon {
  color: var(--warning);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
}

.chip-error {
  background: var(--error-light);
  color: var(--error);
}

.chip-success {
  background: var(--success-light);
  color: var(--success-dark);
}

.chip-warning {
  background: var(--warning-light);
  color: var(--text);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
  position: relative;
  background: var(--nav);
  color: white;
  padding: 80px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(51, 153, 204, 0.15), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.08), transparent 40%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 24px 0;
}

.gradient-text {
  display: block;
  background: linear-gradient(135deg, var(--primary-light), var(--success));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-checklist {
  list-style: none;
  margin-bottom: 32px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.check-icon {
  color: var(--success);
  font-size: 20px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--primary-light);
}

.trust-item .material-icons-outlined {
  font-size: 18px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.hero-image {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

@media (max-width: 968px) {
  .hero {
    padding: 60px 0 80px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-checklist li {
    justify-content: center;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .trust-indicators {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
}

/* ===========================================
   PARTNERS SECTION
   =========================================== */
.partners {
  padding: 40px 0;
  background: white;
  border-bottom: 1px solid var(--border);
}

.partners-label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  height: 36px;
  width: auto;
  opacity: 0.5;
  transition: opacity var(--transition);
  filter: grayscale(100%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ===========================================
   SECTIONS
   =========================================== */
.section {
  padding: var(--section-py) 0;
}

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

.section-white {
  background: white;
}

.section-dark {
  background: var(--nav);
  color: white;
}

.section-gradient {
  background: linear-gradient(135deg, var(--nav), var(--primary-dark));
  color: white;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 16px 0;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-py-mobile) 0;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
}

/* ===========================================
   CARDS GRID
   =========================================== */
.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 968px) {
  .cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cards-3,
  .cards-2 {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   CARD STYLES
   =========================================== */
.card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.card-hover:hover {
  border-color: var(--accent-color, var(--primary));
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon .material-icons-outlined {
  font-size: 28px;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.card-text {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 14px;
}

/* Icon Feature (centered) */
.icon-feature {
  text-align: center;
  padding: 24px;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.icon-circle .material-icons-outlined {
  font-size: 32px;
}

.icon-feature h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.icon-feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Explainer Box */
.explainer-box {
  background: white;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 64px;
}

.explainer-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 16px 0 20px;
}

.explainer-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.explainer-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dual-state-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid;
}

.dual-state-error {
  background: var(--error-light);
  border-color: rgba(239, 68, 68, 0.3);
}

.dual-state-success {
  background: var(--success-light);
  border-color: rgba(34, 197, 94, 0.3);
}

.dual-state-card > .material-icons-outlined:first-child {
  font-size: 32px;
}

.dual-state-card > div {
  flex: 1;
}

.dual-state-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.dual-state-card span {
  font-size: 13px;
  color: var(--text-muted);
}

.dual-state-card > .material-icons-outlined:last-child {
  font-size: 28px;
}

.dual-state-error .material-icons-outlined {
  color: var(--error);
}

.dual-state-success .material-icons-outlined {
  color: var(--success);
}

@media (max-width: 768px) {
  .explainer-box {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

/* Compliance Cards */
.compliance-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  transition: all var(--transition);
}

.compliance-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
}

.compliance-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.compliance-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.compliance-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.compliance-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.compliance-list {
  list-style: none;
}

.compliance-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.compliance-list .material-icons-outlined {
  font-size: 16px;
  color: var(--accent-color);
}

/* Capability Cards */
.capability-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all var(--transition);
}

.capability-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.capability-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.capability-icon .material-icons-outlined {
  font-size: 24px;
  color: var(--primary-dark);
}

.capability-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.capability-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.capability-outcome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--success-dark);
}

.capability-outcome .material-icons-outlined {
  font-size: 18px;
  color: var(--success);
}

/* Industry Cards */
.industry-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.industry-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.industry-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.industry-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Diff Cards */
.diff-card {
  text-align: center;
  padding: 24px;
}

.diff-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* ===========================================
   FLASH AUDIT SECTION
   =========================================== */
.flash-audit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.flash-audit-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.2;
}

.flash-audit-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 24px;
}

.flash-audit-list {
  list-style: none;
  margin-bottom: 32px;
}

.flash-audit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 12px;
}

.flash-audit-list .material-icons-outlined {
  font-size: 20px;
  color: var(--success);
}

.report-preview {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
}

.report-preview h4 {
  font-weight: 600;
  margin-bottom: 24px;
}

.report-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.report-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.report-row span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.report-row strong {
  font-size: 1.25rem;
  font-weight: 700;
}

.text-error {
  color: var(--error);
}

.text-success {
  color: var(--success);
}

.text-warning {
  color: var(--warning);
}

@media (max-width: 968px) {
  .flash-audit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .flash-audit-title {
    font-size: 2rem;
  }
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.cta-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.cta-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.cta-icon {
  font-size: 48px !important;
  margin-bottom: 16px;
}

.cta-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.cta-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .cta-cards {
    grid-template-columns: 1fr;
  }
  
  .cta-header h2 {
    font-size: 2rem;
  }
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--nav);
  color: white;
  padding: 64px 0 32px;
}

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

.footer-brand img {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-badges {
  display: flex;
  gap: 12px;
}

.footer-badge {
  font-size: 12px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links a,
.footer-links span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: white;
}

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

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
