*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #080808;
  --black-2: #0e0e0e;
  --black-3: #141414;
  --black-4: #1a1a1a;
  --black-5: #222222;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(8,36,252,0.35);
  --yellow: #0824FC;
  --yellow-light: #2a42ff;
  --yellow-dim: rgba(8,36,252,0.12);
  --yellow-glow: rgba(8,36,252,0.25);
  --text: #f0f0f0;
  --text-muted: #888;
  --text-dim: #555;
  --radius: 12px;
  --radius-lg: 18px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
.hidden { display: none !important; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8,8,8,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  display: flex; align-items: center; gap: 2rem;
  height: 68px; width: 100%;
}
.nav-logo {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-corn { color: var(--text); }
.logo-modz { color: var(--yellow); }
.nav-links {
  display: flex; list-style: none; gap: 0.25rem; margin-left: auto;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--black-4); }
.nav-client-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: var(--black-4);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem; font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-client-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: var(--yellow-dim);
}
.nav-cta {
  padding: 0.55rem 1.25rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.875rem; font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--yellow-light); transform: translateY(-1px); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700; font-size: 0.9rem;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--yellow-glow);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--text);
  font-weight: 600; font-size: 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: var(--yellow-dim);
}
.btn-discord {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: #5865F2;
  color: #fff;
  font-weight: 700; font-size: 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88,101,242,0.35);
}
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 2rem 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(8,36,252,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,36,252,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}
.hero-glow {
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(8,36,252,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 720px;
  gap: 2rem; align-items: center; width: 100%;
}
.hero-left {
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--yellow-dim);
  border: 1px solid rgba(8,36,252,0.3);
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; color: var(--yellow-light);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-highlight {
  color: var(--yellow);
  position: relative;
}
.hero-highlight::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  border-radius: 2px;
}
.hero-desc {
  margin-top: 1.25rem;
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.7;
  max-width: 480px;
  animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  margin-top: 3rem;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-size: 2rem; font-weight: 800; color: var(--yellow);
  line-height: 1;
}
.stat-plus { font-size: 1.25rem; font-weight: 700; color: var(--yellow); }
.stat-label {
  display: block; font-size: 0.75rem; color: var(--text-muted);
  margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}
