:root {
  --grass: #5D9E32;
  --grass-light: #7BC44A;
  --dirt: #8B6319;
  --dirt-dark: #5C3D0E;
  --stone: #7A7A7A;
  --stone-dark: #4A4A4A;
  --stone-darker: #2C2C2C;
  --cobble: #1C1C1C;
  --gold: #FFD700;
  --diamond: #4AEEFF;
  --emerald: #17DD62;
  --lava: #FF6A00;
  --wood: #9C6926;
  --wood-dark: #6B4513;
  --sky: #1A3A5C;
  --sky-light: #2E5F8A;
  --torch: #FFA040;
  --torch-glow: rgba(255,160,64,0.25);
  --bg: #0E1A0E;
  --surface: #141F14;
  --surface2: #1A2B1A;
  --surface3: #1F351F;
  --text: #E8DCC8;
  --muted: #9A8E7A;
  --border: rgba(255,255,255,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* PIXEL TEXTURE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(0,0,0,0.15) 31px, rgba(0,0,0,0.15) 32px),
    repeating-linear-gradient(90deg, transparent, transparent 31px, rgba(0,0,0,0.08) 31px, rgba(0,0,0,0.08) 32px);
  pointer-events: none;
  z-index: 0;
}

/* Stars background */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 8%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 20%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 5%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 18%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 10%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 40%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 35%, rgba(255,255,255,0.4) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ─── PIXEL FONT ─── */
.pixel { font-family: 'Press Start 2P', monospace; }

/* ─── MINECRAFT BLOCK ─── */
.mc-block {
  image-rendering: pixelated;
  position: relative;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,18,10,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--grass);
  box-shadow: 0 3px 0 var(--dirt-dark), 0 0 40px rgba(93,158,50,0.15);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.8);
}

.logo span { color: var(--emerald); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
}
.nav-links a:hover { color: var(--emerald); }

.nav-cta {
  background: var(--emerald) !important;
  color: #0a140a !important;
  padding: 10px 18px !important;
  font-size: 7px !important;
  border: 2px solid rgba(255,255,255,0.2) !important;
  box-shadow: 0 4px 0 #0E6B35, inset 0 1px 0 rgba(255,255,255,0.3) !important;
  transition: transform 0.1s, box-shadow 0.1s !important;
}
.nav-cta:hover {
  transform: translateY(2px) !important;
  box-shadow: 0 2px 0 #0E6B35, inset 0 1px 0 rgba(255,255,255,0.3) !important;
}

/* ─── MC BUTTON ─── */
.mc-btn {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  text-decoration: none;
  display: inline-block;
  padding: 14px 24px;
  text-align: center;
  transition: transform 0.1s, box-shadow 0.1s;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
}
.mc-btn:active { transform: translateY(3px); }

.mc-btn-green {
  background: #5DA832;
  color: #fff;
  border-top: 3px solid #8EC85A;
  border-left: 3px solid #8EC85A;
  border-right: 3px solid #2A5A10;
  border-bottom: 3px solid #2A5A10;
  box-shadow: 0 4px 0 #1A3A08;
}
.mc-btn-green:hover { background: #6DBE3A; }

.mc-btn-grey {
  background: #5A5A5A;
  color: #fff;
  border-top: 3px solid #8A8A8A;
  border-left: 3px solid #8A8A8A;
  border-right: 3px solid #2A2A2A;
  border-bottom: 3px solid #2A2A2A;
  box-shadow: 0 4px 0 #111;
}
.mc-btn-grey:hover { background: #6A6A6A; }

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/mc-bg.webp');
  background-size: cover;
  background-position: center 30%;
  z-index: -2;
}
#home::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,15,5,0.45) 0%,
    rgba(5,15,5,0.55) 50%,
    rgba(5,10,5,0.85) 100%
  );
  z-index: -1;
}

