*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --surface2: #1a1a24;
  --accent: #00ff88;
  --accent-dim: #00cc6a;
  --blue: #00a8ff;
  --text: #e8e8f0;
  --muted: #8888a0;
  --border: #222232;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
nav ul li a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}
nav ul li a:hover { color: var(--accent); text-decoration: none; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: radial-gradient(ellipse at 50% 40%, #0f1a0f 0%, var(--bg) 70%);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.hero .tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.hero .cta {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s;
}
.hero .cta:hover {
  background: var(--accent-dim);
  text-decoration: none;
  transform: translateY(-2px);
}

/* ── Sections ── */
section { padding: 5rem 2rem; max-width: 960px; margin: 0 auto; }
section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.svc-card .console { font-size: 1.05rem; font-weight: 600; color: var(--text); }
.svc-card .mod-type { font-size: 0.875rem; color: var(--blue); }
.svc-card .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-top: 0.5rem;
}
.pricing-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}
.pricing-note span { color: var(--accent); font-weight: 600; }

/* ── Why Turbo Tech ── */
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.reason-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}
.reason-card .icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.reason-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; }
.reason-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }

/* ── Service Area ── */
.area-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
}
.area-box .city {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.area-box .address { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.25rem; }
.county-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}
.county-list li {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.3rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text);
}

/* ── Contact ── */
#contact { padding-bottom: 6rem; }
.contact-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  max-width: 560px;
}
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  padding: 0.65rem 0.85rem;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 110px; }
.btn-book {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s;
}
.btn-book:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}
.email-fallback {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
footer strong { color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 600px) {
  nav { padding: 0.85rem 1.25rem; }
  nav ul { gap: 1.25rem; }
  section { padding: 3.5rem 1.25rem; }
  .hero { padding: 5rem 1.25rem 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .services-grid { grid-template-columns: 1fr; }
  nav ul { display: none; }
}
