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

/* =================================================================
   TechCare — dark graphite theme, emerald accent
   Layout language: centred hero, list-rows, vertical timeline
   ================================================================= */
:root {
  --bg: #0c1113;
  --bg-2: #101719;
  --surface: #141c1f;
  --surface-2: #1b2528;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);

  --em: #2dd4bf;
  --em-deep: #14b8a6;
  --em-dim: rgba(45, 212, 191, 0.12);
  --lime: #a3e635;

  --text: #e8f0ef;
  --text-2: #93a5a3;
  --text-3: #5e7370;

  --shadow: 0 26px 60px -28px rgba(0, 0, 0, 0.8);
  --shadow-em: 0 14px 34px -12px rgba(45, 212, 191, 0.4);

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t: 0.26s var(--ease);
  --maxw: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(70% 40% at 50% -8%, rgba(45, 212, 191, 0.14), transparent 60%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 84px);
  pointer-events: none; z-index: 0;
}
body > * { position: relative; z-index: 1; }

a { color: var(--em); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--em-deep); }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--em); outline-offset: 3px; border-radius: 4px; }

/* =================================================================
   type
   ================================================================= */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.04; letter-spacing: -0.035em; color: var(--text); }
.eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--em);
  display: inline-block; padding: 5px 0; border-bottom: 1px solid var(--em-dim);
}
.h-xl { font-size: clamp(2.7rem, 7vw, 5.2rem); }
.h-lg { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.lead { color: var(--text-2); font-size: 1.1rem; line-height: 1.7; }
.muted { color: var(--text-2); }
.mark { color: var(--em); }
.hl { color: var(--em); }

/* =================================================================
   layout — centred by default
   ================================================================= */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 62px 0; }
.sec-head { max-width: 660px; margin: 0 auto 54px; text-align: center; }
.sec-head h2 { margin: 18px 0 14px; }
.sec-head p { color: var(--text-2); font-size: 1.04rem; }
.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); border: 0; }

/* =================================================================
   buttons
   ================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-mono); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.04em;
  padding: 14px 26px; border-radius: var(--r-sm); border: 1px solid transparent;
  cursor: pointer; transition: transform var(--t), background var(--t), border-color var(--t), box-shadow var(--t), color var(--t);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--em); color: #06201d; box-shadow: var(--shadow-em); }
.btn-primary:hover { background: var(--em-deep); color: #06201d; transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--line-2); color: var(--text); }
.btn-ghost:hover { border-color: var(--em); color: var(--em); background: var(--em-dim); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 0.95rem; }
.btn-block { width: 100%; }
.btn-light { background: #06201d; color: var(--em); border-color: transparent; }
.btn-light:hover { background: #041614; color: var(--em); }

/* =================================================================
   nav
   ================================================================= */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(12, 17, 19, 0.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); transition: background var(--t), box-shadow var(--t); }