/* Ground strip */
.hero-ground {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  z-index: 1;
  display: flex;
}
.ground-block {
  flex: 1;
  height: 64px;
  position: relative;
}
.ground-grass {
  height: 16px;
  background: var(--grass);
  border-bottom: 3px solid var(--dirt);
}
.ground-dirt {
  flex: 1;
  background: var(--dirt);
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 15px, rgba(0,0,0,0.12) 15px, rgba(0,0,0,0.12) 16px),
    repeating-linear-gradient(0deg, transparent 0, transparent 15px, rgba(0,0,0,0.08) 15px, rgba(0,0,0,0.08) 16px);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: var(--emerald);
  background: rgba(23,221,98,0.1);
  border: 1px solid rgba(23,221,98,0.25);
  padding: 8px 20px;
  margin-bottom: 28px;
  text-shadow: 0 0 10px rgba(23,221,98,0.5);
  letter-spacing: 0.08em;
}

h1 {
  font-family: 'Press Start 2P', monospace;
  font-size: 32px;
  line-height: 1.9;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.9), 0 0 40px rgba(23,221,98,0.2);
  letter-spacing: 0.01em;
}
h1 .emerald { color: var(--emerald); }
h1 .gold { color: var(--gold); }

.hero-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.75;
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* XP Bar */
.xp-bar-wrap {
  max-width: 480px;
  margin: 0 auto 60px;
}
.xp-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: var(--gold);
  margin-bottom: 6px;
  text-align: left;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
}
.xp-track {
  height: 16px;
  background: #1A1A1A;
  border: 2px solid #444;
  overflow: hidden;
  position: relative;
}
.xp-fill {
  height: 100%;
  background: linear-gradient(to right, #7FC525, #A8E040);
  width: 78%;
  animation: xpGrow 2s ease-out both;
  position: relative;
}
.xp-fill::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0;
  height: 4px;
  background: rgba(255,255,255,0.3);
}
@keyframes xpGrow { from { width: 0%; } }
.xp-num {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: var(--muted);
  text-align: right;
  margin-top: 4px;
}

/* Stat blocks */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-block {
  background: var(--surface);
  border: 2px solid var(--stone-dark);
  border-top: 2px solid #555;
  border-left: 2px solid #555;
  padding: 20px 28px;
  text-align: center;
  min-width: 140px;
  position: relative;
  box-shadow: 3px 3px 0 #000;
}
.stat-block::before {
  content: '';
  position: absolute;
  inset: 2px;
  background: repeating-linear-gradient(
    45deg,
    transparent 0, transparent 4px,
    rgba(255,255,255,0.01) 4px, rgba(255,255,255,0.01) 5px
  );
}
.stat-num {
  font-family: 'Press Start 2P', monospace;
  font-size: 20px;
  color: var(--gold);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.8), 0 0 20px rgba(255,215,0,0.3);
  margin-bottom: 8px;
  line-height: 1.3;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── SECTION BASE ─── */
section { position: relative; z-index: 1; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 5%;
}

/* Grass + dirt section divider */
.mc-divider {
  height: 48px;
  display: flex;
  position: relative;
  z-index: 1;
}
.mc-divider-block { flex: 1; }
.mc-divider-block .top { height: 16px; background: var(--grass); }
.mc-divider-block .bot { height: 32px; background: var(--dirt); }
.mc-divider.flip .mc-divider-block .top { background: var(--stone-dark); }
.mc-divider.flip .mc-divider-block .bot { background: var(--cobble); }

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: var(--emerald);
  background: rgba(23,221,98,0.08);
  border: 1px solid rgba(23,221,98,0.2);
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(23,221,98,0.4);
}
h2 {
  font-family: 'Press Start 2P', monospace;
  font-size: 22px;
  line-height: 1.8;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.8);
  margin-bottom: 16px;
}
h2 .em { color: var(--emerald); }
h2 .gd { color: var(--gold); }
.section-sub {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── SERVICES ─── */
#services {
  background: #111A0F;
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 63px, rgba(0,0,0,0.2) 63px, rgba(0,0,0,0.2) 64px),
    repeating-linear-gradient(0deg, transparent 0, transparent 63px, rgba(0,0,0,0.15) 63px, rgba(0,0,0,0.15) 64px);
}

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

