/* ============================================
   HOSTIFY - MAIN STYLESHEET
   ============================================ */

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

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
  --color-primary: #2563eb;
  --color-primary-light: #3b82f6;
  --color-primary-dark: #1d4ed8;
  --color-primary-50: #eff6ff;
  --color-primary-100: #dbeafe;
  --color-primary-200: #bfdbfe;
  --color-accent: #7c3aed;
  --color-accent-light: #8b5cf6;
  --color-accent-dark: #6d28d9;
  --color-tertiary: #06b6d4;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  --color-border: #e2e8f0;
  --color-bg: #ffffff;
  --color-bg-secondary: #f8fafc;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-width: 80rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --radius-full: 9999px;
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--color-text-primary);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}
ul { list-style: none; }

::selection { background: rgba(37,99,235,0.2); color: var(--color-primary-dark); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg-secondary); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 5px; border: 2px solid var(--color-bg-secondary); }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-down {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-fade-in-up { animation: fade-in-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-fade-in-down { animation: fade-in-down 0.5s ease-out forwards; }
.animate-fade-in { animation: fade-in 0.6s ease-out forwards; }
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 6s ease-in-out infinite; }
.animate-pulse-dot { animation: pulse-dot 2s ease-in-out infinite; }
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

/* ============================================
   PROMO BANNER
   ============================================ */

.promo-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #c026d3 100%);
  animation: fade-in-down 0.5s ease-out;
}
.promo-banner .dot-bg {
  position: absolute; inset: 0; opacity: 0.2;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.promo-banner .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 600;
}
@media (min-width: 640px) { .promo-banner .inner { padding: 0.75rem 1.5rem; } }
.promo-banner .promo-icon {
  display: flex; align-items: center; justify-content: center;
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%; background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.promo-banner .promo-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: #fff; color: #6d28d9; font-size: 0.75rem;
  font-weight: 700; padding: 0.25rem 1rem; border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15); transition: all 0.2s;
  margin-left: 0.5rem;
}
.promo-banner .promo-link:hover { background: #eff6ff; }
.promo-banner .close-btn {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  padding: 0.375rem; border-radius: 50%; color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.promo-banner .close-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: sticky; top: 0; z-index: 50;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(15,23,42,0.08);
  border-bottom: 1px solid rgba(226,232,240,0.6);
}
.navbar .nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) { .navbar .nav-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .navbar .nav-inner { padding: 0 2rem; } }

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { width: 44px; height: 44px; transition: transform 0.2s; border-radius: 10px; }
.nav-logo:hover img { transform: scale(1.05); }
.nav-logo-text {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a 0%, #475569 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: none; align-items: center; gap: 0.25rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1rem; border-radius: var(--radius-md);
  font-size: 0.875rem; font-weight: 600; color: #475569;
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--color-primary); background: var(--color-primary-50); }
.nav-link svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.nav-link .chevron { transition: transform 0.2s; }
.nav-link .chevron.open { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown-wrapper {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  left: 50%; transform: translateX(-50%) translateY(-8px);
  top: 100%; padding-top: 1rem;
  opacity: 0; visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
}
.nav-dropdown-wrapper:hover .nav-dropdown,
.nav-dropdown-wrapper.open .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown-inner {
  width: 600px;
  background: #fff;
  border-radius: 1rem;
  padding: 0.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  border: 1px solid rgba(226,232,240,0.8);
}
.nav-dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem; }
.nav-dropdown-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; border-radius: 0.75rem;
  transition: all 0.2s;
}
.nav-dropdown-item:hover { background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%); }
.nav-dropdown-logo {
  width: 3rem; height: 3rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.nav-dropdown-logo img, .nav-dropdown-logo svg { width: 2rem; height: 2rem; }
.nav-dropdown-name { font-weight: 600; color: #0f172a; font-size: 0.9rem; transition: color 0.2s; }
.nav-dropdown-item:hover .nav-dropdown-name { color: var(--color-primary); }
.nav-dropdown-desc { font-size: 0.8rem; color: #64748b; margin-top: 0.125rem; }
.nav-dropdown-vps {
  margin-top: 0.5rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 0.5rem;
}
.nav-dropdown-vps a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem; border-radius: 0.75rem;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff; transition: all 0.2s;
}
.nav-dropdown-vps a:hover { opacity: 0.9; }
.nav-dropdown-vps .vps-info { display: flex; align-items: center; gap: 0.75rem; }
.nav-dropdown-vps .vps-title { font-weight: 600; font-size: 0.9rem; }
.nav-dropdown-vps .vps-price { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-top: 0.1rem; }
.nav-dropdown-vps .vps-badge {
  font-size: 0.75rem; font-weight: 500;
  background: rgba(255,255,255,0.2); padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.nav-actions {
  display: none; align-items: center; gap: 0.75rem;
}
@media (min-width: 1024px) { .nav-actions { display: flex; } }

.nav-discord {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1rem; border-radius: var(--radius-md);
  font-size: 0.875rem; font-weight: 600; color: #475569;
  transition: all 0.2s;
}
.nav-discord:hover { color: var(--color-primary); background: var(--color-primary-50); }
.nav-discord svg { width: 1.25rem; height: 1.25rem; }

.btn-client-area {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: var(--radius-md);
  font-size: 0.875rem; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
  transition: all 0.3s;
}
.btn-client-area:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,99,235,0.35); }
.btn-client-area svg { width: 1rem; height: 1rem; }

/* Mobile menu toggle */
.nav-mobile-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--radius-md); color: #475569;
  transition: all 0.2s;
}
.nav-mobile-toggle:hover { background: #f1f5f9; }
.nav-mobile-toggle svg { width: 1.5rem; height: 1.5rem; }
@media (min-width: 1024px) { .nav-mobile-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(226,232,240,0.8);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem 1rem;
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

.mobile-menu-links { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1rem; border-radius: var(--radius-md);
  font-size: 1rem; font-weight: 600; color: #0f172a;
  transition: all 0.2s;
}
.mobile-menu-link:hover { background: var(--color-primary-50); color: var(--color-primary); }

.mobile-sub-links {
  margin-left: 1rem; margin-top: 0.25rem;
  padding-left: 1rem;
  border-left: 2px solid #f1f5f9;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.mobile-sub-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.625rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.875rem; color: #475569; transition: all 0.2s;
}
.mobile-sub-link:hover { background: var(--color-primary-50); color: var(--color-primary); }
.mobile-sub-logo {
  width: 2rem; height: 2rem; border-radius: 0.5rem;
  background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mobile-sub-logo svg { width: 1.25rem; height: 1.25rem; }

.mobile-menu-actions {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.mobile-btn-discord {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1rem; border-radius: var(--radius-md);
  border: 2px solid #e2e8f0; font-size: 1rem; font-weight: 600;
  color: #475569; transition: all 0.2s;
}
.mobile-btn-discord:hover { border-color: var(--color-primary); color: var(--color-primary); }
.mobile-btn-discord svg { width: 1.25rem; height: 1.25rem; }
.mobile-btn-client {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1rem; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  font-size: 1rem; font-weight: 600; color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.25);
}
.mobile-btn-client svg { width: 1.25rem; height: 1.25rem; }

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative; overflow: hidden;
  padding: 4rem 0 6rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
}
.hero-gradient-1 {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59,130,246,0.15), transparent);
}
.hero-gradient-2 {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 100% 0%, rgba(124,58,237,0.1), transparent);
}
.hero-dots {
  position: absolute; inset: 0; opacity: 0.4;
  background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-blob-1 {
  position: absolute; right: -10rem; top: 5rem;
  width: 500px; height: 500px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(96,165,250,0.2), rgba(167,139,250,0.2));
  filter: blur(100px); pointer-events: none;
}
.hero-blob-2 {
  position: absolute; left: -10rem; top: 15rem;
  width: 400px; height: 400px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(34,211,238,0.15), rgba(96,165,250,0.15));
  filter: blur(100px); pointer-events: none;
}

