/* Pro Hunters - Static HTML Version */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --background: #0a0a0a;
  --foreground: #e8ecf0;
  --card: #121212;
  --card-foreground: #e8ecf0;
  --primary: #3d7a3d;
  --primary-light: #4da64d;
  --primary-foreground: #f5f7f9;
  --secondary: #b89a5a;
  --secondary-foreground: #0a0a0a;
  --muted: #1f1e1d;
  --muted-foreground: #8a9099;
  --accent: #b89a5a;
  --destructive: #c0392b;
  --border: #262626;
  --radius: 0.75rem;
  --glass-bg: rgba(10,10,10,0.8);
  --glass-border: rgba(232,236,240,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
strong { font-weight: 600; }

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

/* Text Gradient */
.text-gradient-gold {
  background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--foreground));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.glass-card {
  background: rgba(18,18,18,0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(38,38,38,0.5);
}

/* Glow */
.glow-primary { box-shadow: 0 0 40px -10px rgba(61,122,61,0.4); }

/* Hover lift */
.hover-lift { transition: all 0.3s ease-out; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 10px 40px -10px rgba(61,122,61,0.3); }

/* ==================== HEADER ==================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.header-logo img { height: 40px; width: auto; transition: transform 0.3s; }
.header-logo:hover img { transform: scale(1.05); }

.nav-desktop { display: none; align-items: center; gap: 4px; }
.nav-desktop a {
  padding: 8px 16px; font-size: 0.875rem; font-weight: 500;
  border-radius: 8px; transition: all 0.3s; color: rgba(232,236,240,0.7);
}
.nav-desktop a:hover { color: var(--foreground); background: rgba(31,30,29,0.5); }
.nav-desktop a.active { color: var(--secondary); background: rgba(184,154,90,0.1); }

.menu-toggle {
  display: flex; padding: 8px; background: none; border: none; color: var(--foreground);
  cursor: pointer; border-radius: 8px; transition: background 0.3s;
}
.menu-toggle:hover { background: rgba(31,30,29,0.5); }
.menu-toggle svg { width: 24px; height: 24px; }

.nav-mobile {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--glass-bg); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(38,38,38,0.5);
  padding: 16px; display: none; flex-direction: column; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px; font-size: 1rem; font-weight: 500;
  border-radius: 8px; transition: all 0.3s; color: rgba(232,236,240,0.7);
}
.nav-mobile a:hover { color: var(--foreground); background: rgba(31,30,29,0.5); }
.nav-mobile a.active { color: var(--secondary); background: rgba(184,154,90,0.1); }

@media (min-width: 1024px) {
  .header .container { height: 80px; }
  .header-logo img { height: 48px; }
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
}

/* ==================== FOOTER ==================== */
.footer { background: var(--card); border-top: 1px solid rgba(38,38,38,0.5); }
.footer-cta { text-align: center; padding: 48px 0; }
.footer-cta h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.footer-cta p { color: var(--muted-foreground); margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px; background: var(--primary); color: var(--primary-foreground);
  font-weight: 600; border-radius: 12px; transition: all 0.3s; border: none; cursor: pointer;
  font-size: 1rem;
}
.btn-primary:hover { background: rgba(61,122,61,0.9); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px; background: transparent; color: var(--foreground);
  font-weight: 600; border-radius: 12px; transition: all 0.3s;
  border: 1px solid var(--border); cursor: pointer; font-size: 1rem;
}
.btn-outline:hover { border-color: var(--secondary); color: var(--secondary); }

.btn-destructive {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: var(--destructive); color: #fff;
  font-weight: 600; border-radius: 12px; transition: all 0.3s; border: none; cursor: pointer;
}
.btn-destructive:hover { opacity: 0.9; }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-top: 32px; border-top: 1px solid rgba(38,38,38,0.5); }
.footer-brand h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.footer-brand p { font-size: 0.875rem; color: var(--muted-foreground); }
.footer-links h5, .footer-social h5 {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--muted-foreground); margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(232,236,240,0.7); transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }

.social-icons { display: flex; gap: 16px; }
.social-icons a {
  padding: 12px; background: var(--muted); border-radius: 12px;
  transition: all 0.3s; display: flex;
}
.social-icons a:hover { background: var(--primary); }
.social-icons a svg { width: 20px; height: 20px; color: rgba(232,236,240,0.7); }
.social-icons a:hover svg { color: var(--primary-foreground); }

.footer-bottom {
  border-top: 1px solid rgba(38,38,38,0.5); padding: 24px 0;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
}
.footer-bottom p { font-size: 0.875rem; color: var(--muted-foreground); }
.footer-bottom .disclaimer { font-size: 0.75rem; color: rgba(138,144,153,0.6); max-width: 512px; }

