/*
Theme Name: TechFixAfterSix Starter
Theme URI: https://techfixaftersix.com
Author: JaDor
Description: Fast, mobile-first starter theme for TechFixAfterSix with pricing, booking, contact, and next-steps templates.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: techfixaftersix
*/

:root {
  --brand-1: #0B1F2A;
  --brand-2: #1EA7FF;
  --brand-3: #10B981;
  --bg: #07141C;
  --text: #EAF2F8;
  --muted: #B5C4CF;
  --card: rgba(255,255,255,0.06);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top right, #12344b 0%, var(--bg) 35%);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--brand-2); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1100px, 92%); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(7,20,28,.9);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.header-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.logo a { color: #fff; font-weight: 700; letter-spacing: .2px; font-size: 2.2rem; }
.nav a { margin-left: 16px; color: var(--text); font-size: .95rem; }
.btn {
  display: inline-block; padding: 12px 18px; border-radius: 10px;
  font-weight: 600; border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--brand-2), #4dc4ff); color: #00131f; }
.btn-secondary { border-color: rgba(255,255,255,.2); color: var(--text); }
.hero { padding: 68px 0 48px; text-align: center !important; }
.hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.15; margin: 0 0 10px; text-align: center !important; }
.hero p { color: var(--muted); max-width: 680px; margin-left: auto; margin-right: auto; text-align: center !important; }
.hero > * { text-align: center !important; }
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
  background: var(--card); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 18px;
}
.section { padding: 30px 0; }
h2 { margin-top: 0; }
.price { font-size: 1.7rem; font-weight: 700; margin: 6px 0 12px; }
.notice { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.35); padding: 10px 12px; border-radius: 10px; }
.site-footer { margin-top: 40px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); }
.mobile-book {
  position: fixed; bottom: 14px; right: 14px; z-index: 30;
}
@media (min-width: 860px) { .mobile-book { display:none; } }
input, textarea, select {
  width: 100%; padding: 10px; border-radius: 10px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.03); color: var(--text); margin-bottom: 10px;
}

/* Badge pills */
.hero-badges { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-top:1.25rem; }
.badge { background:rgba(79,195,247,.12); border:1px solid rgba(79,195,247,.3); color:#4fc3f7; padding:6px 14px; border-radius:20px; font-size:.82rem; font-weight:600; letter-spacing:.03em; }

/* How It Works step circles */
.step-circle { width:48px; height:48px; border-radius:50%; background:#4fc3f7; color:#0d1117; font-size:1.3rem; font-weight:700; display:flex; align-items:center; justify-content:center; margin:0 auto .75rem; }
