/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080c14;
  --bg-2:      #0d1420;
  --bg-3:      #111a2b;
  --surface:   #0f1928;
  --surface-2: #162135;
  --border:    rgba(100, 180, 255, 0.1);
  --border-2:  rgba(100, 180, 255, 0.2);

  --frost:     #7dd3fc;
  --frost-2:   #38bdf8;
  --frost-3:   #0ea5e9;
  --frost-glow: rgba(56, 189, 248, 0.15);
  --frost-glow-strong: rgba(56, 189, 248, 0.35);

  --text:      #e2eaf4;
  --text-2:    #94a3b8;
  --text-3:    #64748b;

  --green:     #34d399;
  --red:       #f87171;
  --yellow:    #fbbf24;

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font:      'Inter', system-ui, sans-serif;
  --mono:      'JetBrains Mono', 'Courier New', monospace;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--frost-3); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }

.accent { color: var(--frost-2); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--frost-2);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--frost-2);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
}

.section-desc {
  color: var(--text-2);
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 56px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--frost-3), var(--frost-2));
  color: #fff;
  box-shadow: 0 4px 24px rgba(14, 165, 233, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.5);
  background: linear-gradient(135deg, var(--frost-2), #67e8f9);
}

.btn-ghost {
  background: transparent;
  color: var(--frost);
  border: 1.5px solid var(--border-2);
}
.btn-ghost:hover {
  background: var(--frost-glow);
  border-color: var(--frost-2);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.nav-logo:hover { opacity: 0.85; }

.logo-img {
  height: 36px !important;
  width: auto !important;
  max-height: 36px !important;
  display: block;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.35));
}

.footer-logo-img {
  height: 48px !important;
  max-height: 48px !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--frost-2);
  transition: var(--transition);
  border-radius: 1px;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#networkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid var(--border-2);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--frost);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.pulse-dot.green { background: var(--green); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
}

.hero-title {
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.frost-text {
  background: linear-gradient(135deg, #bae6fd, var(--frost-2), #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(56, 189, 248, 0.3));
}

.hero-subtitle-word {
  color: var(--text);
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 32px;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  font-family: var(--mono);
  line-height: 1;
}

.stat-unit {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--frost-2);
  font-family: var(--mono);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  opacity: 0.5;
}

.hero-scroll span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-3);
  border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg);
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

/* ===== ABOUT ===== */
.about-section { background: var(--bg-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag {
  background: var(--frost-glow);
  border: 1px solid var(--border-2);
  color: var(--frost);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--mono);
}

/* Terminal Card */
.terminal-card {
  background: #0a0f1a;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(56,189,248,0.05);
}

.terminal-header {
  background: var(--surface);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green  { background: #28c840; }

.terminal-title {
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-3);
}

.terminal-body {
  padding: 20px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
  min-height: 280px;
  color: var(--green);
}

.terminal-body .t-comment { color: var(--text-3); }
.terminal-body .t-cmd     { color: var(--frost); }
.terminal-body .t-peer    { color: var(--frost-2); font-weight: 700; }
.terminal-body .t-up      { color: var(--green); }
.terminal-body .t-down    { color: var(--red); }
.terminal-body .t-dim     { color: var(--text-3); }
.terminal-body .t-cursor  {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--frost-2);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ===== NETWORK ===== */
.network-section { background: var(--bg); }

.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.network-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.network-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--frost-3), transparent);
  opacity: 0;
  transition: var(--transition);
}

.network-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px var(--frost-glow);
}

.network-card:hover::before { opacity: 1; }

.network-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.network-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.network-card p {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.network-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
}

.detail-label { color: var(--text-3); font-family: var(--mono); }
.detail-value { color: var(--frost); font-family: var(--mono); font-weight: 600; }

/* ===== GAME SERVERS ===== */
.servers-section {
  background: var(--bg-2);
}

.servers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.server-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.server-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(56,189,248,0.04) 0%, transparent 100%);
  pointer-events: none;
}

.server-card.featured {
  border-color: rgba(56, 189, 248, 0.25);
}

.server-card.featured:hover {
  border-color: var(--frost-3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(14, 165, 233, 0.15);
}

.server-card.coming-soon {
  opacity: 0.75;
}

.server-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  font-family: var(--mono);
}

.server-badge.soon {
  background: var(--yellow);
  color: #000;
}

.server-game-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  font-family: var(--mono);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.server-game-icon.csgo {
  background: linear-gradient(135deg, #1a2a4a, #2a4a8a);
  color: #7dd3fc;
  border: 1px solid rgba(125,211,252,0.3);
  box-shadow: 0 0 20px rgba(56,189,248,0.2);
}

.server-game-icon.cs2 {
  background: linear-gradient(135deg, #2a1a1a, #5a2020);
  color: #f87171;
  border: 1px solid rgba(248,113,113,0.3);
  box-shadow: 0 0 20px rgba(248,113,113,0.15);
}

.server-game-icon.tbd {
  background: var(--surface-2);
  color: var(--text-3);
  border: 1px solid var(--border);
  font-size: 2rem;
}

.server-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.server-tagline {
  font-size: 13px;
  color: var(--frost);
  font-family: var(--mono);
  margin-bottom: 16px;
}

.server-desc {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.server-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
}

.spec-icon { font-size: 16px; flex-shrink: 0; }

.server-btn { width: 100%; justify-content: center; }

/* ===== SERVICES ===== */
.services-section { background: var(--bg); }

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  transition: var(--transition);
  cursor: pointer;
}

.service-item:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
  transform: translateX(8px);
}

.service-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--frost-3);
  min-width: 28px;
  letter-spacing: 0.1em;
}

.service-content { flex-grow: 1; }
.service-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.service-content p {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-arrow {
  color: var(--frost-3);
  font-size: 1.2rem;
  transition: var(--transition);
}

.service-item:hover .service-arrow { transform: translateX(6px); }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: var(--transition);
}

.contact-card:not(.no-link):hover {
  border-color: var(--border-2);
  background: var(--surface-2);
  transform: translateX(4px);
}

.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-info { display: flex; flex-direction: column; gap: 2px; }
.contact-label { font-size: 11px; color: var(--text-3); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-value { font-size: 14px; font-weight: 500; color: var(--text); }

/* Contact Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  width: 100%;
  resize: vertical;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--frost-3);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group select option { background: var(--bg-2); }

.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--green);
  min-height: 20px;
  font-family: var(--mono);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 280px;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green);
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  margin-top: 20px;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 16px;
  font-family: var(--mono);
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--frost); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-mono { font-family: var(--mono); font-size: 11px; }

/* ===== ANIMATIONS ===== */
@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(56,189,248,0.4)); }
  50% { filter: drop-shadow(0 0 18px rgba(56,189,248,0.8)); }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .network-grid { grid-template-columns: repeat(2, 1fr); }
  .servers-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(8,12,20,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero-stats {
    gap: 0;
    flex-direction: column;
    padding: 20px;
  }
  .stat-divider { width: 80%; height: 1px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .network-grid { grid-template-columns: 1fr; }
  .servers-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .service-item { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px; }
  .service-arrow { display: none; }

  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats .stat { padding: 12px 20px; }
  .contact-form { padding: 24px 20px; }
}