@media (min-width: 768px) {
  .footer-cta h3 { font-size: 1.875rem; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ==================== MAIN ==================== */
main { padding-top: 64px; flex: 1; }
@media (min-width: 1024px) { main { padding-top: 80px; } }
.page-wrapper { min-height: 100vh; display: flex; flex-direction: column; }

/* ==================== HERO ==================== */
.hero {
  position: relative; min-height: 90vh; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(61,122,61,0.1), transparent);
}
.hero-blob-1 {
  position: absolute; top: 25%; left: -25%; width: 50%; height: 50%;
  background: rgba(61,122,61,0.05); border-radius: 50%; filter: blur(60px);
}
.hero-blob-2 {
  position: absolute; bottom: 25%; right: -25%; width: 50%; height: 50%;
  background: rgba(184,154,90,0.05); border-radius: 50%; filter: blur(60px);
}
.hero-content { position: relative; z-index: 10; text-align: center; max-width: 896px; margin: 0 auto; padding: 80px 16px; }
.hero-logo { margin-bottom: 32px; }
.hero-logo img { height: 128px; width: auto; margin: 0 auto; filter: drop-shadow(0 25px 25px rgba(0,0,0,0.5)); }
.hero h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 24px; line-height: 1.1; }
.hero .subtitle { font-size: 1.125rem; color: var(--muted-foreground); margin-bottom: 16px; }
.hero .description { font-size: 1rem; color: rgba(138,144,153,0.8); margin-bottom: 40px; max-width: 672px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.scroll-dot { width: 24px; height: 40px; border: 2px solid rgba(138,144,153,0.3); border-radius: 9999px; display: flex; justify-content: center; }
.scroll-dot-inner { width: 6px; height: 12px; background: rgba(138,144,153,0.5); border-radius: 9999px; margin-top: 8px; }

@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .hero .subtitle { font-size: 1.25rem; }
  .hero-logo img { height: 160px; }
}
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }

/* ==================== SECTIONS ==================== */
.section { padding: 80px 0; }
.section-muted { background: rgba(31,30,29,0.3); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.section-title p { font-size: 1.125rem; color: var(--muted-foreground); max-width: 672px; margin: 0 auto; }
@media (min-width: 768px) { .section-title h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title h2 { font-size: 3rem; } }

/* Navigation Cards */
.nav-cards { display: grid; grid-template-columns: 1fr; gap: 24px; }
.nav-card {
  display: block; padding: 24px 32px; border-radius: 16px;
  transition: all 0.3s ease-out;
  background: rgba(18,18,18,0.8); backdrop-filter: blur(20px);
  border: 1px solid rgba(38,38,38,0.5);
}
.nav-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px -10px rgba(61,122,61,0.3); }
.nav-card-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(61,122,61,0.1); color: var(--primary);
  transition: all 0.3s; margin-bottom: 16px;
}
.nav-card:hover .nav-card-icon { background: var(--primary); color: var(--primary-foreground); }
.nav-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 8px; transition: color 0.3s; }
.nav-card:hover h3 { color: var(--primary); }
.nav-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

@media (min-width: 768px) { .nav-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .nav-cards { grid-template-columns: 1fr 1fr 1fr; } }

/* Feature Cards */
.feature-cards { display: grid; grid-template-columns: 1fr; gap: 32px; }
.feature-card {
  text-align: center; padding: 32px; border-radius: 16px;
  background: rgba(18,18,18,0.8); backdrop-filter: blur(20px);
  border: 1px solid rgba(38,38,38,0.5);
}
.feature-icon {
  display: inline-flex; padding: 16px; border-radius: 16px;
  background: rgba(61,122,61,0.1); color: var(--primary); margin-bottom: 24px;
}
.feature-icon svg { width: 32px; height: 32px; }
.feature-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.feature-card p { color: var(--muted-foreground); }
@media (min-width: 768px) { .feature-cards { grid-template-columns: 1fr 1fr 1fr; } }

/* About */
.about-text { max-width: 896px; margin: 0 auto; text-align: center; }
.about-text p { color: var(--muted-foreground); margin-bottom: 24px; line-height: 1.8; }
.about-text .disclaimer-small { font-size: 0.875rem; color: rgba(138,144,153,0.6); }

/* ==================== PAGE HERO (inner pages) ==================== */
.page-hero {
  padding: 64px 0 96px; position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(61,122,61,0.05), transparent);
}
.page-hero .container { position: relative; z-index: 10; }
.page-hero .section-title { margin-bottom: 0; }
.page-hero .extra-text { text-align: center; color: var(--muted-foreground); max-width: 768px; margin: 16px auto 0; }