.hero-content { max-width: 56rem; margin: 0 auto; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
  border: 1px solid rgba(147,197,253,0.5);
  padding: 0.5rem 1.25rem; border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 600; color: #1d4ed8;
  box-shadow: 0 4px 14px rgba(37,99,235,0.1);
  opacity: 0; animation: fade-in-up 0.7s forwards;
}
.hero-badge .status-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: #10b981;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  margin-top: 2rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.1; color: #0f172a;
  opacity: 0; animation: fade-in-up 0.7s 100ms forwards;
}
.hero-title .gradient-line {
  display: block; margin-top: 0.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #c026d3 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  margin: 2rem auto 0; max-width: 36rem;
  font-size: 1.25rem; line-height: 1.7; color: #475569;
  opacity: 0; animation: fade-in-up 0.7s 200ms forwards;
}
.hero-subtitle strong { font-weight: 700; color: #0f172a; }

.hero-ctas {
  margin-top: 3rem;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 1rem;
  opacity: 0; animation: fade-in-up 0.7s 300ms forwards;
}

.hero-trust {
  margin-top: 4rem;
  opacity: 0; animation: fade-in-up 0.7s 400ms forwards;
}
.hero-trust p { font-size: 0.875rem; font-weight: 500; color: #94a3b8; margin-bottom: 1rem; }
.hero-trust-names {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 2rem;
}
.hero-trust-names span {
  font-size: 1.125rem; font-weight: 800;
  color: #cbd5e1; transition: color 0.2s;
}
.hero-trust-names span:hover { color: #94a3b8; }

/* Stats */
.hero-stats {
  margin: 5rem auto 0; max-width: 56rem;
  opacity: 0; animation: fade-in-up 0.7s 500ms forwards;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.stat-card {
  background: #fff; border-radius: 1rem;
  padding: 1.5rem; text-align: center;
  border: 1px solid rgba(226,232,240,0.6);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: all 0.2s;
}
.stat-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); border-color: #cbd5e1; }
.stat-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
  color: #fff; box-shadow: 0 4px 10px rgba(59,130,246,0.25);
}
.stat-icon svg { width: 1.25rem; height: 1.25rem; }
.stat-value {
  font-size: 1.875rem; font-weight: 900; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a, #475569);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.875rem; font-weight: 500; color: #64748b; margin-top: 0.25rem; }

/* ============================================
   QUICK FEATURES BAR
   ============================================ */

.features-bar {
  border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #f8fafc 0%, #fff 50%, #f8fafc 100%);
  padding: 1.5rem 0;
}
.features-bar-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 1rem;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 1.5rem 3rem;
}
@media (min-width: 640px) { .features-bar-inner { padding: 0 1.5rem; } }
.feature-bar-item { display: flex; align-items: center; gap: 0.5rem; }
.feature-bar-item svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.feature-bar-item span { font-weight: 600; color: #334155; font-size: 0.9rem; }

/* ============================================
   SECTION HEADER
   ============================================ */

.section-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.section-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem;
}
.badge-violet { background: #ede9fe; color: var(--color-accent-dark); }
.badge-blue { background: var(--color-primary-100); color: var(--color-primary-dark); }
.badge-emerald { background: #d1fae5; color: #047857; }
.badge-amber { background: #fef3c7; color: #92400e; }
.badge-blue-cyan { background: #cffafe; color: #0e7490; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -0.025em;
  color: #0f172a; line-height: 1.2;
}
.section-title .gradient-violet {
  background: linear-gradient(135deg, #7c3aed, #c026d3);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title .gradient-blue {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title .gradient-emerald {
  background: linear-gradient(135deg, #059669, #0d9488);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title .gradient-teal {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  margin-top: 1.5rem; font-size: 1.125rem;
  line-height: 1.7; color: #475569;
}

/* ============================================
   GAME SERVER CARDS
   ============================================ */

.cards-grid-3 {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .cards-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.game-card {
  display: block; background: #fff; border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(226,232,240,0.6);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: all 0.2s;
  position: relative; overflow: hidden;
}
.game-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: #cbd5e1; transform: translateY(-2px);
}
.game-card .color-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.game-card .game-logo {
  width: 4rem; height: 4rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 1rem; background: #f8fafc;
  border: 1px solid rgba(226,232,240,0.6);
}
.game-card .game-logo svg { width: 2.5rem; height: 2.5rem; }
.game-card h2, .game-card h3 {
  margin-top: 1.5rem; font-size: 1.5rem;
  font-weight: 800; color: #0f172a; transition: color 0.2s;
}
.game-card:hover h2, .game-card:hover h3 { color: var(--color-primary); }
.game-card p { margin-top: 0.75rem; color: #475569; line-height: 1.6; font-size: 0.95rem; }
.game-card .card-footer {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
  display: flex; align-items: center; justify-content: space-between;
}
.card-price-label { font-size: 0.875rem; color: #94a3b8; }
.card-price {
  font-size: 1.5rem; font-weight: 800; color: #0f172a;
}
.card-price span { font-size: 1rem; font-weight: 400; color: #94a3b8; }
.card-arrow {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: #f1f5f9; color: #64748b;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.game-card:hover .card-arrow { background: #e2e8f0; color: #334155; }
.card-arrow svg { width: 1.25rem; height: 1.25rem; }

/* VPS dark card */
.game-card.dark-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.game-card.dark-card h3 { color: #fff; }
.game-card.dark-card:hover h3 { color: #93c5fd; }
.game-card.dark-card p { color: #94a3b8; }
.game-card.dark-card .card-price { color: #fff; }
.game-card.dark-card .card-price span { color: #64748b; }
.game-card.dark-card .card-arrow {
  background: rgba(255,255,255,0.1); color: #fff;
}
.game-card.dark-card:hover .card-arrow { background: rgba(255,255,255,0.2); }
.dark-card-dots {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 20px 20px; pointer-events: none;
}
.dark-card-icon {
  width: 4rem; height: 4rem; border-radius: 1rem;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 14px rgba(59,130,246,0.3);
}
.dark-card-icon svg { width: 1.75rem; height: 1.75rem; }
.premium-badge {
  position: absolute; top: 2rem; right: 2rem;
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #78350f; font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(251,191,36,0.3);
}
.premium-badge svg { width: 0.75rem; height: 0.75rem; }

/* ============================================
   FEATURE CARDS (Why Us)
   ============================================ */

.feature-card {
  background: #fff; border-radius: 1.5rem; padding: 2rem;
  border: 1px solid rgba(226,232,240,0.6);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: all 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #cbd5e1;
}
.feature-icon-wrap {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-bottom: 1.5rem;
}
.feature-icon-wrap svg { width: 1.5rem; height: 1.5rem; }
.feature-card h3 { font-size: 1.125rem; font-weight: 700; color: #0f172a; margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.9rem; color: #475569; line-height: 1.6; }

/* Gradients for feature icons */
.bg-gradient-blue-cyan { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.bg-gradient-violet { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.bg-gradient-emerald-teal { background: linear-gradient(135deg, #10b981, #0d9488); }
.bg-gradient-orange { background: linear-gradient(135deg, #f97316, #f59e0b); }
.bg-gradient-pink { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.bg-gradient-indigo { background: linear-gradient(135deg, #6366f1, #3b82f6); }
.bg-gradient-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.bg-gradient-slate { background: linear-gradient(135deg, #1e293b, #0f172a); }

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-grid {
  display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }

.benefit-item {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem;
}
.benefit-icon-wrap {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0; border-radius: 0.75rem;
  background: linear-gradient(135deg, #10b981, #0d9488);
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 10px rgba(16,185,129,0.25);
}
.benefit-icon-wrap svg { width: 1.25rem; height: 1.25rem; }
.benefit-title { font-weight: 700; color: #0f172a; }
.benefit-desc { color: #475569; font-size: 0.9rem; margin-top: 0.125rem; }

/* Terminal mock */
.terminal-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  border-radius: 1.5rem; padding: 2rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  position: relative; overflow: hidden;
}
.terminal-card .grid-bg {
  position: absolute; inset: 0; opacity: 0.15;
  background-image: linear-gradient(rgba(59,130,246,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.terminal-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.terminal-dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; }
.terminal-dot.red { background: #ef4444; }
.terminal-dot.amber { background: #f59e0b; }
.terminal-dot.green { background: #10b981; }
.terminal-label { margin-left: 0.5rem; font-family: var(--font-mono); font-size: 0.875rem; color: #64748b; }
.terminal-body { font-family: var(--font-mono); font-size: 0.875rem; }
.terminal-line { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.t-prompt { color: #10b981; }
.t-cmd { color: #e2e8f0; }
.t-info { color: #3b82f6; }
.t-text { color: #64748b; }
.t-success { color: #10b981; }
.terminal-status {
  background: rgba(30,41,59,0.5); border-radius: 0.5rem;
  padding: 1rem; margin-top: 1rem;
}
.terminal-status-row {
  display: flex; justify-content: space-between;
  margin-bottom: 0.5rem; font-size: 0.875rem;
}
.terminal-status-row:last-child { margin-bottom: 0; }
.t-key { color: #94a3b8; }
.t-val { color: #e2e8f0; }
.t-val-green { color: #10b981; font-weight: 600; }

/* Floating badges */
.float-badge {
  position: absolute;
  background: #fff; border-radius: 1rem;
  padding: 1rem; box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border: 1px solid #f1f5f9; pointer-events: none;
}
.float-badge-right { right: -1rem; top: 2rem; animation: float 4s ease-in-out infinite; }
.float-badge-left { left: -1rem; bottom: 5rem; animation: float-slow 6s ease-in-out infinite; }
.float-badge-inner { display: flex; align-items: center; gap: 0.75rem; }
.float-badge-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-badge-icon svg { width: 1.25rem; height: 1.25rem; }
.float-badge-title { font-size: 0.875rem; font-weight: 700; color: #0f172a; }
.float-badge-desc { font-size: 0.75rem; color: #64748b; }

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  position: relative; overflow: hidden; border-radius: 2.5rem;
  padding: 5rem 2rem; text-align: center;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #c026d3 100%);
  box-shadow: 0 20px 40px rgba(37,99,235,0.2);
}
@media (min-width: 640px) { .cta-banner { padding: 5rem 4rem; } }
.cta-banner .dot-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.cta-banner-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}
.cta-banner-violet {
  background: linear-gradient(135deg, #7c3aed 0%, #c026d3 50%, #db2777 100%);
}
.cta-sub-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
  padding: 0.5rem 1.25rem; border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 600; color: #fff; margin-bottom: 2rem;
}
.cta-sub-badge svg { width: 1rem; height: 1rem; }
.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 900;
  color: #fff; letter-spacing: -0.025em;
}
.cta-banner p { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(255,255,255,0.8); max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-buttons {
  margin-top: 3rem; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 1rem; border-radius: var(--radius-2xl);
  padding: 1rem 2rem; transition: all 0.2s; cursor: pointer;
  border: none; font-family: var(--font-sans);
}
.btn svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-sm svg { width: 1rem; height: 1rem; }

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,99,235,0.35); }

.btn-secondary {
  background: #fff; color: #334155;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.btn-secondary:hover { border-color: #cbd5e1; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.btn-white {
  background: #fff; color: #1e293b; font-weight: 600;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-white:hover { background: #f8fafc; }

.btn-white-violet {
  background: #fff; color: #6d28d9;
}
.btn-white-violet:hover { background: #f5f3ff; }

.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.btn-order {
  display: flex; width: 100%; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem; border-radius: 1rem; font-weight: 600; font-size: 1rem;
  transition: all 0.2s; cursor: pointer; border: none; font-family: var(--font-sans);
}
.btn-order-popular {
  background: #fff; color: #1e293b;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btn-order-popular:hover { background: #eff6ff; box-shadow: 0 12px 28px rgba(0,0,0,0.2); }
.btn-order-default {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff; box-shadow: 0 4px 14px rgba(37,99,235,0.25);
}
.btn-order-default:hover { box-shadow: 0 8px 20px rgba(37,99,235,0.35); transform: translateY(-1px); }
.btn-order svg { width: 1.25rem; height: 1.25rem; }

/* ============================================
   PRICING CARDS
   ============================================ */

.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  position: relative; border-radius: 1.5rem; padding: 2rem;
  display: flex; flex-direction: column;
  transition: all 0.2s;
}
.pricing-card-default {
  background: #fff; border: 1px solid rgba(226,232,240,0.6);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.pricing-card-default:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: #cbd5e1; }
.pricing-card-popular {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #c026d3 100%);
  box-shadow: 0 8px 30px rgba(37,99,235,0.25);
}

.popular-badge {
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #78350f; font-size: 0.875rem; font-weight: 700;
  padding: 0.375rem 1rem; border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(251,191,36,0.35); white-space: nowrap;
}
.popular-badge svg { width: 1rem; height: 1rem; }

.pricing-card-popular .dot-bg {
  position: absolute; inset: 0; border-radius: 1.5rem; overflow: hidden;
  pointer-events: none;
}
.pricing-card-popular .dot-bg::after {
  content: ''; position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 20px 20px;
}

.pricing-name { font-size: 1.25rem; font-weight: 700; }
.pricing-name-default { color: #0f172a; }
.pricing-name-popular { color: #fff; }

.pricing-desc { font-size: 0.875rem; margin-top: 0.5rem; }
.pricing-desc-default { color: #64748b; }
.pricing-desc-popular { color: rgba(219,234,254,0.9); }

.pricing-price { margin: 1.5rem 0 2rem; display: flex; align-items: baseline; }
.pricing-amount { font-size: 3rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.pricing-amount-default { color: #0f172a; }
.pricing-amount-popular { color: #fff; }
.pricing-period { font-size: 1.125rem; margin-left: 0.5rem; }
.pricing-period-default { color: #64748b; }
.pricing-period-popular { color: rgba(191,219,254,0.9); }

.pricing-features { flex: 1; margin-bottom: 2rem; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 1rem;
}
.pricing-feature:last-child { margin-bottom: 0; }
.feature-check {
  width: 1.5rem; height: 1.5rem; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.feature-check-default { background: var(--color-primary-100); color: var(--color-primary); }
.feature-check-popular { background: rgba(255,255,255,0.2); color: #fff; }
.feature-check svg { width: 0.875rem; height: 0.875rem; }
.feature-text { font-size: 0.875rem; }
.feature-text-default { color: #475569; }
.feature-text-popular { color: rgba(239,246,255,0.9); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  position: relative; overflow: hidden;
  padding: 4rem 0 3rem;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: -1;
}
.page-hero-bg .dots,
.page-hero-bg .dot-bg {
  position: absolute; inset: 0; opacity: 0.4;
  background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero-bg .gradient-top {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124,58,237,0.12), transparent);
}
.page-hero-bg .blob {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
}

.page-hero-content { text-align: center; position: relative; z-index: 1; }
.page-hero-content:has(.game-hero-row) { text-align: left; }
.page-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem;
}
.page-badge svg { width: 1rem; height: 1rem; }
.page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.15; color: #0f172a;
}
.page-title .block-gradient {
  display: block; margin-top: 0.25rem;
}
.gradient-violet-fuchsia {
  background: linear-gradient(135deg, #7c3aed, #c026d3);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-blue-violet {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-blue-cyan {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-emerald {
  background: linear-gradient(135deg, #059669, #0d9488);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-subtitle {
  margin: 1.5rem auto 0; max-width: 36rem;
  font-size: 1.125rem; color: #475569; line-height: 1.7;
}

/* Highlights chips */
.highlights-row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 1.5rem; margin-top: 2rem;
}
.highlight-item { display: flex; align-items: center; gap: 0.5rem; color: #334155; }
.highlight-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #ede9fe, #fdf4ff);
  color: #7c3aed; flex-shrink: 0;
}
.highlight-icon svg { width: 1.25rem; height: 1.25rem; }
.highlight-item span { font-weight: 600; font-size: 0.9rem; }

/* Benefit chips */
.chips-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: #ecfdf5; color: #047857;
  padding: 0.375rem 0.875rem; border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 500;
}
.chip svg { width: 1rem; height: 1rem; }

/* Back button */
.back-link {
  display: flex; width: fit-content; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: #64748b;
  margin-bottom: 2rem; transition: all 0.2s;
}
.back-link:hover { color: var(--color-primary); }
.back-link svg { width: 1rem; height: 1rem; transition: transform 0.2s; }
.back-link:hover svg { transform: translateX(-3px); }

/* Page hero game */
.game-hero-row {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2rem;
}
@media (min-width: 1024px) {
  .game-hero-row { flex-direction: row; align-items: flex-start; }
}
.game-hero-logo {
  width: 6rem; height: 6rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border: 1px solid #f1f5f9;
}
.game-hero-logo svg { width: 3.5rem; height: 3.5rem; }
.game-hero-info { flex: 1; text-align: left; }
.game-hero-info .page-subtitle { margin: 1rem 0 0; max-width: 42rem; }
.game-chips { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.game-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #ecfdf5; color: #047857;
  padding: 0.5rem 1rem; border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 500;
}
.game-chip svg { width: 1rem; height: 1rem; }

/* ============================================
   INCLUDED FEATURES BOX
   ============================================ */

.included-box {
  margin-top: 4rem; background: #fff; border-radius: 1rem;
  padding: 2rem; box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 1px solid #f1f5f9;
}
.included-box h3 {
  font-size: 1.25rem; font-weight: 700; color: #0f172a;
  text-align: center; margin-bottom: 1.5rem;
}
.included-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 640px) { .included-grid { grid-template-columns: repeat(4, 1fr); } }
.included-item { display: flex; align-items: center; gap: 0.5rem; }
.included-check {
  width: 1.5rem; height: 1.5rem; border-radius: 50%; flex-shrink: 0;
  background: #ecfdf5; color: #059669;
  display: flex; align-items: center; justify-content: center;
}
.included-check svg { width: 0.875rem; height: 0.875rem; }
.included-item span { font-size: 0.875rem; color: #475569; }

/* ============================================
   CONTACT METHODS
   ============================================ */

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-card {
  display: block; background: #fff; border-radius: 1.5rem;
  padding: 2rem; border: 1px solid #f1f5f9;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  border-color: transparent;
}
.contact-card h3 { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin-top: 1.5rem; }
.contact-card p { color: #475569; line-height: 1.6; margin-top: 0.75rem; font-size: 0.9rem; }
.contact-action {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 600; color: var(--color-primary);
  margin-top: 1rem; transition: all 0.2s;
}
.contact-action svg { width: 1rem; height: 1rem; transition: transform 0.2s; }
.contact-card:hover .contact-action svg { transform: translateX(4px); }

/* Contact form */
.form-card {
  background: #fff; border-radius: 1.5rem; padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
}
@media (min-width: 640px) { .form-card { padding: 3rem; } }
.form-card-header { text-align: center; margin-bottom: 2rem; }
.form-card-header h2 { font-size: 1.5rem; font-weight: 700; color: #0f172a; }
.form-card-header p { color: #475569; margin-top: 0.5rem; }

.form-grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: 0.875rem; font-weight: 600; color: #334155; }
.form-input {
  background: #f8fafc; border: 2px solid #e2e8f0;
  border-radius: 0.75rem; padding: 0.875rem 1rem;
  color: #0f172a; transition: all 0.2s; width: 100%;
}
.form-input:focus {
  outline: none; border-color: var(--color-primary);
  background: #fff; box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}
.form-input::placeholder { color: #94a3b8; }

/* ============================================
   VALUE CARDS (À propos)
   ============================================ */

.cards-grid-4 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .cards-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: #fff; border-radius: 1.5rem; padding: 2rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
.value-card h3 { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin-top: 1.5rem; }
.value-card p { color: #475569; line-height: 1.6; margin-top: 0.75rem; font-size: 0.9rem; }

.story-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.story-stat-card {
  background: #fff; border-radius: 1rem; padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 1px solid #f1f5f9; transition: all 0.3s;
}
.story-stat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.story-stat-value { font-size: 1.875rem; font-weight: 900; margin-top: 1rem; }
.story-stat-label { font-size: 0.875rem; font-weight: 500; color: #64748b; margin-top: 0.25rem; }

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-top: 1px solid #e2e8f0;
  position: relative; overflow: hidden;
}
footer .footer-blob {
  position: absolute; right: -10rem; top: -10rem;
  width: 20rem; height: 20rem; border-radius: 50%;
  background: linear-gradient(135deg, rgba(219,234,254,0.5), rgba(237,233,254,0.5));
  filter: blur(100px); pointer-events: none;
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 4rem 1rem 5rem;
}
@media (min-width: 640px) { .footer-inner { padding: 4rem 1.5rem 5rem; } }
@media (min-width: 1024px) { .footer-inner { padding: 5rem 2rem; } }

.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr repeat(4, 1fr); } }
@media (min-width: 1024px) { .footer-grid { gap: 3rem; } }

.footer-brand { grid-column: span 2; }
@media (min-width: 768px) { .footer-brand { grid-column: span 1; } }

.footer-logo { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo img { width: 44px; height: 44px; border-radius: 10px; }
.footer-logo-text { font-size: 1.5rem; font-weight: 800; color: #0f172a; }
.footer-desc { margin-top: 1rem; max-width: 18rem; color: #475569; line-height: 1.7; font-size: 0.9rem; }

.footer-contact { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: #475569; transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--color-primary); }
.footer-contact-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 0.5rem;
  background: #f1f5f9; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer-contact-icon svg { width: 1rem; height: 1rem; }

.footer-socials { margin-top: 1.5rem; display: flex; gap: 0.75rem; }
.footer-social {
  width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
  background: #f1f5f9; color: #475569;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.footer-social:hover { background: var(--color-primary); color: #fff; box-shadow: 0 4px 12px rgba(37,99,235,0.3); }
.footer-social svg { width: 1.25rem; height: 1.25rem; }

.footer-section h3 {
  font-size: 0.75rem; font-weight: 700; color: #0f172a;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem;
}
.footer-section ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-section a {
  font-size: 0.875rem; color: #475569; transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 0.25rem;
}
.footer-section a:hover { color: var(--color-primary); }
.footer-section a svg { width: 0.75rem; height: 0.75rem; opacity: 0; transition: opacity 0.2s; }
.footer-section a:hover svg { opacity: 1; }

.footer-bottom {
  margin-top: 4rem; padding-top: 2rem; border-top: 1px solid #e2e8f0;
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: 0.875rem; color: #64748b; }
.footer-heart { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; color: #64748b; }
.footer-heart svg { width: 1rem; height: 1rem; color: #ef4444; fill: #ef4444; }

/* ============================================
   VPS FEATURES
   ============================================ */

.vps-features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .vps-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vps-features-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================
   MISC UTILITIES
   ============================================ */

.text-center { text-align: center; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.bg-slate-50 { background: #f8fafc; }
.bg-white { background: #fff; }
.bg-slate-to-white { background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); }

.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pb-24 { padding-bottom: 6rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }

.max-w-xl { max-width: 36rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }

.text-slate-500 { color: #64748b; }
.text-blue-600 { color: var(--color-primary); }
.text-blue-700 { color: var(--color-primary-dark); }
.text-center-note { text-align: center; color: #64748b; margin-top: 2rem; font-size: 0.9rem; }
.text-center-note a { font-weight: 600; color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.text-center-note a:hover { color: var(--color-primary-dark); }

.location-note {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; color: #64748b; font-size: 0.875rem; margin-top: 2rem;
}
.location-note svg { width: 1rem; height: 1rem; }

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */

@media (max-width: 639px) {
  .hero { padding: 3rem 0 4rem; }
  .cta-banner { border-radius: 1.5rem; }
  .float-badge-right, .float-badge-left { display: none; }
}