.hero-visual {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center;
  height: 640px;
  width: 720px;
  flex-shrink: 0;
  overflow: visible;
}
.hero-card-float {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.hero-card-float img { height: 100%; object-fit: cover; }
.card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  text-align: center;
}
.card-overlay span {
  font-size: 1.6rem; font-weight: 800; color: var(--yellow);
  text-transform: uppercase; letter-spacing: 3px;
}
.card-1 {
  width: 420px; height: 510px;
  top: 10px; left: 0px;
  animation: float1 6s ease-in-out infinite;
}
.card-2 {
  width: 350px; height: 430px;
  bottom: 60px; right: 0px;
  animation: float2 7s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(-2deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.features-strip {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem;
}
.strip-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem;
}
.feature-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.875rem; font-weight: 600; color: var(--text-muted);
  transition: var(--transition);
}
.feature-item svg { color: var(--yellow); flex-shrink: 0; }
.feature-item:hover { color: var(--text); }
.section-container {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--yellow-dim);
  border: 1px solid rgba(8,36,252,0.25);
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 700;
  color: var(--yellow); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800; letter-spacing: -1px; line-height: 1.2;
}
.highlight { color: var(--yellow); }
.section-desc {
  margin-top: 0.75rem;
  font-size: 1rem; color: var(--text-muted); max-width: 520px; margin-inline: auto;
}
.products-section { padding: 6rem 2rem; }
.filter-bar {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.filter-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.filter-count {
  margin-left: auto;
  font-size: 0.8rem; color: var(--text-dim);
}
.filter-count span { color: var(--yellow); font-weight: 700; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.products-loading {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; padding: 4rem; color: var(--text-muted);
}
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--black-4);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.products-error {
  text-align: center; padding: 4rem 2rem;
  color: var(--text-muted);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.products-error svg { color: var(--text-dim); }
.product-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  animation: fadeInUp 0.5s ease both;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(8,36,252,0.15);
}
.product-img {
  position: relative; height: 180px; overflow: hidden;
  background: var(--black-4);
}
.product-img img {
  height: 100%; transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img-placeholder {
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--black-4), var(--black-5));
}
.product-img-placeholder svg { color: var(--text-dim); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 0.25rem 0.65rem;
  background: rgba(8,8,8,0.85);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.7rem; font-weight: 700;
  color: var(--yellow); text-transform: uppercase; letter-spacing: 0.5px;
}
.product-tag { color: var(--yellow); border-color: rgba(8,36,252,0.3); }
.product-tag.rust     { color: #e07b39; border-color: rgba(224,123,57,0.3); }
.product-tag.fivem    { color: var(--yellow); border-color: rgba(8,36,252,0.3); }
.product-tag.r6       { color: #60a5fa; border-color: rgba(96,165,250,0.3); }
.product-tag.fortnite { color: #e879f9; border-color: rgba(232,121,249,0.3); }
.product-tag.eft      { color: #94a3b8; border-color: rgba(148,163,184,0.3); }
.product-tag.cs2      { color: #f97316; border-color: rgba(249,115,22,0.3); }
.product-tag.other    { color: #a78bfa; border-color: rgba(167,139,250,0.3); }
.product-status {
  position: absolute; top: 12px; right: 12px;
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  background: rgba(8,8,8,0.88);
  border-radius: 6px;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  position: relative;
}
.status-dot::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  animation: statusPulse 1.8s ease-in-out infinite;
}
.product-status.undetected {
  border: 1px solid rgba(74,222,128,0.35);
  color: #4ade80;
}
.product-status.undetected .status-dot {
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
}
.product-status.undetected .status-dot::after {
  background: rgba(74,222,128,0.25);
}
.product-status.updating {
  border: 1px solid rgba(8,36,252,0.4);
  color: var(--yellow-light);
}
.product-status.updating .status-dot {
  background: var(--yellow);
  box-shadow: 0 0 6px var(--yellow);
}
.product-status.updating .status-dot::after {
  background: rgba(8,36,252,0.25);
  animation-duration: 1.2s;
}
.product-status.detected {
  border: 1px solid rgba(239,68,68,0.35);
  color: #f87171;
}
.product-status.detected .status-dot {
  background: #ef4444;
  box-shadow: 0 0 6px #ef4444;
}
.product-status.detected .status-dot::after {
  background: rgba(239,68,68,0.25);
  animation-duration: 2.4s;
}
@keyframes statusPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  50%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}
.product-body {
  padding: 1.25rem; flex: 1;
  display: flex; flex-direction: column;
}
.product-name {
  font-size: 1rem; font-weight: 700; line-height: 1.3;
  margin-bottom: 0.5rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-desc {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--black-4);
}
.product-price {
  font-size: 1.1rem; font-weight: 800; color: var(--yellow);
}
.product-price.free { color: #4ade80; }
.product-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.8rem; font-weight: 700;
  border-radius: 7px;
  transition: var(--transition);
}
.product-btn:hover { background: var(--yellow-light); }
.about-section { padding: 6rem 2rem; background: var(--black-2); }
.about-grid {
  display: flex; flex-direction: column; align-items: center;
  gap: 2rem; text-align: center; max-width: 800px; margin: 0 auto;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin-top: 1.5rem; text-align: left;
}
.about-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.about-img-wrap img { height: 480px; }
.about-badge-float {
  position: absolute; bottom: 20px; right: 20px;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(8,8,8,0.9);
  border: 1px solid rgba(8,36,252,0.4);
  border-radius: 10px;
  font-size: 0.85rem; font-weight: 700; color: var(--yellow);
  backdrop-filter: blur(10px);
}
.about-text {
  color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin-top: 1.5rem;
}
.about-feat {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.875rem; font-weight: 500;
}
.feat-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow-dim);
  border: 1px solid rgba(8,36,252,0.25);
  border-radius: 6px;
  color: var(--yellow);
}
.cta-section {
  padding: 6rem 2rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(8,36,252,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800; letter-spacing: -1px;
  margin-bottom: 1rem;
}
.cta-desc {
  color: var(--text-muted); font-size: 1rem; margin-bottom: 2.5rem;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 0;
}
.footer-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 4rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.875rem; color: var(--text-muted); max-width: 280px;
}
.footer-links {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.footer-col h4 {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.875rem; color: var(--text-dim);
  margin-bottom: 0.6rem; transition: var(--transition);
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0;
  font-size: 0.8rem; color: var(--text-dim);
}
.footer-bottom a { color: var(--yellow); }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap img { height: 320px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta, .nav-client-btn { display: none !important; }
  .nav-links.mobile-open { display: flex !important; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 75vw; max-width: 300px;
    background: rgba(10,10,10,0.99);
    border-left: 1px solid var(--border);
    padding: 5rem 1.5rem 2rem;
    gap: 0.25rem; z-index: 998;
    animation: slideInRight 0.28s cubic-bezier(0.4,0,0.2,1) both;
  }
  .nav-links.mobile-open li a {
    display: block; padding: 0.85rem 1rem;
    font-size: 1rem; font-weight: 600;
    border-radius: 8px; color: var(--text-muted);
  }
  .nav-links.mobile-open li a:hover { background: var(--black-4); color: var(--yellow); }
  .nav-burger { display: none !important; }
  .nav-container { justify-content: space-between; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.25rem; }
  .stat-num { font-size: 1.5rem; }
  .about-features { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-wrap: wrap; gap: 0.4rem; }
  .filter-btn { font-size: 0.78rem; padding: 0.4rem 0.85rem; }
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: 2.2rem; }
  .cta-title { font-size: 1.6rem; }
  .strip-container { gap: 1rem; }
  .feature-item { font-size: 0.8rem; }
  .support-fab { width: 56px !important; height: 56px !important; border-radius: 50% !important; padding: 0 !important; justify-content: center !important; }
  .support-fab span { display: none; }
  .support-fab svg { width: 28px !important; height: 28px !important; }
  .support-panel { width: calc(100vw - 2rem); right: -0.5rem; }
}
@media (max-width: 480px) {
  .hero { padding: 80px 1rem 40px; }
  .hero-title { font-size: 1.9rem; letter-spacing: -1px; }
  .hero-badge { font-size: 0.72rem; }
  .hero-desc { font-size: 0.9rem; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.3rem; }
  .stat-label { font-size: 0.65rem; }
  .products-section, .about-section, .cta-section { padding: 3rem 1rem; }
  .footer { padding: 2rem 1rem 0; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .section-container { padding: 0 1rem; }
  .product-card { border-radius: 12px; }
  .support-panel { width: calc(100vw - 2rem); right: -0.5rem; }
  .support-fab span { display: none; }
  .support-fab { padding: 0.75rem; border-radius: 50%; width: 48px; height: 48px; justify-content: center; }
  .chat-widget { width: calc(100vw - 2rem); right: 0; left: 0; margin: 0 1rem; }
  .nav-container { padding: 0 1rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ===== SUPPORT WIDGET ===== */
.support-widget {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 600;
}
.support-fab {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--yellow); color: var(--black);
  font-size: 0.875rem; font-weight: 700; font-family: inherit;
  border: none; border-radius: 100px; cursor: pointer;
  box-shadow: 0 8px 25px var(--yellow-glow);
  transition: var(--transition);
}
.support-fab:hover { background: var(--yellow-light); transform: translateY(-2px); }

.support-panel {
  position: absolute; bottom: 4rem; right: 0;
  width: 400px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
  animation: fadeInUp 0.25s ease both;
}
.support-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1rem;
  background: var(--black-4);
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem; font-weight: 700;
}
.support-header-left { display: flex; align-items: center; gap: 0.5rem; }
.support-close {
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; padding: 0.2rem; transition: var(--transition);
}
.support-close:hover { color: #f87171; }

.support-form { padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.support-intro { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.support-form input, .support-form textarea {
  width: 100%; padding: 0.6rem 0.85rem;
  background: var(--black-4); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-size: 0.85rem; font-family: inherit; outline: none;
  transition: var(--transition); resize: none;
}
.support-form input:focus, .support-form textarea:focus { border-color: var(--yellow); }
.support-submit { width: 100%; justify-content: center; }

.support-chat { display: flex; flex-direction: column; height: 440px; }
.support-ticket-info {
  padding: 0.5rem 1rem;
  font-size: 0.75rem; color: var(--text-dim);
  background: var(--black-4); border-bottom: 1px solid var(--border);
}
.support-messages {
  flex: 1; overflow-y: auto; padding: 0.75rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.support-messages::-webkit-scrollbar { width: 4px; }
.support-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.support-msg { display: flex; flex-direction: column; gap: 0.15rem; }
.support-msg.self .support-msg-name { color: var(--yellow); }
.support-msg-header { display: flex; align-items: baseline; gap: 0.4rem; }
.support-msg-name { font-size: 0.78rem; font-weight: 700; color: #60a5fa; }
.support-msg-time { font-size: 0.68rem; color: var(--text-dim); }
.support-msg-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; word-break: break-word; }
.support-msg-system { font-size: 0.75rem; color: var(--text-dim); font-style: italic; }
.support-attachment { max-width: 100%; border-radius: 8px; margin-top: 0.4rem; }
.support-attachment-link { font-size: 0.78rem; color: var(--yellow); text-decoration: underline; }

.support-input-row {
  display: flex; gap: 0.5rem; padding: 0.75rem;
  border-top: 1px solid var(--border);
}
.support-input-row input {
  flex: 1; padding: 0.5rem 0.75rem;
  background: var(--black-4); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 0.82rem; font-family: inherit;
  outline: none; transition: var(--transition);
}
.support-input-row input:focus { border-color: var(--yellow); }
.support-input-row button {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow); color: var(--black);
  border: none; border-radius: 8px; cursor: pointer; transition: var(--transition);
}
.support-input-row button:hover { background: var(--yellow-light); }
.support-close-ticket {
  margin: 0 0.75rem 0.75rem;
  padding: 0.45rem; width: calc(100% - 1.5rem);
  background: none; border: 1px solid rgba(239,68,68,0.3);
  border-radius: 8px; color: #f87171; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: var(--transition);
}
.support-close-ticket:hover { background: rgba(239,68,68,0.1); }

.support-typing {
  padding: 0 0.75rem 0.35rem;
  font-size: 0.72rem; color: var(--text-dim);
  min-height: 1.1rem; font-style: italic;
}

.support-call-request {
  margin: 0.5rem 0.75rem;
  padding: 0.75rem;
  background: rgba(96,165,250,0.1);
  border: 1px solid rgba(96,165,250,0.3);
  border-radius: 10px;
}
.call-request-text { font-size: 0.82rem; color: var(--text); margin-bottom: 0.6rem; }
.call-request-btns { display: flex; gap: 0.5rem; }
.call-accept-btn {
  flex: 1; padding: 0.45rem; background: #4ade80; color: #000;
  border: none; border-radius: 7px; font-weight: 700; font-size: 0.8rem;
  cursor: pointer; font-family: inherit;
}
.call-decline-btn {
  flex: 1; padding: 0.45rem; background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3); color: #f87171;
  border-radius: 7px; font-weight: 700; font-size: 0.8rem;
  cursor: pointer; font-family: inherit;
}
.support-call-active {
  margin: 0.5rem 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 10px;
}
.call-active-info { display: flex; align-items: center; gap: 0.5rem; flex: 1; font-size: 0.82rem; font-weight: 600; color: #4ade80; }
.call-dot-pulse { width: 9px; height: 9px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 6px #4ade80; animation: pulse 1.5s ease infinite; }
.call-end-btn {
  padding: 0.35rem 0.75rem; background: #ef4444; color: #fff;
  border: none; border-radius: 7px; font-size: 0.78rem; font-weight: 700;
  cursor: pointer; font-family: inherit;
}

/* Mobile nav menu - slide from right */
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