/* ==================== CONTENT BLOCKS ==================== */
.content-card {
  padding: 24px 32px; border-radius: 16px;
  background: rgba(18,18,18,0.8); backdrop-filter: blur(20px);
  border: 1px solid rgba(38,38,38,0.5);
}
.content-card.highlight { border-color: rgba(61,122,61,0.3); background: rgba(61,122,61,0.05); }
.content-card.warning { border-color: rgba(192,57,43,0.3); background: rgba(192,57,43,0.05); }
.content-card.success { border-color: rgba(61,122,61,0.3); background: rgba(61,122,61,0.05); }

.content-card h3 { font-weight: 700; margin-bottom: 8px; }
.content-card h4 { font-weight: 600; margin-bottom: 8px; }
.content-card p { font-size: 0.875rem; color: var(--muted-foreground); }

.warning-centered { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.warning-icon { color: var(--destructive); }
.warning-icon svg { width: 40px; height: 40px; }

/* ==================== SIDEBAR LAYOUT ==================== */
.sidebar-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }
.sidebar { display: none; }
.sidebar-nav { position: sticky; top: 100px; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 8px; padding: 10px 16px;
  font-size: 0.875rem; border-radius: 8px; transition: all 0.3s;
  color: var(--muted-foreground);
}
.sidebar-nav a:hover { background: var(--muted); color: var(--foreground); }
.sidebar-nav a.active { color: var(--primary); background: rgba(61,122,61,0.1); }
@media (min-width: 1024px) {
  .sidebar-layout { grid-template-columns: 1fr 3fr; }
  .sidebar { display: block; }
}

/* Profile Section */
.profile-section {
  padding: 24px 32px; border-radius: 16px;
  background: rgba(18,18,18,0.8); backdrop-filter: blur(20px);
  border: 1px solid rgba(38,38,38,0.5); margin-bottom: 32px;
}
.profile-header { margin-bottom: 24px; }
.profile-header-top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.profile-header-top svg { width: 24px; height: 24px; color: var(--primary); }
.profile-header h2 { font-size: 1.5rem; font-weight: 700; }
.profile-header .subtitle { font-size: 0.875rem; color: var(--secondary); font-weight: 500; margin-bottom: 8px; }
.profile-header .desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* Permission Block */
.perm-block { padding: 16px; border-radius: 12px; margin-bottom: 16px; }
.perm-block.allows { border-left: 3px solid var(--primary); background: rgba(61,122,61,0.05); }
.perm-block.firearms { border-left: 3px solid var(--secondary); background: rgba(184,154,90,0.05); }
.perm-block.limits { border-left: 3px solid var(--destructive); background: rgba(192,57,43,0.05); }
.perm-block.legal { border-left: 3px solid var(--muted-foreground); background: rgba(31,30,29,0.5); }
.perm-block h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 8px; }
.perm-block li { font-size: 0.875rem; color: rgba(232,236,240,0.8); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; }
.perm-block li::before { content: "•"; flex-shrink: 0; color: var(--muted-foreground); }
.perm-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .perm-grid { grid-template-columns: 1fr 1fr; } }

/* Level Card */
.level-card {
  border: 1px solid rgba(38,38,38,0.5); border-radius: 12px;
  padding: 20px; margin-bottom: 16px; background: rgba(10,10,10,0.5);
}
.level-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 999px; background: rgba(61,122,61,0.1);
  color: var(--primary); margin-bottom: 8px;
}
.level-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 16px; }

/* Info Card */
.info-card {
  padding: 24px; border-radius: 16px;
  background: rgba(18,18,18,0.8); backdrop-filter: blur(20px);
  border: 1px solid rgba(38,38,38,0.5);
}
.info-card h4 { font-weight: 600; color: var(--primary); margin-bottom: 12px; font-size: 0.95rem; }
.info-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

.info-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .info-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .info-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }

/* Legal Disclaimer */
.legal-disclaimer {
  padding: 24px; border-radius: 16px; border: 1px solid rgba(38,38,38,0.5);
  background: rgba(31,30,29,0.3); text-align: center;
}
.legal-disclaimer p { font-size: 0.75rem; color: rgba(138,144,153,0.6); }

/* ==================== STEP CARD ==================== */
.step-card { display: flex; gap: 24px; margin-bottom: 0; }
.step-line { display: flex; flex-direction: column; align-items: center; }
.step-number {
  width: 48px; height: 48px; border-radius: 50%; background: var(--primary);
  color: var(--primary-foreground); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.125rem; flex-shrink: 0;
}
.step-connector { width: 2px; flex: 1; background: rgba(38,38,38,0.5); margin-top: 8px; }
.step-content {
  flex: 1; padding: 24px; border-radius: 16px;
  background: rgba(18,18,18,0.8); border: 1px solid rgba(38,38,38,0.5);
  margin-bottom: 24px;
}
.step-content h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 16px; }
.step-content p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 16px; }
.step-content li { font-size: 0.875rem; color: rgba(232,236,240,0.8); padding: 4px 0; }