.nav.scrolled { background: rgba(12, 17, 19, 0.96); box-shadow: 0 10px 30px -20px #000; }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.26rem; letter-spacing: -0.04em; color: var(--text); flex-shrink: 0; }
.brand:hover { color: var(--text); }
.brand .ac { color: var(--em); }
.brand img { width: 30px; height: 30px; object-fit: contain; border-radius: 7px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links a { font-family: var(--font-mono); color: var(--text-2); font-size: 0.84rem; letter-spacing: 0.04em; padding: 8px 13px; border-radius: var(--r-sm); transition: color var(--t), background var(--t); }
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-links a.active { color: var(--em); background: var(--em-dim); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-phone { font-family: var(--font-mono); font-size: 0.86rem; color: var(--text); }
.nav-phone:hover { color: var(--em); }
.nav-right .btn-primary { height: 44px; }

.burger { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: var(--r-sm); border: 1px solid var(--line-2); background: transparent; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--em); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.burger span:nth-child(1) { top: 16px; } .burger span:nth-child(2) { top: 21px; } .burger span:nth-child(3) { top: 26px; }
.burger.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-panel { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: var(--bg-2); border-left: 1px solid var(--line); z-index: 200; transform: translateX(100%); transition: transform 0.34s var(--ease); padding: 88px 24px 30px; display: flex; flex-direction: column; gap: 2px; }
.mobile-panel.open { transform: translateX(0); }
.mobile-panel a { font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: 1.36rem; padding: 13px 0; border-bottom: 1px solid var(--line); letter-spacing: -0.02em; }
.mobile-panel a:hover { color: var(--em); }
.mobile-panel .btn { margin-top: 18px; }
.panel-close { position: absolute; top: 18px; right: 20px; width: 44px; height: 44px; border-radius: var(--r-sm); border: 1px solid var(--line-2); background: transparent; cursor: pointer; }
.panel-close::before, .panel-close::after { content: ''; position: absolute; top: 50%; left: 50%; width: 16px; height: 2px; background: var(--em); border-radius: 2px; }
.panel-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.panel-close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.scrim { position: fixed; inset: 0; background: rgba(4, 8, 9, 0.62); backdrop-filter: blur(2px); z-index: 150; opacity: 0; pointer-events: none; transition: opacity var(--t); }
.scrim.open { opacity: 1; pointer-events: auto; }

/* =================================================================
   hero — CENTRED
   ================================================================= */
.hero { padding: 92px 0 70px; text-align: center; }
.hero h1 { margin: 22px auto 22px; max-width: 15ch; }
.hero .lead { max-width: 56ch; margin: 0 auto; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin: 34px 0 0; }
.hero-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; margin-top: 44px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-strip .cell { flex: 1 1 200px; padding: 18px 20px; border-right: 1px solid var(--line); font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-2); }
.hero-strip .cell:last-child { border-right: 0; }
.hero-strip .cell b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--em); letter-spacing: -0.02em; margin-bottom: 2px; }

/* signature: terminal-style status readout */
.readout { max-width: 700px; margin: 54px auto 0; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); text-align: left; }
.readout-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.readout-bar i { width: 10px; height: 10px; border-radius: 50%; display: block; background: var(--line-2); }
.readout-bar i:first-child { background: var(--em); }
.readout-bar .path { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-3); margin-left: 8px; }
.readout-body { padding: 22px 20px; font-family: var(--font-mono); font-size: 0.86rem; }
.ro-line { display: flex; gap: 12px; padding: 7px 0; color: var(--text-2); }
.ro-line .k { color: var(--text-3); min-width: 122px; }
.ro-line .v { color: var(--text); }
.ro-line .v.ok { color: var(--em); }
.ro-line .v.lime { color: var(--lime); }
.readout-foot { border-top: 1px solid var(--line); padding: 14px 20px; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-3); flex-wrap: wrap; gap: 8px; }
.readout-foot .done { color: var(--em); }
.cursor { display: inline-block; width: 8px; height: 15px; background: var(--em); vertical-align: -2px; animation: blink 1.1s steps(2) infinite; }
@keyframes blink { 0%,50% { opacity: 1; } 50.01%,100% { opacity: 0; } }

/* =================================================================
   services — LIST ROWS
   ================================================================= */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 56px 1fr 1.35fr auto; align-items: center; gap: 24px;
  padding: 26px 12px; border-bottom: 1px solid var(--line);
  transition: background var(--t), padding var(--t);
}
.svc-row:hover { background: var(--surface); padding-left: 22px; padding-right: 22px; }
.svc-row .no { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-3); }
.svc-row h3 { font-size: 1.24rem; display: flex; align-items: center; gap: 12px; }
.svc-row h3 .ic { font-size: 1.2rem; }
.svc-row p { color: var(--text-2); font-size: 0.94rem; }
.svc-row .tag { font-family: var(--font-mono); font-size: 0.76rem; color: var(--em); white-space: nowrap; }

/* =================================================================
   steps — VERTICAL TIMELINE
   ================================================================= */
