/* ==========================================================================
   SORTED. — Weekend IT / Wi-Fi / Gaming / Home Tech Support
   Stylesheet
   ========================================================================== */

:root {
  /* Brand colours */
  --black: #0a0a0b;
  --graphite: #141416;
  --charcoal: #1c1c1f;
  --charcoal-light: #26262a;
  --border: #2c2c31;
  --red: #ff1f2d;
  --red-dark: #c4121e;
  --red-glow: rgba(255, 31, 45, 0.35);
  --white: #ffffff;
  --grey: #c7cad1;
  --grey-dim: #8b8f98;
  --grey-faint: #5c5f66;

  --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;

  --green-status: #2ee06b;

  --container-w: 1200px;
  --radius: 14px;
  --radius-sm: 8px;

  --header-h: 76px;
  --header-h-scrolled: 60px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--grey);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--white); margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; }

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

/* ---------- Focus / a11y ---------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 999;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 820px; }

.section { padding: 88px 0; position: relative; }
.section--graphite { background: var(--graphite); }
.section--dark { background: var(--black); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.eyebrow {
  color: var(--red);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.eyebrow::before {
  content: '$ ';
  color: var(--grey-faint);
}
.eyebrow--center { text-align: center; }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
}
.section-sub {
  text-align: center;
  color: var(--grey-dim);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}
.section-closer {
  text-align: center;
  font-size: 1.25rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.text-red { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn-primary:hover {
  background: #ff3947;
  box-shadow: 0 6px 28px var(--red-glow);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.btn-sm { padding: 9px 16px; font-size: 0.78rem; }
.btn-md { padding: 12px 22px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 0.92rem; }

.icon-mail { width: 18px; height: 18px; flex-shrink: 0; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 600;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: padding 0.25s ease;
}
.header-inner {
  position: relative;
  z-index: 3;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  transition: height 0.25s ease;
}
.site-header.is-scrolled .header-inner { height: var(--header-h-scrolled); }

.logo { display: inline-flex; align-items: center; line-height: 0; }
.logo-img { height: 34px; width: auto; transition: height 0.25s ease; }
.site-header.is-scrolled .logo-img { height: 28px; }
.logo-img--xl { height: 84px; }
.mobile-nav-logo { height: 40px; margin-bottom: 28px; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--grey);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  height: calc(100vh - var(--header-h));
  width: min(340px, 84vw);
  background: var(--graphite);
  border-left: 1px solid var(--border);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  z-index: 2;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav nav { flex: 1; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 14px 4px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .btn { width: 100%; margin-top: 20px; }

.mobile-nav-backdrop {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.mobile-nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

body.nav-open { overflow: hidden; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 72px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-grid {
  position: absolute;
  inset: -10% -10%;
  background-image:
    linear-gradient(rgba(199, 202, 209, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 202, 209, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 40%, transparent 85%);
}
.hero-glow {
  position: absolute;
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  max-width: 160vw;
  background: radial-gradient(closest-side, var(--red-glow), transparent 72%);
  opacity: 0.55;
  filter: blur(10px);
}
.tech-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 24px;
}

.hero-content { text-align: center; }
.hero .eyebrow { text-align: center; }
.hero-title {
  font-size: clamp(2.4rem, 7.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 10px 0 22px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--grey);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 22px;
}
.hero-note {
  font-size: 0.88rem;
  color: var(--grey-faint);
  max-width: 480px;
  margin: 0 auto;
}

.hero-visual { display: flex; justify-content: center; }
.hero-badge {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 100%;
  max-width: 480px;
}
.hero-visual { min-width: 0; }

/* ---------- Terminal window chrome ---------- */
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  background: transparent;
  border-bottom: 1px solid var(--border);
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; display: block; }
.terminal-dot--red { background: #ff5f57; }
.terminal-dot--amber { background: #febc2e; }
.terminal-dot--green { background: #28c840; }
.terminal-path {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--grey-faint);
  letter-spacing: 0.02em;
}
.hero-badge-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 40px 36px 44px;
}
.terminal-lines {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  line-height: 1.9;
  text-align: left;
}
.terminal-lines p { color: var(--grey); }
.terminal-prompt { color: var(--red); margin-right: 6px; }
.terminal-out { color: var(--grey-faint); padding-left: 16px; }
.terminal-out--red { color: var(--red); }
.terminal-cursor {
  display: inline-block;
  color: var(--red);
  animation: cursor-blink 1s step-end infinite;
}
.terminal-dots-anim { display: inline-block; }
@keyframes cursor-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .terminal-cursor { animation: none; }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.service-card {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 31, 45, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.service-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 8px; flex: 1; }
.service-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.94rem;
  color: var(--grey);
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 1px;
  transform: rotate(45deg);
}
.service-note {
  font-size: 0.82rem;
  color: var(--grey-faint);
  font-style: italic;
  margin: 10px 0 6px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--red);
  transition: gap 0.2s ease;
}
.service-link:hover { gap: 10px; }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  text-align: center;
  flex: 1;
}
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 10px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { font-size: 0.94rem; color: var(--grey-dim); }
.step-arrow {
  display: none;
  align-self: center;
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 700;
}

