/* Game VDS/VPS Page Styles */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --primary: #4E4FEA;
  --primary-light: #4E4FEB;
  --primary-dark: #213979;
  --gradient: linear-gradient(135deg, #4E4FEA 0%, #4E4FEB 50%, #213979 100%);
  --gradient-light: linear-gradient(135deg, rgba(78, 79, 234, 0.1) 0%, rgba(33, 57, 121, 0.1) 100%);
  --accent: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --text: #1e293b;
  --text-secondary: #475569;
  --text-light: #64748b;
  --border: #e2e8f0;
  --card-bg: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --game-primary: #8b5cf6;
  --game-secondary: #06b6d4;
  --game-accent: #22c55e;
}

[data-theme="dark"] {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-light: #94a3b8;
  --border: #334155;
  --card-bg: #1e293b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--bg-primary); color: var(--text); line-height: 1.7; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* Top Bar */
.top-bar {
  background: var(--gradient);
  padding: 0.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.top-bar-left { display: flex; align-items: center; gap: 0.5rem; color: #fff; font-weight: 600; }
.top-bar-text-short { display: none; }
.top-bar-right { display: flex; gap: 2rem; }
.top-bar-right a { color: #fff; text-decoration: none; font-weight: 500; transition: opacity 0.3s; }
.top-bar-right a:hover { opacity: 0.85; }

/* Header */
header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}
.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img { height: 42px; }
[data-theme="dark"] .logo img { filter: brightness(0) invert(1); }
.nav-menu { display: flex; gap: 0; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s;
}
.nav-menu > li > a:hover { color: var(--primary); }
.nav-menu > li > a svg { width: 12px; height: 12px; transition: transform 0.3s; }
.nav-menu > li:hover > a svg { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-primary);
  min-width: 220px;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  padding: 0.5rem 0;
  z-index: 1000;
}
.nav-menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.dropdown a:hover { background: var(--gradient-light); color: var(--primary); padding-left: 1.5rem; }
.header-cta { display: flex; align-items: center; gap: 1.5rem; }
.header-phone { display: flex; align-items: center; gap: 0.5rem; color: var(--text-secondary); font-weight: 600; font-size: 0.95rem; }
.header-phone svg { color: var(--primary); }

/* Mobile Menu */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; z-index: 1001; }
.mobile-menu-btn span { width: 25px; height: 3px; background: var(--text); border-radius: 3px; transition: all 0.3s; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg-primary); z-index: 999; padding: 100px 2rem 2rem; overflow-y: auto; }
.mobile-menu.active { display: block; }
.mobile-menu-nav { list-style: none; }
.mobile-menu-nav > li { border-bottom: 1px solid var(--border); }
.mobile-menu-nav > li > a { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; color: var(--text); text-decoration: none; font-weight: 600; font-size: 1.1rem; }
.mobile-menu-nav > li > a svg { width: 16px; height: 16px; transition: transform 0.3s; }
.mobile-menu-nav > li.open > a svg { transform: rotate(180deg); }
.mobile-dropdown { display: none; padding-bottom: 1rem; }
.mobile-menu-nav > li.open .mobile-dropdown { display: block; }
.mobile-dropdown a { display: block; padding: 0.75rem 1rem; color: var(--text-secondary); text-decoration: none; font-size: 1rem; border-left: 2px solid var(--border); margin-left: 0.5rem; }
.mobile-dropdown a:hover { color: var(--primary); border-left-color: var(--primary); }
.mobile-menu-cta { margin-top: 2rem; text-align: center; }
.mobile-menu-cta .btn { width: 100%; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 4px 14px rgba(78, 79, 234, 0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(78, 79, 234, 0.5); }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.btn-large { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.badge { display: inline-block; background: var(--gradient); color: #fff; padding: 8px 20px; border-radius: 30px; font-size: 14px; font-weight: 600; margin-bottom: 15px; }

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 650px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.game-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: grid-move 20s linear infinite;
}
@keyframes grid-move {
  0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
  100% { transform: perspective(500px) rotateX(60deg) translateY(40px); }
}
.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}
.el-1 { width: 300px; height: 300px; background: var(--game-primary); top: 10%; left: 5%; animation: float-1 8s ease-in-out infinite; }
.el-2 { width: 200px; height: 200px; background: var(--game-secondary); bottom: 20%; right: 10%; animation: float-2 6s ease-in-out infinite; }
.el-3 { width: 150px; height: 150px; background: var(--game-accent); top: 40%; right: 30%; animation: float-1 10s ease-in-out infinite reverse; }
@keyframes float-1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -30px); } }
@keyframes float-2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, 20px); } }