.service-card {
  background: var(--surface2);
  border: 2px solid var(--stone-dark);
  border-top: 2px solid #444;
  border-left: 2px solid #444;
  padding: 32px 24px;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0, transparent 3px,
    rgba(255,255,255,0.01) 3px, rgba(255,255,255,0.01) 4px
  );
  pointer-events: none;
}

/* Block icon */
.block-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  image-rendering: pixelated;
  box-shadow: 3px 3px 0 #000;
  flex-shrink: 0;
}

.service-card h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  margin-bottom: 12px;
  line-height: 1.6;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
}
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 600; }

/* ─── PORTFOLIO ─── */
#portfolio { background: #0C1A0C; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-card {
  background: var(--surface);
  border: 2px solid var(--stone-dark);
  border-top: 2px solid #444;
  border-left: 2px solid #444;
  overflow: hidden;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.15s, box-shadow 0.15s;
}
.portfolio-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}
.portfolio-thumb {
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.portfolio-thumb-inner {
  position: absolute;
  inset: 0;
  background-size: 64px 64px;
  opacity: 0.7;
}
.thumb-dirt { background-color: #6B4513; background-image: repeating-linear-gradient(90deg, transparent 0, transparent 15px, rgba(0,0,0,0.2) 15px, rgba(0,0,0,0.2) 16px), repeating-linear-gradient(0deg, transparent 0, transparent 15px, rgba(0,0,0,0.15) 15px, rgba(0,0,0,0.15) 16px); }
.thumb-stone { background-color: #3A3A3A; background-image: repeating-linear-gradient(90deg, transparent 0, transparent 15px, rgba(255,255,255,0.05) 15px, rgba(255,255,255,0.05) 16px), repeating-linear-gradient(0deg, transparent 0, transparent 15px, rgba(255,255,255,0.03) 15px, rgba(255,255,255,0.03) 16px); }
.thumb-grass { background-color: #2A4A1A; background-image: repeating-linear-gradient(90deg, transparent 0, transparent 7px, rgba(0,0,0,0.1) 7px, rgba(0,0,0,0.1) 8px), repeating-linear-gradient(0deg, transparent 0, transparent 7px, rgba(0,0,0,0.05) 7px, rgba(0,0,0,0.05) 8px); }
.thumb-nether { background-color: #3A1010; background-image: repeating-linear-gradient(90deg, transparent 0, transparent 15px, rgba(255,50,0,0.1) 15px, rgba(255,50,0,0.1) 16px), repeating-linear-gradient(0deg, transparent 0, transparent 15px, rgba(255,50,0,0.05) 15px, rgba(255,50,0,0.05) 16px); }
.thumb-ocean { background-color: #0A1F3A; background-image: repeating-linear-gradient(90deg, transparent 0, transparent 15px, rgba(70,150,255,0.1) 15px, rgba(70,150,255,0.1) 16px), repeating-linear-gradient(0deg, transparent 0, transparent 15px, rgba(70,150,255,0.05) 15px, rgba(70,150,255,0.05) 16px); }
.thumb-end { background-color: #1A1A2E; background-image: repeating-linear-gradient(90deg, transparent 0, transparent 15px, rgba(180,100,255,0.1) 15px, rgba(180,100,255,0.1) 16px), repeating-linear-gradient(0deg, transparent 0, transparent 15px, rgba(180,100,255,0.05) 15px, rgba(180,100,255,0.05) 16px); }

.portfolio-icon { font-size: 48px; position: relative; z-index: 1; filter: drop-shadow(0 0 12px rgba(0,0,0,0.8)); }
.portfolio-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 2px 2px 0 #000;
  z-index: 2;
}
.badge-green { background: #2A5A10; color: var(--emerald); }
.badge-blue { background: #0A2A4A; color: var(--diamond); }

.portfolio-body { padding: 20px; }
.portfolio-client {
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  color: var(--emerald);
  margin-bottom: 8px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
}
.portfolio-card h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  margin-bottom: 8px;
  line-height: 1.6;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
}
.portfolio-card p { font-size: 12px; color: var(--muted); line-height: 1.65; font-weight: 600; }

/* ─── TEAM ─── */
#team {
  background: #131813;
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 31px, rgba(0,0,0,0.12) 31px, rgba(0,0,0,0.12) 32px),
    repeating-linear-gradient(0deg, transparent 0, transparent 31px, rgba(0,0,0,0.08) 31px, rgba(0,0,0,0.08) 32px);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.team-card {
  background: var(--surface2);
  border: 2px solid var(--stone-dark);
  border-top: 2px solid #444;
  border-left: 2px solid #444;
  padding: 32px;
  box-shadow: 4px 4px 0 #000;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.mc-avatar {
  width: 64px; height: 64px;
  flex-shrink: 0;
  image-rendering: pixelated;
  box-shadow: 3px 3px 0 #000;
  position: relative;
  overflow: hidden;
}
.mc-avatar-inner {
  width: 100%; height: 100%;
  background-color: #C68642;
  display: grid;
  grid-template-columns: repeat(8,1fr);
  grid-template-rows: repeat(8,1fr);
}
.team-info h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  margin-bottom: 6px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
  line-height: 1.5;
}
.team-role {
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  color: var(--emerald);
  margin-bottom: 12px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
}
.team-info p { font-size: 12px; color: var(--muted); line-height: 1.7; font-weight: 600; margin-bottom: 14px; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.skill-tag {
  font-family: 'Press Start 2P', monospace;
  font-size: 6px;
  background: var(--surface3);
  border: 1px solid var(--stone-dark);
  padding: 4px 8px;
  color: var(--muted);
  box-shadow: 2px 2px 0 #000;
}

/* ─── PRICING ─── */
#pricing { background: #0C1A0C; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 2px solid var(--stone-dark);
  border-top: 2px solid #444;
  border-left: 2px solid #444;
  padding: 32px 28px;
  box-shadow: 4px 4px 0 #000;
  position: relative;
}
.pricing-card.featured {
  background: #0F2010;
  border-color: var(--grass);
  border-top-color: var(--grass-light);
  border-left-color: var(--grass-light);
  box-shadow: 4px 4px 0 #000, 0 0 30px rgba(93,158,50,0.2);
  transform: scale(1.03);
}
.pricing-card.featured::before {
  content: '★ BEST VALUE ★';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grass);
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  padding: 5px 14px;
  white-space: nowrap;
  box-shadow: 2px 2px 0 #000;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}
.plan-name {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
}
.plan-price {
  font-family: 'Press Start 2P', monospace;
  font-size: 32px;
  color: var(--gold);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.8), 0 0 20px rgba(255,215,0,0.3);
  margin-bottom: 4px;
  line-height: 1.2;
}
.plan-price span { font-size: 14px; }
.plan-sub { font-size: 12px; color: var(--muted); margin-bottom: 24px; padding-bottom: 20px; border-bottom: 2px solid var(--stone-dark); font-weight: 600; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  font-size: 12px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.plan-features li::before {
  content: '▸';
  color: var(--emerald);
  flex-shrink: 0;
  text-shadow: 0 0 8px rgba(23,221,98,0.5);
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: #111A0F;
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 31px, rgba(0,0,0,0.1) 31px, rgba(0,0,0,0.1) 32px),
    repeating-linear-gradient(0deg, transparent 0, transparent 31px, rgba(0,0,0,0.07) 31px, rgba(0,0,0,0.07) 32px);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.testi-card {
  background: var(--surface2);
  border: 2px solid var(--stone-dark);
  border-top: 2px solid #444;
  border-left: 2px solid #444;
  padding: 28px;
  box-shadow: 4px 4px 0 #000;
}
.mc-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.mc-star {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--gold);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
}
.testi-text { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-weight: 600; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-head {
  width: 40px; height: 40px;
  image-rendering: pixelated;
  box-shadow: 2px 2px 0 #000;
  background: #C68642;
  border: 2px solid #8B6319;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.testi-name {
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  margin-bottom: 4px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
}
.testi-server { font-size: 11px; color: var(--emerald); font-weight: 700; }

/* ─── CONTACT ─── */
#contact { background: #0C1A0C; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { text-align: left; margin-bottom: 16px; }
.contact-info p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; font-weight: 600; }

.contact-perks { list-style: none; }
.contact-perks li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.perk-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--surface2);
  border: 2px solid var(--stone-dark);
  box-shadow: 2px 2px 0 #000;
}
/* ─── PHOSPHOR ICONS GLOBAL ─── */
.section-tag i,
.plan-name i,
.hero-tag i,
.mc-btn i {
  font-size: 1em;
  vertical-align: middle;
  margin-right: 6px;
}
.portfolio-icon i {
  font-size: 48px;
  color: var(--emerald);
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.8));
}
.perk-icon i {
  font-size: 18px;
  color: var(--emerald);
}