.progress-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 56px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--white);
}
.progress-line {
  height: 2px;
  width: clamp(60px, 18vw, 180px);
  background: linear-gradient(90deg, var(--grey-faint), var(--red));
  position: relative;
}
.progress-line::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--red);
}

/* ==========================================================================
   WHAT WE DO
   ========================================================================== */
.check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.check-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 31, 45, 0.14);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-icon svg { width: 15px; height: 15px; }

/* ==========================================================================
   WHAT WE DON'T DO
   ========================================================================== */
.cross-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.cross-grid li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--grey);
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
}
.cross-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--graphite);
  border: 1px solid var(--grey-faint);
  color: var(--grey-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cross-icon svg { width: 12px; height: 12px; }

.note-box {
  margin: 44px auto 0;
  max-width: 720px;
  background: linear-gradient(160deg, rgba(255,31,45,0.08), rgba(255,31,45,0.02));
  border: 1px solid rgba(255,31,45,0.3);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
}
.note-box p { color: var(--white); font-size: 0.96rem; margin-bottom: 8px; }
.note-box p:last-child { margin-bottom: 0; }
.note-example { color: var(--grey-dim) !important; font-weight: 400 !important; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.price-card {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.price-card--accent {
  border-color: rgba(255,31,45,0.45);
  background: linear-gradient(160deg, rgba(255,31,45,0.09), var(--graphite) 60%);
}
.price-card h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-list { display: flex; flex-direction: column; gap: 13px; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.94rem;
}
.price-list span { color: var(--grey); }
.price-list strong {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  white-space: nowrap;
}
.price-list strong em {
  font-style: normal;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--grey-faint);
  margin-left: 3px;
}
.price-note, .price-includes {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--grey-faint);
}
.price-includes { color: var(--grey-dim); }

/* Website design — no price list, quote-only card */
.price-card--quote {
  display: flex;
  flex-direction: column;
  border-style: dashed;
  border-color: var(--border);
}
.price-card--quote h3 { border-bottom: none; padding-bottom: 0; margin-bottom: 12px; }
.price-quote-text {
  font-size: 0.9rem;
  color: var(--grey-dim);
  flex: 1;
  margin-bottom: 18px;
}
.service-tag--inline {
  position: static;
  margin-left: auto;
}

.pricing-disclaimer {
  margin-top: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.pricing-disclaimer p {
  font-size: 0.9rem;
  color: var(--grey-dim);
  margin-bottom: 12px;
}
.pricing-disclaimer .btn { margin-top: 10px; }

/* ==========================================================================
   WHY SORTED
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.why-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.25s ease;
}
.why-card:hover { border-color: rgba(255,31,45,0.35); }
.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.why-card p { font-size: 0.92rem; color: var(--grey-dim); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--red);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.faq-toggle::before { width: 10px; height: 2px; }
.faq-toggle::after { width: 2px; height: 10px; }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg) scaleX(0); }
.faq-item p {
  padding-bottom: 20px;
  color: var(--grey-dim);
  font-size: 0.95rem;
  max-width: 640px;
}

/* ==========================================================================
   CTA / CONTACT
   ========================================================================== */
.section--cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, var(--red-glow), transparent 70%),
    var(--graphite);
  opacity: 0.9;
  z-index: -1;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}
