/* ==========================================================================
   Bay Geeks Computer Repair — Landing Page System
   Design concept: "Gulf Coast Signal" — deep gulf-water navy + teal current,
   coral call-to-action, radar/ping rings standing in for a live remote
   session, wave dividers standing in for the coastline. Veteran & woman
   owned small-business feel: confident, plain-spoken, no gimmicks.
   ========================================================================== */

:root {
  --navy: #0A2A43;
  --navy-deep: #071C30;
  --teal: #0F8B8D;
  --teal-bright: #14A5A7;
  --seafoam: #8FE3D2;
  --paper: #EEF4F3;
  --surface: #FFFFFF;
  --coral: #FF5A36;
  --coral-dark: #E04421;
  --gold: #F4B740;
  --ink: #12222E;
  --ink-soft: #3E5164;
  --line: #D7E2E1;
  --radius: 14px;
  --display: "Space Grotesk", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); margin: 0 0 .5em; line-height: 1.08; color: var(--navy-deep); letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: #CFE6E4;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .02em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #CFE6E4; text-decoration: none; }
.topbar a:hover { color: var(--seafoam); }
.topbar-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.ping-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #33D6A8; margin-right: 6px; position: relative; top: -1px;
  box-shadow: 0 0 0 0 rgba(51,214,168,.7);
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(51,214,168,.55); }
  70% { box-shadow: 0 0 0 8px rgba(51,214,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(51,214,168,0); }
}