.ping-indicator {
  position: absolute;
  top: 20%;
  right: 15%;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.5);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--game-accent);
}
.ping-dot { width: 8px; height: 8px; background: var(--game-accent); border-radius: 50%; animation: ping-pulse 1s infinite; }
@keyframes ping-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.ping-value { color: var(--game-accent); font-weight: 700; font-size: 14px; }

.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-text { color: #fff; }
.hero h1 { font-size: 52px; font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
.gradient-text { background: linear-gradient(135deg, var(--game-primary), var(--game-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-features { list-style: none; margin-bottom: 30px; }
.hero-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; font-size: 16px; opacity: 0.9; }
.hero-features svg { width: 20px; height: 20px; color: var(--game-accent); flex-shrink: 0; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* Game Console Visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.game-console {
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border-radius: 20px;
  padding: 20px;
  border: 2px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 100px rgba(139, 92, 246, 0.2);
  width: 320px;
}
.console-screen {
  background: linear-gradient(180deg, #0f172a, #1e1b4b);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.game-stats { display: flex; flex-direction: column; gap: 12px; }
.stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.3);
  padding: 10px 15px;
  border-radius: 8px;
  border-left: 3px solid var(--game-primary);
}
.stat-icon { font-size: 18px; }
.stat-name { flex: 1; color: #94a3b8; font-size: 13px; font-weight: 600; }
.stat-val { color: #fff; font-weight: 700; font-family: 'JetBrains Mono', monospace; }
.stat-val.ping { color: var(--game-accent); }
.server-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  padding: 10px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.status-dot { width: 10px; height: 10px; background: var(--game-accent); border-radius: 50%; animation: status-pulse 2s infinite; }
@keyframes status-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); } 50% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); } }
.server-status span { color: var(--game-accent); font-weight: 600; font-size: 13px; }
.console-base { background: linear-gradient(180deg, #334155, #1e293b); padding: 12px; border-radius: 0 0 12px 12px; }
.led-strip { display: flex; justify-content: center; gap: 8px; }
.led-strip span { width: 8px; height: 8px; background: var(--game-primary); border-radius: 50%; animation: led-flow 1.5s ease-in-out infinite; }
.led-strip span:nth-child(2) { animation-delay: 0.1s; }
.led-strip span:nth-child(3) { animation-delay: 0.2s; }
.led-strip span:nth-child(4) { animation-delay: 0.3s; }
.led-strip span:nth-child(5) { animation-delay: 0.4s; }
@keyframes led-flow { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; box-shadow: 0 0 10px var(--game-primary); } }

.performance-badge {
  position: absolute;
  top: 0;
  right: -20px;
  background: linear-gradient(135deg, var(--game-primary), #7c3aed);
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: badge-float 3s ease-in-out infinite;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.5);
}
@keyframes badge-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.perf-icon { font-size: 24px; }
.perf-text { color: #fff; font-size: 11px; font-weight: 700; text-align: center; line-height: 1.2; }

/* Packages Section */
.packages { padding: 80px 0; background: var(--bg-secondary); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 15px; color: var(--text); }
.section-header p { color: var(--text-light); font-size: 18px; max-width: 600px; margin: 0 auto; }
.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

/* Package Card */
.package-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.package-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
.package-card.popular { border-color: var(--game-primary); }
.package-card.popular::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--game-primary), var(--game-secondary)); }
.package-card.premium { border-color: #f59e0b; }
.package-card.premium::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #f59e0b, #ef4444); }
.popular-badge, .premium-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  padding: 5px 40px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  transform: rotate(45deg);
}
.popular-badge { background: var(--game-primary); }
.premium-badge { background: linear-gradient(90deg, #f59e0b, #ef4444); }
.package-icon { margin-bottom: 20px; }
.package-icon svg { width: 50px; height: 50px; color: var(--game-primary); }
.package-header { margin-bottom: 25px; }
.price { font-size: 36px; font-weight: 800; color: var(--text); }
.price .decimal { font-size: 22px; }
.price .period { font-size: 14px; font-weight: 500; color: var(--text-light); }
.package-features { list-style: none; margin-bottom: 25px; }
.package-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text-secondary); }
.package-features svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }
.btn-buy {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gradient);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
}
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(78, 79, 234, 0.4); }

