/* =============================================
   SHADOWCHEATS — Main Stylesheet
   Dark Purple Gaming Theme
   ============================================= */

:root {
  --bg-base: #050508;
  --bg-card: #0d0d14;
  --bg-card-hover: #13131e;
  --border: rgba(130, 80, 255, 0.15);
  --border-bright: rgba(130, 80, 255, 0.4);
  --purple-primary: #8250ff;
  --purple-light: #a27dff;
  --purple-dark: #5a35b5;
  --purple-glow: rgba(130, 80, 255, 0.3);
  --text-primary: #f0eeff;
  --text-secondary: #8a87a8;
  --text-muted: #4a4760;
  --accent-gold: #f0b429;
  --gradient: linear-gradient(135deg, #8250ff, #c084fc);
  --gradient-text: linear-gradient(135deg, #a27dff, #e879f9);
  --font-display: 'Orbitron', monospace;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.center-btn { text-align: center; margin-top: 48px; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 0 24px var(--purple-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(130,80,255,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-bright);
}
.btn-ghost:hover {
  border-color: var(--purple-primary);
  background: rgba(130,80,255,0.1);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 18px; font-size: 13px; }

.btn-danger {
  background: linear-gradient(135deg, #e53e3e, #c53030);
  color: white;
}
.btn-danger:hover { transform: translateY(-2px); box-shadow: 0 0 20px rgba(229,62,62,0.4); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 24px;
  color: var(--purple-primary);
  filter: drop-shadow(0 0 8px var(--purple-primary));
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
}

.logo-accent { color: var(--purple-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(130,80,255,0.1);
}

.nav-link.active { color: var(--purple-light); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-user {
  font-size: 14px;
  color: var(--purple-light);
  padding: 8px 14px;
  background: rgba(130,80,255,0.1);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px;
  background: rgba(5,5,8,0.97);
  border-top: 1px solid var(--border);
}

.nav-mobile.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(130,80,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130,80,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatOrb 8s ease-in-out infinite;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(130,80,255,0.2), transparent 70%);
  top: -100px;
  right: -100px;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192,132,252,0.15), transparent 70%);
  bottom: 0;
  left: -50px;
  animation-delay: -4s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(130,80,255,0.1);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-light);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 24px;
  background: rgba(13,13,20,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--purple-light);
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding: 6px 0;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--purple-primary);
  border-radius: 2px;
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ── SECTION COMMON ── */
.features-section, .products-preview, .testimonials-section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(130,80,255,0.1);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p { color: var(--text-secondary); font-size: 17px; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(130,80,255,0.1);
}

.feature-card--accent {
  background: linear-gradient(135deg, rgba(130,80,255,0.15), rgba(192,132,252,0.08));
  border-color: var(--border-bright);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(130,80,255,0.15);
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p { color: var(--text-secondary); font-size: 15px; }

/* ── PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(130,80,255,0.15);
}

.product-card--featured {
  background: linear-gradient(135deg, rgba(130,80,255,0.18), rgba(192,132,252,0.08));
  border-color: var(--purple-primary);
  box-shadow: 0 0 30px rgba(130,80,255,0.2);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  background: rgba(130,80,255,0.2);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 1.5px;
}

.product-badge--gold {
  background: rgba(240,180,41,0.15);
  border-color: rgba(240,180,41,0.4);
  color: var(--accent-gold);
}

.product-game {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
  flex: 1;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.product-features span {
  padding: 5px 12px;
  background: rgba(130,80,255,0.1);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--purple-light);
}

.product-price span {
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: rgba(13,13,20,0.5); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}

.stars { color: var(--accent-gold); font-size: 16px; margin-bottom: 16px; }

.testimonial-card p {
  color: var(--text-secondary);
  font-size: 15px;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── CTA ── */
.cta-section { padding: 80px 0; }

.cta-box {
  position: relative;
  text-align: center;
  padding: 72px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(130,80,255,0.2), transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 36px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
.footer {
  position: relative;
  padding: 72px 0 32px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 2px;
  background: var(--gradient);
  filter: blur(4px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 16px 0 20px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-social { display: flex; gap: 12px; }

.social-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--purple-primary);
  color: var(--purple-light);
  background: rgba(130,80,255,0.1);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--purple-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--purple-light); }

/* ── SHOP PAGE ── */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  margin-bottom: 16px;
}

.page-hero p { color: var(--text-secondary); font-size: 17px; }

.shop-section { padding: 72px 0; }

.shop-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--purple-primary);
  color: var(--purple-light);
  background: rgba(130,80,255,0.1);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ── AUTH PAGES ── */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
}

.auth-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(130,80,255,0.15), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(192,132,252,0.1), transparent 60%);
}

.auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-card h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.auth-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.2s;
  outline: none;
}

.form-group input:focus {
  border-color: var(--purple-primary);
  box-shadow: 0 0 0 3px rgba(130,80,255,0.15);
}

.form-group input::placeholder { color: var(--text-muted); }

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  font-size: 16px;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 14px;
}

.auth-footer a {
  color: var(--purple-light);
  font-weight: 600;
}

.auth-footer a:hover { text-decoration: underline; }

.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid;
}

.alert-error {
  background: rgba(229,62,62,0.1);
  border-color: rgba(229,62,62,0.3);
  color: #fc8181;
}

.alert-success {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
  color: #4ade80;
}

.form-divider {
  position: relative;
  text-align: center;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 13px;
}

.form-divider::before, .form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 30px);
  height: 1px;
  background: var(--border);
}

.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 72px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p { color: var(--text-secondary); font-size: 16px; margin-bottom: 32px; }

.contact-links { display: flex; flex-direction: column; gap: 16px; }

.contact-link-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.contact-link-card:hover {
  border-color: var(--border-bright);
  transform: translateX(4px);
  background: var(--bg-card-hover);
}

.contact-link-icon {
  width: 48px;
  height: 48px;
  background: rgba(130,80,255,0.15);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  flex-shrink: 0;
}

.contact-link-card h3 { font-size: 15px; font-weight: 600; }
.contact-link-card p { font-size: 13px; color: var(--text-muted); margin: 0; }

.contact-discord-cta {
  padding: 48px;
  background: linear-gradient(135deg, rgba(88,101,242,0.2), rgba(130,80,255,0.15));
  border: 1px solid rgba(88,101,242,0.4);
  border-radius: var(--radius-lg);
  text-align: center;
}

.discord-icon {
  width: 80px;
  height: 80px;
  background: rgba(88,101,242,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #7289da;
}

.contact-discord-cta h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-discord-cta p { color: var(--text-secondary); margin-bottom: 28px; }

.btn-discord {
  background: linear-gradient(135deg, #5865f2, #7289da);
  color: white;
}

.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(88,101,242,0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }

  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 60px; height: 1px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .contact-grid { grid-template-columns: 1fr; }

  .auth-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