.cta-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 52px;
}
.cta-meta-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  min-width: 180px;
}
.cta-meta-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-faint);
  margin-bottom: 6px;
}
.cta-meta-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  font-size: 0.98rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-img { height: 30px; margin-bottom: 16px; }
.footer-tag {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--grey-faint);
  margin-bottom: 8px;
}
.footer-slogan {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a { font-size: 0.92rem; color: var(--grey-dim); transition: color 0.2s ease; }
.footer-nav a:hover { color: var(--red); }

.footer-social-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-faint);
  margin-bottom: 14px;
}
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-dim);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { color: var(--red); border-color: var(--red); transform: translateY(-2px); }

.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--grey-faint);
}

/* ==========================================================================
   FLOATING EMAIL
   ========================================================================== */
.mail-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px var(--red-glow);
  z-index: 400;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mail-float svg { width: 26px; height: 26px; }
.mail-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 32px var(--red-glow); }
.mail-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: mail-pulse 2.4s ease-out infinite;
}
@keyframes mail-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .mail-float::before { animation: none; }
}

/* ==========================================================================
   TECH ACCENTS — HUD corners, status dot, scanline, grid overlay
   ========================================================================== */
.hud { position: relative; }
.hud::after {
  content: '';
  position: absolute;
  inset: 9px;
  pointer-events: none;
  background:
    linear-gradient(var(--red), var(--red)) top left / 13px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) top left / 2px 13px no-repeat,
    linear-gradient(var(--red), var(--red)) top right / 13px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) top right / 2px 13px no-repeat,
    linear-gradient(var(--red), var(--red)) bottom left / 13px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) bottom left / 2px 13px no-repeat,
    linear-gradient(var(--red), var(--red)) bottom right / 13px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) bottom right / 2px 13px no-repeat;
  opacity: 0.4;
  transition: opacity 0.25s ease;
}
.hud:hover::after { opacity: 0.95; }

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green-status);
  box-shadow: 0 0 0 rgba(46, 224, 107, 0.5);
  animation: status-pulse 2.2s ease-out infinite;
  vertical-align: middle;
}
@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 224, 107, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(46, 224, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 224, 107, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .status-dot { animation: none; }
}

/* Scanline sweep over hero/cta backgrounds */
.hero-bg::before,
.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 31, 45, 0.06) 48%, transparent 100%);
  background-size: 100% 240px;
  animation: scanline-sweep 7s linear infinite;
  pointer-events: none;
}
@keyframes scanline-sweep {
  0% { background-position: 0 -240px; }
  100% { background-position: 0 100vh; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg::before, .cta-bg::before { animation: none; }
}

/* Faint grid wash across every section for consistency with the hero */
.section {
  background-image:
    linear-gradient(rgba(199, 202, 209, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 202, 209, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* Background wrapper for an optional animated tech-canvas on a section */
.section-bg-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* "NEW" service tag ribbon */
.service-card--new { position: relative; border-color: rgba(255, 31, 45, 0.35); }
.service-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  border: 1px solid rgba(255, 31, 45, 0.5);
  border-radius: 4px;
  padding: 3px 8px;
  background: rgba(255, 31, 45, 0.08);
}

/* ==========================================================================
   SCROLL-REVEAL ANIMATION
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 640px) {
  .cross-grid, .check-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: row; }
  .step-arrow { display: flex; }
}

@media (min-width: 860px) {
  .hero-inner { grid-template-columns: 1.15fr 0.85fr; text-align: left; padding-top: 40px; }
  .hero-content { text-align: left; }
  .hero .eyebrow { text-align: left; }
  .hero-sub { margin-left: 0; }
  .hero-ctas { justify-content: flex-start; }
  .hero-note { margin-left: 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1.3fr 1fr 1fr; }
}

@media (min-width: 980px) {
  .main-nav { display: block; }
  .hamburger { display: none; }
  .mobile-nav, .mobile-nav-backdrop { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card--accent { grid-column: span 1; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .check-grid { grid-template-columns: repeat(3, 1fr); }
  .cross-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 979px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

@media (min-width: 1180px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