/* Managed VPS Section */
.managed-vps { padding: 100px 0; background: linear-gradient(135deg, #f0f9ff, #e0f2fe); }
[data-theme="dark"] .managed-vps { background: linear-gradient(135deg, #0f172a, #1e293b); }
.managed-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.managed-text h2 { font-size: 32px; font-weight: 800; margin-bottom: 20px; color: var(--text); }
.managed-text p { color: var(--text-light); font-size: 16px; line-height: 1.8; }

/* Server Illustration */
.managed-visual { display: flex; justify-content: center; }
.server-illustration { position: relative; }
.server-tower {
  width: 120px;
  background: linear-gradient(180deg, #334155, #1e293b);
  border-radius: 12px;
  padding: 15px;
  border: 2px solid #475569;
}
.tower-top { background: #475569; height: 30px; border-radius: 6px; margin-bottom: 15px; position: relative; }
.vent-lines { position: absolute; inset: 8px; background: repeating-linear-gradient(0deg, #1e293b 0px, #1e293b 2px, transparent 2px, transparent 4px); border-radius: 4px; }
.tower-middle { display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px; }
.drive-bay { background: #0f172a; height: 15px; border-radius: 4px; display: flex; align-items: center; padding-left: 8px; }
.drive-led { width: 6px; height: 6px; background: #475569; border-radius: 50%; }
.drive-led.active { background: var(--game-accent); box-shadow: 0 0 8px var(--game-accent); animation: led-blink 1s infinite; }
@keyframes led-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.tower-bottom { display: flex; justify-content: center; }
.power-btn { width: 20px; height: 20px; background: #475569; border-radius: 50%; border: 2px solid #64748b; position: relative; }
.power-btn::after { content: ''; position: absolute; inset: 4px; border: 2px solid #94a3b8; border-radius: 50%; border-bottom-color: transparent; }
.connection-lines { position: absolute; top: 50%; left: 100%; transform: translateY(-50%); width: 200px; height: 100px; color: var(--game-primary); opacity: 0.5; }
.line-1, .line-2 { stroke-dasharray: 200; animation: line-draw 3s linear infinite; }
.line-2 { animation-delay: 1.5s; }
@keyframes line-draw { 0% { stroke-dashoffset: 200; } 100% { stroke-dashoffset: 0; } }

/* Features Grid */
.features-section { padding: 80px 0; background: var(--bg-primary); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: var(--primary); }
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--primary); }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.feature-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* FAQ Section */
.faq-section { padding: 80px 0; background: var(--bg-secondary); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--card-bg); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
.faq-question {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s;
}
.faq-question:hover { background: var(--bg-secondary); }
.faq-question svg { width: 20px; height: 20px; color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 20px 20px; color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* CTA Section */
.cta-section { padding: 80px 0; background: var(--gradient); }
.cta-content { text-align: center; color: #fff; }
.cta-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
.cta-content p { opacity: 0.9; margin-bottom: 30px; font-size: 18px; }
.btn-cta { background: #fff; color: var(--primary); padding: 16px 40px; font-size: 16px; border-radius: 10px; font-weight: 600; display: inline-block; transition: all 0.3s; }
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }

/* Footer */
footer { background: var(--text); color: #fff; padding: 4rem 2rem 2rem; }
.footer-content { max-width: 1400px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 40px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s; }
.footer-social a:hover { background: var(--primary); }
.footer-column h4 { font-weight: 700; margin-bottom: 1.25rem; font-size: 1rem; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 0.75rem; }
.footer-column ul a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-column ul a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; }
.footer-bottom-links a:hover { color: #fff; }

/* WhatsApp Button */
.whatsapp-btn { position: fixed; bottom: 25px; left: 25px; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); z-index: 1000; transition: all 0.3s; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); }
.whatsapp-btn svg { width: 30px; height: 30px; color: #fff; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-content, .managed-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-visual { order: -1; }
  .hero-features { text-align: left; }
  .hero-buttons { justify-content: center; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .nav-menu, .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }
}

@media (max-width: 768px) {
  .top-bar { padding: 0.5rem 1rem; justify-content: center; }
  .top-bar-text-full { display: none; }
  .top-bar-text-short { display: inline; }
  .top-bar-right { display: none; }
  .hero h1 { font-size: 36px; }
  .packages-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .performance-badge { right: 0; width: 80px; height: 80px; }
  .ping-indicator { display: none; }
}