.timeline { max-width: 720px; margin: 0 auto; position: relative; padding-left: 46px; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(var(--em), var(--line)); }
.tl-item { position: relative; padding: 0 0 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: -38px; top: 6px; width: 13px; height: 13px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--em);
}
.tl-item .no { font-family: var(--font-mono); font-size: 0.74rem; color: var(--em); letter-spacing: 0.14em; }
.tl-item h4 { font-size: 1.2rem; margin: 6px 0 7px; }
.tl-item p { color: var(--text-2); font-size: 0.94rem; }

/* =================================================================
   brands
   ================================================================= */
.brands { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.brands span { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-2); padding: 8px 15px; border: 1px solid var(--line); border-radius: var(--r-sm); transition: color var(--t), border-color var(--t); }
.brands span:hover { color: var(--em); border-color: var(--em); }

/* =================================================================
   stat strip
   ================================================================= */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.stat { padding: 34px 22px; text-align: center; border-right: 1px solid var(--line); background: var(--surface); }
.stat:last-child { border-right: 0; }
.stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--em); letter-spacing: -0.03em; }
.stat .n small { font-size: 0.9rem; color: var(--text-2); }
.stat .l { font-family: var(--font-mono); color: var(--text-2); font-size: 0.78rem; margin-top: 6px; }

/* =================================================================
   products
   ================================================================= */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.prod { background: var(--surface); padding: 30px 26px; transition: background var(--t); }
.prod:hover { background: var(--surface-2); }
.prod .ph { font-size: 1.8rem; margin-bottom: 14px; }
.prod h3 { font-size: 1.06rem; margin-bottom: 7px; }
.prod p { color: var(--text-2); font-size: 0.9rem; }

/* =================================================================
   cta
   ================================================================= */
.cta { border: 1px solid var(--em-dim); background: linear-gradient(180deg, rgba(45,212,191,0.09), transparent 70%); border-radius: var(--r-lg); padding: 62px 40px; text-align: center; }
.cta h2 { margin-bottom: 14px; }
.cta p { color: var(--text-2); max-width: 46em; margin: 0 auto 30px; }
.cta .row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =================================================================
   reviews
   ================================================================= */
.reviews-slot { max-width: 900px; margin: 0 auto; }
.rv-placeholder { text-align: center; padding: 46px 30px; border: 1px dashed var(--line-2); border-radius: var(--r); background: var(--surface); }
.rv-placeholder .em { font-size: 1.8rem; margin-bottom: 12px; }
.rv-placeholder p { color: var(--text-2); }
.rv-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* =================================================================
   contact — FULL-WIDTH MAP, info row beneath
   ================================================================= */
.map-full { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.map-full iframe { width: 100%; height: 380px; border: 0; display: block; }
.info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; }
.info-card .k { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.info-card .v { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; letter-spacing: -0.02em; }
.info-card .v a { color: var(--text); }
.info-card .v a:hover { color: var(--em); }
.info-card p { color: var(--text-2); font-size: 0.9rem; }
.info-card.accent-card { border-color: var(--em); background: linear-gradient(180deg, var(--em-dim), var(--surface) 70%); }
.hours { width: 100%; }
.hours .r { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.9rem; border-bottom: 1px solid var(--line); }
.hours .r:last-child { border-bottom: 0; }
.hours .d { color: var(--text-2); }
.hours .h { font-family: var(--font-mono); font-size: 0.82rem; color: var(--text); }
.hours .r.today .d { color: var(--em); font-weight: 600; }
.hours .r.today .h { color: var(--em); }

/* =================================================================
   book a repair form
   ================================================================= */
.book-section { scroll-margin-top: 90px; }
.book-card { max-width: 820px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 44px; }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.book-field { display: flex; flex-direction: column; gap: 7px; }
.book-field.full { grid-column: 1 / -1; }
.book-field label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-2); }
.book-field label .req { color: var(--em); }
.book-field input, .book-field select, .book-field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 0.94rem; color: var(--text);
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  outline: none; transition: border-color var(--t), box-shadow var(--t);
}
.book-field textarea { min-height: 130px; resize: vertical; }
.book-field input::placeholder, .book-field textarea::placeholder { color: var(--text-3); }
.book-field input:focus, .book-field select:focus, .book-field textarea:focus { border-color: var(--em); box-shadow: 0 0 0 3px var(--em-dim); }
.book-field select { cursor: pointer; }
.book-field select option { background: var(--surface); color: var(--text); }
.book-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.book-note { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-3); }
.book-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* =================================================================
   legal
   ================================================================= */