/* ---------- Header / nav ---------- */
header.site-header {
  background: var(--navy);
  color: #fff;
  padding: 18px 0;
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(155deg, var(--teal-bright), var(--navy-deep) 120%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 18px; color: #fff;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--display); font-size: 19px; letter-spacing: -0.01em; }
.brand-text span { font-family: var(--mono); font-size: 11px; color: var(--seafoam); letter-spacing: .04em; }

nav.primary-nav { display: flex; align-items: center; gap: 26px; }
nav.primary-nav a { text-decoration: none; color: #E4EEED; font-size: 14.5px; font-weight: 500; }
nav.primary-nav a:hover { color: var(--seafoam); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 999px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
}
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-dark); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { border-color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(ellipse at 78% 15%, #123B5B 0%, var(--navy) 46%, var(--navy-deep) 100%);
  color: #fff;
  padding: 74px 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
}
.eyebrow {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--seafoam); display: flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.hero h1 {
  color: #fff; font-size: clamp(32px, 4.4vw, 50px); max-width: 15ch;
}
.hero .lede { color: #CBDBDA; font-size: 18px; max-width: 46ch; margin-bottom: 14px; }
.hero .hub-line { font-size: 13.5px; color: #93ACAB; max-width: 46ch; margin-bottom: 26px; }
.hero .hub-line a { color: var(--seafoam); text-decoration: underline; text-underline-offset: 2px; }
.hero .hub-line a:hover { color: #fff; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13.5px; color: #B9CDCC; }
.hero-trust strong { color: #fff; }

.signal-wrap { position: relative; display: flex; align-items: center; justify-content: center; height: 320px; }
.signal-rings { position: absolute; inset: 0; }
.ring {
  position: absolute; border: 1.5px solid rgba(143,227,210,.35); border-radius: 50%;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  animation: ring-pulse 3.6s cubic-bezier(.2,.6,.35,1) infinite;
}
.ring.r1 { width: 120px; height: 120px; animation-delay: 0s; }
.ring.r2 { width: 220px; height: 220px; animation-delay: .9s; }
.ring.r3 { width: 320px; height: 320px; animation-delay: 1.8s; }
@keyframes ring-pulse {
  0% { opacity: .8; transform: translate(-50%, -50%) scale(.7); }
  80% { opacity: 0; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
}
.signal-card {
  position: relative; z-index: 2; background: rgba(11,42,67,.65);
  border: 1px solid rgba(143,227,210,.4); backdrop-filter: blur(6px);
  border-radius: 16px; padding: 22px 24px; width: 240px; text-align: center;
}
.signal-card .status { font-family: var(--mono); font-size: 12px; color: #33D6A8; letter-spacing: .05em; margin-bottom: 8px; }
.signal-card .num { font-family: var(--display); font-size: 30px; color: #fff; }
.signal-card .cap { font-size: 12.5px; color: #B9CDCC; }

.wave-divider { display: block; width: 100%; height: 64px; margin-top: -2px; }
.wave-divider path { fill: var(--paper); }

/* ---------- Sections ---------- */
section { padding: 68px 0; }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head .eyebrow { color: var(--teal); justify-content: center; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); color: var(--navy-deep); }
.section-head p { color: var(--ink-soft); font-size: 16.5px; }

.tri-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px;
}
.card .icon-badge {
  width: 46px; height: 46px; border-radius: 12px; background: var(--paper);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  color: var(--teal); border: 1px solid var(--line);
}
.card h3 { font-size: 19px; margin-bottom: 8px; color: var(--navy-deep); }
.card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 0; }

.service-band { background: var(--navy-deep); color: #fff; }
.service-band .section-head h2 { color: #fff; }
.service-band .section-head p { color: #B9CDCC; }
.service-band .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); }
.service-band .card h3 { color: #fff; }
.service-band .card p { color: #B9CDCC; }
.service-band .card .icon-badge { background: rgba(143,227,210,.12); border-color: rgba(143,227,210,.3); color: var(--seafoam); }
.service-band .faq-item { border-bottom-color: rgba(255,255,255,.14); }
.service-band .faq-item h3 { color: #fff; }
.service-band .faq-item p { color: #B9CDCC; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .step-tag {
  font-family: var(--mono); font-size: 12.5px; color: var(--coral); letter-spacing: .05em;
  display: block; margin-bottom: 10px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 15px; }

/* Plans / pricing */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; }
.plan-card.featured { border-color: var(--coral); box-shadow: 0 12px 32px -12px rgba(255,90,54,.35); position: relative; }
.plan-tag { font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; color: var(--coral); text-transform: uppercase; margin-bottom: 6px; }
.plan-card h3 { font-size: 21px; margin-bottom: 4px; }
.plan-price { font-family: var(--display); font-size: 30px; color: var(--navy-deep); margin-bottom: 12px; }
.plan-price span { font-family: var(--body); font-size: 14px; color: var(--ink-soft); font-weight: 400; }
.plan-list { list-style: none; margin: 0 0 22px; padding: 0; font-size: 14.5px; color: var(--ink-soft); }
.plan-list li { padding-left: 22px; position: relative; margin-bottom: 9px; }
.plan-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.plan-card .btn { margin-top: auto; justify-content: center; }

/* Areas served */
.areas-band { background: var(--seafoam); background: linear-gradient(180deg, #DDF2EC, var(--paper)); }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  font-family: var(--mono); font-size: 13px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px; color: var(--navy-deep);
}

/* Testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.quote-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.quote-card p { font-size: 15px; color: var(--ink); font-style: italic; }
.quote-name { font-family: var(--mono); font-size: 12.5px; color: var(--ink-soft); margin-top: 12px; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item h3 { font-size: 17px; margin-bottom: 8px; color: var(--navy-deep); }
.faq-item p { color: var(--ink-soft); font-size: 15px; margin-bottom: 0; }

/* Lead form / final CTA */
.lead-band { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.lead-copy h2 { color: #fff; font-size: clamp(26px, 3.2vw, 34px); }
.lead-copy p { color: #C7DAD9; font-size: 16px; }
.lead-copy .contact-line { font-family: var(--mono); font-size: 15px; margin-top: 18px; color: var(--seafoam); }
.lead-form {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px; padding: 26px; backdrop-filter: blur(6px);
}
.lead-form h3 { color: #fff; font-size: 18px; margin-bottom: 4px; }
.lead-form .sub { color: #B9CDCC; font-size: 13.5px; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; color: #CFE6E4; margin-bottom: 6px; font-family: var(--mono); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px; border-radius: 8px; border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08); color: #fff; font-family: var(--body); font-size: 14.5px;
}
.field input::placeholder, .field textarea::placeholder { color: #9FB6B5; }
.field textarea { resize: vertical; min-height: 70px; }
.lead-form .btn { width: 100%; justify-content: center; }
.form-note { font-size: 11.5px; color: #93ACAB; margin-top: 10px; }

/* Crosslink network */
.network-band { background: var(--paper); }
.network-cols { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 34px; }
.network-col h3 { font-family: var(--mono); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.network-col ul { list-style: none; margin: 0; padding: 0; }
.network-col li { margin-bottom: 9px; }
.network-col a { text-decoration: none; color: var(--ink-soft); font-size: 14.5px; }
.network-col a:hover { color: var(--coral); text-decoration: underline; }
.hub-card { background: var(--navy-deep); color: #fff; border-radius: 14px; padding: 22px; }
.hub-card h3 { color: var(--seafoam); }
.hub-card p { color: #C7DAD9; font-size: 14.5px; }
.hub-card a.btn { margin-top: 10px; }

/* Footer */
footer.site-footer { background: var(--navy-deep); color: #9FB6B5; padding: 40px 0 26px; font-size: 13.5px; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-grid a { color: #C7DAD9; text-decoration: none; }
.footer-grid a:hover { color: var(--seafoam); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* Sticky mobile call bar */
.sticky-call {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: var(--coral); color: #fff; display: none;
  align-items: center; justify-content: center; gap: 10px;
  padding: 13px 16px; font-weight: 700; text-decoration: none; font-size: 15px;
}

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .signal-wrap { height: 220px; }
  .tri-grid, .steps, .plans-grid, .quote-grid { grid-template-columns: 1fr; }
  .network-cols { grid-template-columns: 1fr; }
  .lead-grid { grid-template-columns: 1fr; }
  nav.primary-nav { position: fixed; inset: 0 0 0 30%; background: var(--navy-deep); flex-direction: column; justify-content: center; align-items: flex-start; padding: 40px; gap: 22px; transform: translateX(100%); transition: transform .25s ease; }
  nav.primary-nav.open { transform: translateX(0); }
  nav.primary-nav a { font-size: 18px; }
  .nav-toggle { display: block; }
  .sticky-call { display: flex; }
  body { padding-bottom: 58px; }
}
