/* ═══════════════════════════════════════════════
   TELELIG DEDICADOS — Shared Stylesheet v2
   ════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary:       #1d4ed8;
  --primary-dark:  #1e40af;
  --primary-light: #dbeafe;
  --accent:        #7c3aed;
  --accent-light:  #ede9fe;
  --success:       #10b981;
  --warning:       #f59e0b;
  --danger:        #ef4444;
  --dark:          #0f172a;
  --dark2:         #1e293b;
  --body:          #334155;
  --muted:         #64748b;
  --border:        #e2e8f0;
  --bg:            #f8fafc;
  --white:         #ffffff;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow:        0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.12);
  --shadow-blue:   0 8px 32px rgba(29,78,216,.2);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { color: var(--body); }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 16px;
}
.section-label.green { background: #dcfce7; color: #16a34a; }
.section-label.violet { background: var(--accent-light); color: var(--accent); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header p { color: var(--muted); font-size: 1.05rem; margin-top: 12px; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  cursor: pointer; border: none;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: 14px; }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-light); }
.btn-white {
  background: var(--white); color: var(--primary); font-weight: 700;
}
.btn-white:hover { background: var(--primary-light); }
.btn-ghost { background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-block { width: 100%; justify-content: center; }

/* ── BADGES ── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
}
.badge-blue { background: var(--primary-light); color: var(--primary); }
.badge-green { background: #dcfce7; color: #16a34a; }
.badge-orange { background: #fef3c7; color: #d97706; }
.badge-violet { background: var(--accent-light); color: var(--accent); }
.badge-red { background: #fee2e2; color: #dc2626; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; gap: 8px;
  height: 68px;
}
.nav-logo {
  font-size: 20px; font-weight: 800; color: var(--dark);
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--primary); }
.nav-logo .logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); display: inline-block;
}
.nav-links {
  display: flex; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--body);
  transition: all .15s;
}
.nav-links a:hover, .nav-links a.active { background: var(--bg); color: var(--primary); }
.nav-cta { margin-left: 8px; }
.nav-mobile-btn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto; color: var(--dark);
}
.nav-mobile-btn svg { display: block; }
.mobile-menu {
  display: none; padding: 16px 0;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 24px;
  font-weight: 500; color: var(--body);
  border-radius: 8px; margin: 2px 16px;
}
.mobile-menu a:hover { background: var(--bg); color: var(--primary); }
.mobile-menu .btn { margin: 8px 16px 0; width: calc(100% - 32px); justify-content: center; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a8a 60%, #312e81 100%);
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 1; }
.hero-body { max-width: 720px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px; padding: 6px 14px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9);
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: #93c5fd; font-style: normal; }
.hero-sub { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 580px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.65); font-size: 13px; font-weight: 500;
}
.hero-trust-item svg { color: #4ade80; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--primary);
  padding: 20px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center; padding: 16px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 1.75rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.7); }

/* ── FEATURE CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.feature-icon.blue { background: var(--primary-light); }
.feature-icon.violet { background: var(--accent-light); }
.feature-icon.green { background: #dcfce7; }
.feature-icon.orange { background: #fef3c7; }
.feature-card h3 { margin-bottom: 8px; color: var(--dark); }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── PLAN CARDS ── */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 40px;
}
.pricing-toggle label { font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; }
.pricing-toggle label.active { color: var(--dark); }
.toggle-switch {
  width: 52px; height: 28px; background: var(--primary);
  border-radius: 100px; position: relative; cursor: pointer;
  transition: background .2s;
}
.toggle-knob {
  width: 22px; height: 22px; background: white; border-radius: 50%;
  position: absolute; top: 3px; left: 3px;
  transition: left .2s;
}
.toggle-switch.annual .toggle-knob { left: 27px; }
.toggle-badge {
  background: #dcfce7; color: #16a34a;
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 100px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.plan-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 22px;
  position: relative; transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.plan-card:hover { border-color: var(--primary); box-shadow: var(--shadow-blue); transform: translateY(-3px); }
.plan-card.popular { border-color: var(--primary); }
.plan-card .popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: white; font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.plan-tier { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.plan-name { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.plan-specs {
  background: var(--bg); border-radius: 8px; padding: 10px 12px;
  margin-bottom: 18px; font-size: 12px; color: var(--muted); line-height: 1.7;
}
.plan-specs strong { color: var(--body); }
.plan-price-block { margin-bottom: 6px; }
.plan-price {
  font-size: 2.25rem; font-weight: 900; color: var(--dark); line-height: 1;
}
.plan-price sup { font-size: 1rem; font-weight: 700; vertical-align: super; }
.plan-price sub { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.plan-period { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.plan-annual { font-size: 12px; color: var(--success); font-weight: 600; margin-bottom: 20px; }
.plan-features { margin-bottom: 24px; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--body); padding: 5px 0;
  border-bottom: 1px solid var(--bg);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: '✓'; color: var(--success); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.plan-cta { margin-top: auto; }
.plan-card.popular .plan-cta .btn-outline { background: var(--primary); color: white; border-color: var(--primary); }

/* ── COMPARISON TABLE ── */
.comparison-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th {
  padding: 16px 20px; text-align: center; font-weight: 700;
  border-bottom: 2px solid var(--border);
}
.comparison-table th:first-child { text-align: left; }
.comparison-table th.highlight { background: var(--primary); color: white; border-radius: 12px 12px 0 0; }
.comparison-table td {
  padding: 14px 20px; text-align: center;
  border-bottom: 1px solid var(--border); color: var(--body);
}
.comparison-table td:first-child { text-align: left; font-weight: 600; color: var(--dark); }
.comparison-table td.highlight { background: var(--primary-light); font-weight: 700; color: var(--primary); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .check { color: var(--success); font-size: 18px; }
.comparison-table .cross { color: #cbd5e1; font-size: 18px; }
.comparison-table .price-cell { font-weight: 700; font-size: 15px; }

/* ── FEATURE LIST (recursos page) ── */
.resource-block { padding: 56px 0; }
.resource-block + .resource-block { border-top: 1px solid var(--border); }
.resource-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.resource-grid.reverse { direction: rtl; }
.resource-grid.reverse > * { direction: ltr; }
.resource-media {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border-radius: var(--radius-lg); padding: 40px;
  min-height: 280px; display: flex; align-items: center; justify-content: center;
}
.resource-specs-list { display: flex; flex-direction: column; gap: 12px; }
.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; background: var(--bg); border-radius: 8px;
  font-size: 14px;
}
.spec-row span:first-child { color: var(--muted); }
.spec-row span:last-child { font-weight: 700; color: var(--dark); }
.resource-content h2 { margin-bottom: 16px; }
.resource-content p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; gap: 10px; font-size: 14px; align-items: flex-start;
}
.check-list li .check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: #dcfce7; color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0; margin-top: 2px;
}

/* ── FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--dark);
  text-align: left; gap: 16px;
}
.faq-question:hover { background: var(--bg); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--primary); transition: transform .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary-light); }
.faq-answer {
  display: none; padding: 0 22px 20px;
  font-size: 14px; color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }
.faq-category { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--primary); margin: 40px 0 16px; }
.faq-category:first-child { margin-top: 0; }

/* ── CTA BANNER ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-section h2 { color: white; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── ACTIVATION BADGE ── */
.activation-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(90deg, #dcfce7, #d1fae5);
  border: 1px solid #86efac; border-radius: 100px;
  padding: 6px 14px; font-size: 13px; font-weight: 700; color: #15803d;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.trust-item svg { color: var(--primary); }

/* ── FEATURED PLANS (homepage 3 cards) ── */
.featured-plans {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a8a 100%);
  padding: 56px 0 48px;
}
.page-hero h1 { color: white; margin-bottom: 12px; font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.page-hero p { color: rgba(255,255,255,.7); max-width: 560px; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ── TESTIMONIAL / SOCIAL PROOF ── */
.social-proof {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.proof-text { font-size: 15px; color: var(--body); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 14px;
}
.proof-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.proof-role { font-size: 12px; color: var(--muted); }
.stars { color: var(--warning); font-size: 14px; margin-bottom: 12px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand { }
.footer-logo { font-size: 20px; font-weight: 800; color: white; margin-bottom: 12px; }
.footer-logo span { color: #93c5fd; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 13px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 6px; }
.footer-contact a:hover { color: white; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: white; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; padding: 4px 10px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5);
}

/* ── DARK SECTION ── */
.section-dark { background: var(--dark); }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark p, .section-dark li { color: rgba(255,255,255,.65); }
.section-dark .section-label { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }

/* ── GRAY SECTION ── */
.section-gray { background: var(--bg); }

/* ── MISC ── */
.divider { height: 1px; background: var(--border); margin: 0; }
.tag { display: inline-block; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 2px 8px; font-size: 12px; font-weight: 600; color: var(--muted); }
.highlight-row { background: linear-gradient(90deg, var(--primary-light), white); border-radius: var(--radius); padding: 24px; margin: 24px 0; }
.number-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.number-feature:last-child { border-bottom: none; }
.number-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.number-feature h4 { font-size: 15px; margin-bottom: 4px; color: var(--dark); }
.number-feature p { font-size: 13px; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .resource-grid { grid-template-columns: 1fr; gap: 32px; }
  .resource-grid.reverse { direction: ltr; }
  .featured-plans { grid-template-columns: 1fr; gap: 20px; max-width: 440px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.15); }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: block; }
  .plans-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1/-1; }
  .hero { padding: 60px 0; }
  .hero-actions { flex-direction: column; }
  .trust-strip-inner { gap: 20px; justify-content: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
