/* ══════════════════════════════════════════════════════
   S333 Brasil — Global Stylesheet
   Theme: Dark + Orange/Gold (referencing s333.onl design)
   Target: Brazilian Portuguese audience
   ══════════════════════════════════════════════════════ */

:root {
  --orange: #f97316;
  --orange-d: #ea580c;
  --gold: #facc15;
  --green: #22c55e;
  --bg-dark: #0d1117;
  --bg-card: #1f2937;
  --bg-card2: #374151;
  --bg-section: #161e2c;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --border: #374151;
  --radius: 14px;
  --radius-sm: 8px;
  --transition: .25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HEADER / NAVBAR ─────────────────────────────── */
.header {
  background: linear-gradient(90deg, #0d1117 0%, #1a0800 60%, #0d1117 100%);
  border-bottom: 2px solid var(--orange);
  padding: .7rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo a { display: flex; align-items: center; }
.logo img { height: 44px; width: auto; object-fit: contain; }

.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.main-nav .nav-list li a {
  color: #e5e7eb;
  font-weight: 500;
  font-size: .92rem;
  padding: .45rem .75rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.main-nav .nav-list li a:hover,
.main-nav .nav-list li a.active {
  color: var(--gold);
  background: rgba(249, 115, 22, .15);
}

.header-actions { display: flex; gap: .6rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .92rem;
  padding: .55rem 1.3rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(90deg, var(--orange), var(--orange-d));
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(90deg, var(--gold), var(--orange));
  color: #111827;
  transform: scale(1.03);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #111827;
  transform: scale(1.03);
}

.btn-secondary {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text-main);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-large { padding: .8rem 2rem; font-size: 1.05rem; border-radius: 10px; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--orange);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  transition: all .3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}
.mobile-menu.active { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.mobile-nav ul li a {
  display: block;
  color: #e5e7eb;
  font-size: 1.1rem;
  font-weight: 500;
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a.active { background: rgba(249, 115, 22, .15); color: var(--gold); }
.mobile-actions { display: flex; gap: .8rem; margin-top: 1.5rem; }
.mobile-actions .btn { flex: 1; text-align: center; }

/* ── BREADCRUMB ──────────────────────────────────── */
.breadcrumb {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: .6rem 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
}
.breadcrumb-list li a { color: var(--orange); }
.breadcrumb-list li a:hover { color: var(--gold); }
.breadcrumb-list li + li::before { content: '›'; color: var(--text-muted); margin-right: .5rem; }
.breadcrumb-list li .current { color: var(--text-muted); }

/* ── HERO SECTION ────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0d1117 0%, #1a0600 55%, #0d1117 100%);
  border-bottom: 3px solid var(--orange);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, .1) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(250, 204, 21, .06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.hero-badge {
  background: linear-gradient(90deg, var(--orange), var(--orange-d));
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: .3rem .9rem;
  border-radius: 20px;
  display: inline-block;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-top: .8rem;
}
.hero h1 .brand { color: var(--orange); }

.hero .lead {
  color: #fed7aa;
  font-size: 1.05rem;
  margin-top: 1rem;
  max-width: 560px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}
.stat-item { text-align: center; }
.stat-value { display: block; font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.stat-label { display: block; font-size: .8rem; color: var(--text-muted); text-transform: uppercase; }

.hero-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-trust { color: var(--text-muted); font-size: .82rem; margin-top: 1.2rem; }

/* Page Hero (sub-pages) */
.page-hero {
  background: linear-gradient(135deg, #0d1117 0%, #1a0600 55%, #0d1117 100%);
  border-bottom: 3px solid var(--orange);
  padding: 3rem 0 2.2rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, .08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.page-hero h1 .brand { color: var(--orange); }
.page-hero .subtitle {
  color: #fed7aa;
  font-size: 1rem;
  margin-top: .6rem;
  max-width: 650px;
}

/* ── SECTION COMMONS ─────────────────────────────── */
section { padding: 3.5rem 0; }
.bg-section { background: var(--bg-section); }
.bg-dark { background: var(--bg-dark); }

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  border-left: 4px solid var(--orange);
  padding-left: .75rem;
  margin-bottom: .5rem;
}
.section-desc { color: var(--text-muted); margin-bottom: 2rem; font-size: .95rem; }

/* ── CARD GRIDS ──────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Game Card */
.game-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.game-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(249, 115, 22, .15);
  transform: translateY(-4px);
}

.game-image {
  position: relative;
  background: linear-gradient(135deg, #1a0600, #3b0a00);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.game-image img { width: 100%; height: 100%; object-fit: cover; }
.game-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: .8rem;
}
.game-tag {
  background: rgba(0, 0, 0, .7);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 20px;
}
.live-tag {
  background: rgba(220, 38, 38, .9);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.live-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-live 1.5s infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.game-info { padding: 1.2rem; }
.game-info h3 { color: #fff; font-weight: 700; font-size: 1.05rem; margin-bottom: .4rem; }
.game-info p { color: #d1d5db; font-size: .9rem; margin-bottom: .8rem; line-height: 1.6; }
.game-stats { display: flex; justify-content: space-between; font-size: .82rem; color: var(--text-muted); margin-bottom: 1rem; }
.game-info .btn { width: 100%; justify-content: center; }

/* Feature Card */
.feature-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem 1.3rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(249, 115, 22, .15);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.fi-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.fi-gold { background: linear-gradient(135deg, #d97706, #b45309); }
.fi-blue { background: linear-gradient(135deg, #1d4ed8, #3b82f6); }
.fi-green { background: linear-gradient(135deg, #059669, #10b981); }
.fi-purple { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
.fi-teal { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.fi-red { background: linear-gradient(135deg, #dc2626, #ef4444); }

.feature-card h3 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
.feature-card p { color: #d1d5db; font-size: .93rem; margin: 0; line-height: 1.7; }

/* Category Card */
.category-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.category-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, .12);
}
.category-icon { font-size: 2.5rem; display: block; margin-bottom: .8rem; }
.category-card h3 { color: #fff; font-weight: 700; font-size: 1.05rem; margin-bottom: .4rem; }
.category-card p { color: var(--text-muted); font-size: .88rem; margin-bottom: .6rem; }
.game-count {
  display: inline-block;
  background: rgba(249, 115, 22, .15);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 600;
  padding: .2rem .7rem;
  border-radius: 20px;
}

/* ── CONTENT SECTIONS ────────────────────────────── */
.content-section { margin-bottom: 2.5rem; }
.content-section h2 {
  color: #fdba74;
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.content-section h2 .s-num {
  background: var(--orange);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  border-radius: 50%;
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.content-section p { color: #d1d5db; margin-bottom: .85rem; }
.content-section ul,
.content-section ol { color: #d1d5db; padding-left: 1.3rem; margin-bottom: .85rem; list-style: disc; }
.content-section ol { list-style: decimal; }
.content-section ul li,
.content-section ol li { margin-bottom: .4rem; }
.content-divider { border: none; border-top: 1px dashed var(--border); margin: 2rem 0; }

/* Content Layout */
.content-grid { display: grid; grid-template-columns: 1fr 280px; gap: 2rem; }

/* Sidebar */
.sidebar-box {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  position: sticky;
  top: 80px;
}
.sidebar-title {
  color: var(--orange);
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .9rem;
}
.sidebar-box ol {
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 2.2;
  list-style: decimal;
}
.sidebar-box ol li a { color: var(--text-muted); }
.sidebar-box ol li a:hover { color: var(--orange); }

/* Info Boxes */
.info-box {
  background: linear-gradient(135deg, #0c1a2e, #0a2040);
  border: 1.5px solid #1d4ed8;
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.2rem;
}
.info-box h4 { color: #93c5fd; font-weight: 700; margin-bottom: .45rem; font-size: .95rem; }
.info-box p, .info-box li { color: #bfdbfe; font-size: .92rem; }
.info-box ul { padding-left: 1.2rem; margin: .4rem 0 0; list-style: disc; }

.success-box {
  background: linear-gradient(135deg, #052e16, #14532d);
  border: 1.5px solid #16a34a;
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.2rem;
}
.success-box h4 { color: #86efac; font-weight: 700; margin-bottom: .45rem; font-size: .95rem; }
.success-box p, .success-box li { color: #bbf7d0; font-size: .92rem; }
.success-box ul { padding-left: 1.2rem; margin: .4rem 0 0; list-style: disc; }

.warning-box {
  background: linear-gradient(135deg, #1a1500, #3b2e00);
  border: 1.5px solid #ca8a04;
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.2rem;
}
.warning-box h4 { color: var(--gold); font-weight: 700; margin-bottom: .45rem; font-size: .95rem; }
.warning-box p, .warning-box li { color: #fef08a; font-size: .92rem; }
.warning-box ul { padding-left: 1.2rem; margin: .4rem 0 0; list-style: disc; }

/* ── STEP / PROCESS ──────────────────────────────── */
.step-item {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}
.step-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(249, 115, 22, .35);
}
.step-body h4 { color: #fff; font-weight: 700; margin-bottom: .35rem; font-size: 1rem; }
.step-body p { color: #d1d5db; margin: 0; font-size: .93rem; line-height: 1.65; }

/* ── BONUS TABLE ─────────────────────────────────── */
.bonus-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.bonus-table thead th {
  background: linear-gradient(90deg, #1a0600, #3b0a00);
  color: var(--gold);
  font-weight: 700;
  padding: .85rem 1rem;
  font-size: .92rem;
  border-bottom: 2px solid var(--orange);
  text-align: left;
}
.bonus-table tbody tr { background: var(--bg-card); }
.bonus-table tbody tr:nth-child(even) { background: #263244; }
.bonus-table tbody td {
  padding: .8rem 1rem;
  color: #e5e7eb;
  font-size: .91rem;
  border-bottom: 1px solid var(--border);
}
.bonus-table tbody tr:last-child td { border-bottom: none; }
.badge-hot {
  background: linear-gradient(90deg, var(--orange), var(--orange-d));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .15rem .55rem;
  border-radius: 20px;
  margin-left: .4rem;
}
.badge-new {
  background: linear-gradient(90deg, #059669, #047857);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .15rem .55rem;
  border-radius: 20px;
  margin-left: .4rem;
}

/* ── FAQ ACCORDION ───────────────────────────────── */
.faq-list { max-width: 800px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: .6rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: .97rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover { background: rgba(249, 115, 22, .08); }
.faq-question.active {
  background: linear-gradient(90deg, #1a0600, #3b0a00);
  color: #fdba74;
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform .3s;
}
.faq-question.active::after { content: '−'; }
.faq-answer {
  display: none;
  background: #1a1209;
  color: #fed7aa;
  font-size: .93rem;
  line-height: 1.75;
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--border);
}
.faq-answer.active { display: block; }

/* ── CTA BANNER ──────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1a0600 0%, #3b0a00 50%, #1a0600 100%);
  border: 2px solid var(--orange);
  border-radius: 18px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(249, 115, 22, .12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  margin-top: .8rem;
}
.cta-banner p {
  color: #fed7aa;
  max-width: 560px;
  margin: 1rem auto 2rem;
  font-size: .97rem;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #0d1117 0%, #000 100%);
  border-top: 2px solid var(--orange);
  padding: 3rem 0 1.5rem;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-logo img { height: 40px; width: auto; margin-bottom: .8rem; }
.footer-section p { color: var(--text-muted); font-size: .9rem; margin-bottom: .8rem; }
.footer-section h4 {
  color: var(--orange);
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 1rem;
}
.footer-section ul li { margin-bottom: .3rem; }
.footer-section ul li a {
  color: var(--text-muted);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-section ul li a:hover { color: var(--orange); }

/* Social Links */
.social-links {
  display: flex;
  gap: .8rem;
  margin-top: .8rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.social-links a svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1.5rem;
}
.footer-disclaimer { text-align: center; }
.footer-disclaimer p { color: var(--text-dim); font-size: .84rem; margin-bottom: .4rem; }
.footer-payments { text-align: center; margin-top: 1rem; }
.footer-payments span { color: var(--text-muted); font-size: .85rem; }
.payment-icons {
  display: flex;
  justify-content: center;
  gap: .8rem;
  margin-top: .5rem;
}
.payment-badge {
  background: var(--bg-card);
  color: #d1d5db;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: .8rem;
  border: 1px solid var(--border);
}

/* ── ANIMATIONS ──────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid .sidebar-box { position: static; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-actions { display: none; }
  .mobile-menu-toggle { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: 1.4rem; }
  section { padding: 2.5rem 0; }
  .footer-content { grid-template-columns: 1fr; }
  .cta-banner { padding: 2rem 1.2rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .logo img { height: 36px; }
}