.legal { display: grid; grid-template-columns: 230px 1fr; gap: 46px; align-items: start; }
.legal-toc { position: sticky; top: 96px; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; background: var(--surface); }
.legal-toc h4 { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; font-weight: 500; }
.legal-toc a { display: block; font-family: var(--font-mono); color: var(--text-2); font-size: 0.8rem; padding: 7px 9px; border-radius: var(--r-sm); }
.legal-toc a:hover { color: var(--em); background: var(--em-dim); }
.legal-body h2 { font-size: 1.3rem; margin: 42px 0 14px; padding-top: 40px; border-top: 1px solid var(--line); }
.legal-body h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-body p { color: var(--text-2); margin-bottom: 14px; line-height: 1.78; }
.legal-body strong { color: var(--text); }
.legal-body ul { margin: 0 0 16px; }
.legal-body li { color: var(--text-2); padding: 6px 0 6px 22px; position: relative; }
.legal-body li::before { content: '\203A'; position: absolute; left: 4px; top: 6px; color: var(--em); font-family: var(--font-mono); }
.pill-note { display: inline-block; font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-3); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 6px 13px; margin-bottom: 22px; }

/* =================================================================
   footer — centred
   ================================================================= */
.ft { border-top: 1px solid var(--line); background: var(--bg-2); padding: 62px 0 30px; margin-top: 24px; }
.ft-top { text-align: center; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.ft-top .brand { justify-content: center; }
.ft-top p { color: var(--text-2); font-size: 0.92rem; margin: 14px auto 20px; max-width: 46ch; }
.ft-cols { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; padding: 28px 0; }
.ft-cols a { font-family: var(--font-mono); color: var(--text-2); font-size: 0.82rem; }
.ft-cols a:hover { color: var(--em); }
.ft-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.ft-bottom p { font-family: var(--font-mono); color: var(--text-3); font-size: 0.76rem; }

.callbar { display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; background: var(--em); color: #06201d; text-align: center; padding: 15px; border-radius: var(--r-sm); font-family: var(--font-mono); font-weight: 500; box-shadow: var(--shadow-em); }
.callbar:hover { color: #06201d; }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; } .reveal.d3 { transition-delay: 0.24s; }

/* =================================================================
   responsive
   ================================================================= */
@media (max-width: 1000px) {
  .info-row { grid-template-columns: 1fr; }
  .statband { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .legal { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .svc-row { grid-template-columns: 40px 1fr; gap: 8px 16px; }
  .svc-row p { grid-column: 2; }
  .svc-row .tag { grid-column: 2; }
}
@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .hero { padding: 62px 0 54px; }
  .nav-links, .nav-phone, .nav-right { display: none; }
  .burger { display: block; }
  .prod-grid { grid-template-columns: 1fr; }
  .cta { padding: 44px 24px; }
  .book-card { padding: 30px 22px; }
  .book-grid { grid-template-columns: 1fr; }
  .book-actions { flex-direction: column; align-items: stretch; }
  .hero-strip .cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-strip .cell:last-child { border-bottom: 0; }
  .callbar { display: block; }
  body { padding-bottom: 84px; }
}
@media (max-width: 480px) {
  .statband { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .timeline { padding-left: 34px; }
  .timeline::before { left: 10px; }
  .tl-item::before { left: -30px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