/* ==================== TABLE ==================== */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; padding: 16px; font-weight: 600; border-bottom: 1px solid rgba(38,38,38,0.5); }
.data-table td { padding: 16px; }
.data-table tr:not(:last-child) td { border-bottom: 1px solid rgba(38,38,38,0.3); }
.data-table .cost { color: var(--secondary); font-weight: 500; }
.data-table .notes { color: var(--muted-foreground); font-size: 0.875rem; }

/* ==================== VIDEO GRID ==================== */
.video-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.video-card {
  border-radius: 16px; overflow: hidden;
  background: rgba(18,18,18,0.8); border: 1px solid rgba(38,38,38,0.5);
}
.video-card .video-embed { position: relative; padding-bottom: 56.25%; height: 0; }
.video-card iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-card .video-info { padding: 16px; }
.video-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.video-card p { font-size: 0.875rem; color: var(--muted-foreground); }
@media (min-width: 768px) { .video-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .video-grid { grid-template-columns: 1fr 1fr 1fr; } }

/* ==================== DESPACHANTE CARD ==================== */
.desp-grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 1024px; margin: 0 auto; }
.desp-card {
  display: flex; flex-direction: column; padding: 24px 32px; border-radius: 16px;
  background: rgba(18,18,18,0.8); border: 1px solid rgba(38,38,38,0.5);
  transition: all 0.3s;
}
.desp-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px -10px rgba(61,122,61,0.3); }
.desp-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.desp-icon { padding: 12px; border-radius: 12px; background: rgba(184,154,90,0.1); color: var(--secondary); }
.desp-header h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.desp-header p { font-size: 0.875rem; color: var(--muted-foreground); }
.desp-services { flex: 1; margin-bottom: 24px; }
.desp-services h4 { font-size: 0.75rem; font-weight: 600; color: var(--muted-foreground); text-transform: uppercase; margin-bottom: 12px; }
.desp-services li {
  display: flex; align-items: center; gap: 12px; font-size: 0.875rem;
  color: rgba(232,236,240,0.8); padding: 4px 0;
}
.desp-services li::before { content: "✓"; color: var(--primary); font-weight: 700; }
@media (min-width: 768px) { .desp-grid { grid-template-columns: 1fr 1fr; } }

/* Checklist */
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.875rem; padding: 6px 0; }
.check-box {
  width: 20px; height: 20px; border: 1px solid var(--border);
  border-radius: 4px; flex-shrink: 0; margin-top: 2px;
}

/* ==================== CTA ==================== */
.cta-section { padding: 64px 0; text-align: center; }
.cta-section p { color: var(--muted-foreground); margin-bottom: 24px; }
.cta-buttons { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* ==================== ELIGIBLE CATEGORIES ==================== */
.eligible-box {
  padding: 16px; border-radius: 12px; border: 1px solid rgba(61,122,61,0.2);
  background: rgba(61,122,61,0.05); margin-top: 16px;
}
.eligible-box h4 { font-size: 0.875rem; font-weight: 600; color: var(--primary); margin-bottom: 12px; }
.eligible-grid { display: grid; grid-template-columns: 1fr; gap: 8px; }
.eligible-grid li { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: rgba(232,236,240,0.8); }
.eligible-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(61,122,61,0.6); flex-shrink: 0; }
@media (min-width: 768px) { .eligible-grid { grid-template-columns: 1fr 1fr; } }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
.fade-in { animation: fadeIn 0.6s ease-out forwards; }
.fade-in-delay-1 { animation: fadeIn 0.6s ease-out 0.1s forwards; opacity: 0; }
.fade-in-delay-2 { animation: fadeIn 0.6s ease-out 0.2s forwards; opacity: 0; }
.fade-in-delay-3 { animation: fadeIn 0.6s ease-out 0.3s forwards; opacity: 0; }
.fade-in-delay-4 { animation: fadeIn 0.6s ease-out 0.4s forwards; opacity: 0; }

/* Max widths */
.max-w-4xl { max-width: 896px; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 768px; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 1024px; margin-left: auto; margin-right: auto; }

/* Text helpers */
.text-center { text-align: center; }
.text-secondary { color: var(--secondary); }
.mb-6 { margin-bottom: 24px; }
.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* Responsive table */
.table-wrap { overflow-x: auto; }
@media (max-width: 767px) {
  .hide-mobile { display: none; }
}