/* Minecraft-style form panel */
.mc-panel {
  background: var(--surface);
  border: 3px solid #555;
  border-bottom-color: #1A1A1A;
  border-right-color: #1A1A1A;
  padding: 4px;
  box-shadow: 0 0 0 1px #000, 6px 6px 0 #000;
}
.mc-panel-inner {
  background: #1A1A2E;
  border: 2px solid #0A0A1E;
  padding: 32px;
}
.mc-panel-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: var(--text);
  text-align: center;
  margin-bottom: 28px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mc-panel-title span { color: var(--emerald); }

.form-group { margin-bottom: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

label {
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  color: var(--muted);
  margin-bottom: 7px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
}

input, textarea, select {
  width: 100%;
  background: #000000;
  border: 2px solid #555;
  border-top-color: #222;
  border-left-color: #222;
  color: #FFFFFF;
  padding: 10px 14px;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  outline: none;
  transition: border-color 0.2s;
  box-shadow: inset 2px 2px 0 rgba(0,0,0,0.5);
  line-height: 1.6;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: #444; }
input:focus, textarea:focus, select:focus {
  border-color: var(--grass);
  box-shadow: inset 2px 2px 0 rgba(0,0,0,0.5), 0 0 0 1px rgba(93,158,50,0.3);
}
textarea { resize: vertical; min-height: 100px; }
select option { background: #111; }

.form-submit {
  width: 100%;
  background: #5DA832;
  color: #fff;
  border-top: 3px solid #8EC85A;
  border-left: 3px solid #8EC85A;
  border-right: 3px solid #2A5A10;
  border-bottom: 3px solid #2A5A10;
  box-shadow: 0 4px 0 #1A3A08;
  padding: 16px;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: #fff;
  cursor: pointer;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
  transition: transform 0.1s, box-shadow 0.1s;
  margin-top: 8px;
  letter-spacing: 0.05em;
}
.form-submit:hover { background: #6DBE3A; }
.form-submit:active { transform: translateY(3px); box-shadow: 0 1px 0 #1A3A08; }

/* ─── FOOTER ─── */
footer {
  background: var(--cobble);
  border-top: 3px solid var(--stone-dark);
  padding: 40px 5%;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  color: var(--muted);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
  line-height: 1.8;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  color: var(--muted);
  text-decoration: none;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
}
.footer-links a:hover { color: var(--emerald); }

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hero-inner { text-align: center; }
  .services-grid, .portfolio-grid, .testi-grid, .pricing-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .nav-links { display: none; }
  .torch-left, .torch-right { display: none; }
}
