/* ============================================================
   Mike DiNinno Electric — Electric Storm
   Live Web Studios | livewebstudios.com
   ============================================================ */

:root {
  --color-bg:           #080808;
  --color-bg-alt:       #0A0A0A;
  --color-bg-card:      #0D0D0D;
  --color-accent:       #00C8FF;
  --color-accent-2:     #7B2FFF;
  --color-accent-3:     #39FF14;
  --color-text:         #FFFFFF;
  --color-text-muted:   #CCCCCC;
  --color-text-dim:     #888888;
  --color-border:       rgba(255,255,255,0.08);
  --color-emergency:    #FF4500;
  --color-stars:        #FFD700;
  --font-heading:       'Alumni Sans Pinstripe', 'Albert Sans', Arial, sans-serif;
  --font-body:          'Alumni Sans Pinstripe', 'Albert Sans', Arial, sans-serif;
  --nav-height:         72px;
  --section-pad:        100px 5%;
  --border-radius:      6px;
  --transition:         0.25s ease;
  --glow-accent:        0 0 20px rgba(0,200,255,0.3);
  --glow-purple:        0 0 20px rgba(123,47,255,0.3);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent-2); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--color-text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); text-transform: uppercase; letter-spacing: 0.02em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--color-text-muted); margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { color: var(--color-text); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-heading-block { text-align: center; max-width: 760px; margin: 0 auto 3.5rem; }
.section-heading-block p { color: var(--color-text-muted); font-size: 1.05rem; margin-top: 0.75rem; }

/* ---------- Layout helpers ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 5%; }
section { padding: var(--section-pad); position: relative; }
main { padding-top: var(--nav-height); }

/* ---------- Buttons ---------- */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.95rem 2rem;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--color-accent);
  color: #000;
  box-shadow: var(--glow-accent);
}
.btn-primary:hover {
  background: #fff;
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,200,255,0.6);
}
.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: calc(var(--nav-height) + 60px) 5% 80px;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; max-width: 960px; }
.hero h1 { color: var(--color-text); margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--color-accent); }
.hero .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero .btn-row { justify-content: center; }
.hero-watermark {
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: 520px;
  max-width: 60vw;
  opacity: 0.06;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 40px var(--color-accent));
}

.page-hero {
  min-height: 56vh;
  padding: calc(var(--nav-height) + 80px) 5% 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead { color: var(--color-text-muted); font-size: 1.1rem; max-width: 720px; margin: 0 auto; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding: 2rem 5%;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.trust-icon {
  font-size: 1.8rem;
  color: var(--color-accent);
  text-shadow: var(--glow-accent);
}
.trust-item span:last-child {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

/* ---------- Welcome / Pillars ---------- */
.welcome { background: var(--color-bg); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.welcome-copy p + p { margin-top: 1rem; }
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.pillar {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 1.5rem 1.75rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.pillar:hover {
  border-color: var(--color-accent);
  box-shadow: var(--glow-accent);
  transform: translateY(-3px);
}
.pillar:hover::before { transform: translateX(100%); }
.pillar-icon {
  font-size: 2rem;
  color: var(--color-accent);
  flex-shrink: 0;
}
.pillar h3 { font-family: var(--font-heading); text-transform: uppercase; font-size: 1.15rem; }
.pillar p { font-size: 0.93rem; margin: 0.2rem 0 0; color: var(--color-text-dim); }

/* ---------- Services Grid ---------- */
.services-section { background: var(--color-bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 2;
}
.service-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: var(--glow-accent);
}
.service-card:hover::before { transform: translateX(100%); }
.service-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}
.service-card:hover .service-card-image img {
  transform: scale(1.08);
  filter: brightness(1);
}
.service-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--color-text-dim);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.service-card .read-more {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  align-self: flex-start;
}
.service-card .read-more::after { content: ' →'; transition: var(--transition); }
.service-card:hover .read-more::after { padding-left: 6px; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--color-bg);
  padding: 70px 5%;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: var(--glow-accent);
}
.stat-label {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--color-bg-alt); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--color-accent-2);
  box-shadow: var(--glow-purple);
  transform: translateY(-3px);
}
.testimonial-stars {
  color: var(--color-stars);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-author {
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
.testimonial-author span {
  font-size: 0.85rem;
  color: var(--color-text-dim);
}

/* ---------- Emergency CTA ---------- */
.emergency-cta {
  padding: 70px 5%;
  background: linear-gradient(135deg, rgba(255,69,0,0.12), rgba(123,47,255,0.08));
  border-top: 1px solid rgba(255,69,0,0.3);
  border-bottom: 1px solid rgba(255,69,0,0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.emergency-cta h2 {
  color: var(--color-emergency);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255,69,0,0.4);
}
.emergency-cta p { color: var(--color-text-muted); margin-bottom: 2rem; font-size: 1.05rem; }
.emergency-cta .btn-emergency {
  background: var(--color-emergency);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: var(--border-radius);
  box-shadow: 0 0 30px rgba(255,69,0,0.4);
  transition: var(--transition);
}
.emergency-cta .btn-emergency:hover {
  background: #fff;
  color: var(--color-emergency);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255,69,0,0.6);
}

/* ---------- Emergency Bar (full-width thin) ---------- */
.emergency-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: linear-gradient(90deg, rgba(255,69,0,0.18), rgba(0,0,0,0.6), rgba(255,69,0,0.18));
  border-top: 1px solid rgba(255,69,0,0.4);
  border-bottom: 1px solid rgba(255,69,0,0.4);
  padding: 0.9rem 5%;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}
.emergency-bar span { color: var(--color-emergency); font-weight: 700; }
.emergency-bar a {
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid var(--color-emergency);
  padding-bottom: 2px;
}
.emergency-bar a:hover { color: var(--color-emergency); }

/* ---------- Blog Preview ---------- */
.blog-preview { background: var(--color-bg); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: var(--glow-accent);
}
.blog-card-image { aspect-ratio: 16 / 10; overflow: hidden; background: #000; }
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); filter: brightness(1); }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-date {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.blog-card h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-card p { font-size: 0.93rem; color: var(--color-text-dim); margin-bottom: 1.25rem; flex-grow: 1; }
.blog-card .read-more {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  align-self: flex-start;
}
.blog-card .read-more::after { content: ' →'; }

/* ---------- Footer ---------- */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--color-border);
  padding: 70px 5% 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto 3rem;
}
.footer-col h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.footer-logo img { max-width: 340px; width: 100%; margin-bottom: 1.25rem; }
@media (max-width: 768px) {
  .footer-logo img { max-width: 280px; }
}
.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 0;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul li a:hover { color: var(--color-accent); }
.footer-contact { font-size: 0.95rem; color: var(--color-text-muted); }
.footer-contact div { margin-bottom: 0.6rem; }
.footer-contact a { color: var(--color-text-muted); }
.footer-contact a:hover { color: var(--color-accent); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 42px; height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: var(--glow-accent);
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-copy { font-size: 0.85rem; color: var(--color-text-dim); }
.footer-copy a { color: var(--color-text-muted); }
.footer-badge img { width: 150px; height: 37px; }

/* ---------- Contact Form ---------- */
.contact-section { background: var(--color-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  border-radius: var(--border-radius);
}
.contact-info h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.contact-info-item strong {
  display: block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--color-text-dim);
  margin-bottom: 0.15rem;
}
.contact-info-item a { color: var(--color-text); }
.contact-info-item a:hover { color: var(--color-accent); }
.contact-info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0,200,255,0.1);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  border-radius: var(--border-radius);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 0.95rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0,200,255,0.15);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .form-row input { margin-bottom: 0; }
.contact-form button { width: 100%; }
.form-status { margin-top: 1rem; font-size: 0.9rem; min-height: 1.2em; text-align: center; }
.form-status.success { color: var(--color-accent-3); }
.form-status.error { color: var(--color-emergency); }

/* ---------- About Page ---------- */
.about-intro { padding: var(--section-pad); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  position: relative;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(0,200,255,0.1));
  pointer-events: none;
}
.about-copy h2 { margin-bottom: 1.5rem; }
.about-copy p + p { margin-top: 1rem; }

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.highlight-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-accent);
  border-color: var(--color-accent);
}
.highlight-card h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}
.highlight-card p { color: var(--color-text-muted); font-size: 0.95rem; }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.cert-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 1.25rem 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  transition: var(--transition);
}
.cert-item:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
  box-shadow: var(--glow-accent);
}

.ethics-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.ethics-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.ethics-item:hover { border-color: var(--color-accent-2); box-shadow: var(--glow-purple); }
.ethics-item .ethics-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(123,47,255,0.15);
  color: var(--color-accent-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}
.ethics-item strong {
  display: block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}
.ethics-item p { font-size: 0.9rem; color: var(--color-text-dim); margin: 0; }

/* Tabs for History/Mission/Vision */
.tabs { max-width: 1000px; margin: 0 auto; }
.tab-list {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.tab-btn {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  padding: 1rem 1.75rem;
  color: var(--color-text-dim);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}
.tab-btn:hover { color: var(--color-text); }
.tab-btn.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.tab-panel p { font-size: 1.05rem; }

/* ---------- Service Detail Page ---------- */
.service-detail { padding: var(--section-pad); }
.service-detail-inner {
  max-width: 980px;
  margin: 0 auto;
}
.service-detail p { font-size: 1.05rem; margin-bottom: 1.25rem; }
.service-detail h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1.25rem;
  color: var(--color-accent);
  text-transform: uppercase;
}
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
  margin: 1.5rem 0;
}
.service-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--color-text-muted);
}
.service-list li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
}
.service-cta {
  background: var(--color-bg-card);
  border: 1px solid var(--color-accent);
  border-radius: var(--border-radius);
  padding: 2rem 2.5rem;
  margin-top: 3rem;
  text-align: center;
  box-shadow: var(--glow-accent);
}
.service-cta h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

/* ---------- Services overview — full list ---------- */
.full-services { background: var(--color-bg-alt); }
.full-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
}
.full-services-grid li {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 0.85rem 1rem;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  transition: var(--transition);
  text-align: center;
}
.full-services-grid li:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
  box-shadow: var(--glow-accent);
}

/* ---------- Service Agreement page ---------- */
.sca-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.sca-feature {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  padding: 1.75rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.sca-feature:hover { border-top-color: var(--color-accent-2); box-shadow: var(--glow-purple); }
.sca-feature h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

/* ---------- Blog post ---------- */
.blog-post { padding: var(--section-pad); }
.blog-post-inner { max-width: 800px; margin: 0 auto; }
.blog-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-dim);
  margin: 1.5rem 0 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.blog-meta .category { color: var(--color-accent); }
.blog-post-inner h2 {
  font-size: 1.5rem;
  text-transform: none;
  margin: 2rem 0 1rem;
  color: var(--color-text);
}
.blog-post-inner p { font-size: 1.05rem; margin-bottom: 1.5rem; }

/* ---------- Licensed badge (red emergency pill) ---------- */
.licensed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,69,0,0.10);
  border: 1px solid rgba(255,69,0,0.5);
  color: var(--color-emergency);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  text-shadow: 0 0 8px rgba(255,69,0,0.65);
  box-shadow: 0 0 12px rgba(255,69,0,0.18);
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .full-services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .welcome-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid,
  .blog-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ethics-list { grid-template-columns: 1fr; }
  .full-services-grid { grid-template-columns: repeat(2, 1fr); }
  .sca-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 5%; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 2rem 5%; }
  .trust-bar .trust-item:last-child { grid-column: 1 / -1; }
  .services-grid,
  .blog-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: left; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-list { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .page-hero { min-height: 40vh; }
}

@media (max-width: 480px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .full-services-grid { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 1.75rem 1.25rem; }
}




/* ============================================================
   ABOUT PHOTO FRAME — Mike's portrait
   ============================================================ */
.about-photo-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0,200,255,0.15);
  aspect-ratio: 4 / 5;
  background: var(--color-bg-card);
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: contrast(1.05) saturate(0.9);
}
.about-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(8,8,8,0.6), transparent);
  pointer-events: none;
}


/* ============================================================
   GLOW SYSTEM — applied to existing components + spec aliases
   ============================================================ */

/* CARD GLOW (default state) */
.service-card,
.testi-card, .testimonial-card,
.blog-card,
.pillar,
.stat,
.cred, .cert-item,
.trust-pill, .trust-item {
  box-shadow:
    inset 0 0 20px rgba(0,200,255,0.04),
    inset 0 1px 0 rgba(0,200,255,0.08),
    0 0 0 1px rgba(0,200,255,0.06);
}

.service-card:hover,
.blog-card:hover,
.testi-card:hover, .testimonial-card:hover {
  box-shadow:
    inset 0 0 40px rgba(0,200,255,0.08),
    inset 0 1px 0 rgba(0,200,255,0.2),
    0 0 30px rgba(0,200,255,0.12),
    0 0 0 1px rgba(0,200,255,0.2);
  border-color: rgba(0,200,255,0.2);
  transition: all 0.3s ease;
}

/* ICON BOX GLOW */
.service-card-icon,
.trust-icon,
.emergency-icon,
.pillar-icon,
.contact-info-icon {
  box-shadow:
    inset 0 0 16px rgba(0,200,255,0.12),
    0 0 12px rgba(0,200,255,0.1);
}

/* STAT NUMBER GLOW */
.stat-num,
.stat-number {
  text-shadow:
    0 0 20px rgba(0,200,255,0.6),
    0 0 60px rgba(0,200,255,0.3),
    0 0 100px rgba(0,200,255,0.15);
}

/* SECTION H2 ACCENT GLOW */
.section-h2 .accent,
section h2 .accent,
.hero h1 .accent {
  text-shadow:
    0 0 20px rgba(0,200,255,0.5),
    0 0 50px rgba(0,200,255,0.2);
}

/* HERO H1 GLOW */
.hero-h1 .line2,
.hero h1 .line2 {
  text-shadow:
    0 0 30px rgba(0,200,255,0.7),
    0 0 80px rgba(0,200,255,0.3),
    0 0 140px rgba(0,200,255,0.15);
}

/* BUTTON GLOW */
.btn-primary {
  box-shadow:
    0 0 20px rgba(0,200,255,0.35),
    0 0 60px rgba(0,200,255,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  box-shadow:
    0 0 35px rgba(0,200,255,0.55),
    0 0 80px rgba(0,200,255,0.25),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

/* NAV LOGO MARK GLOW (on hover only — keep nav clean at rest) */
.nav-logo:hover img {
  filter: drop-shadow(0 0 16px rgba(0,200,255,0.5))
          drop-shadow(0 0 40px rgba(0,200,255,0.2));
}

/* SECTION LABEL LINE GLOW (eyebrow underline) */
.eyebrow::after,
.section-label::after {
  box-shadow: 0 0 6px rgba(0,200,255,0.6);
}

/* HERO DIVIDER GLOW (small line below hero subhead, if added) */
.hero-divider {
  box-shadow:
    0 0 10px rgba(0,200,255,0.8),
    0 0 30px rgba(0,200,255,0.3);
}

/* TRUST DOT GLOW */
.trust-dot {
  box-shadow:
    0 0 6px rgba(0,200,255,0.8),
    0 0 16px rgba(0,200,255,0.4);
}

/* EMERGENCY PHONE GLOW */
.emergency-phone,
.btn-emergency {
  text-shadow:
    0 0 20px rgba(255,69,0,0.8),
    0 0 60px rgba(255,69,0,0.4);
}

/* ABOUT PHOTO FRAME GLOW (additional layer on top of frame border) */
.about-photo-frame {
  box-shadow:
    0 0 40px rgba(0,200,255,0.08),
    0 0 80px rgba(0,200,255,0.04),
    inset 0 0 60px rgba(0,200,255,0.04);
}

/* PILLAR LEFT BORDER GLOW */
.pillar {
  box-shadow:
    inset 0 0 20px rgba(0,200,255,0.04),
    -2px 0 12px rgba(0,200,255,0.2);
}

/* FOOTER BADGE GLOW */
.footer-badge {
  display: inline-block;
  box-shadow:
    0 0 12px rgba(0,200,255,0.15),
    inset 0 0 16px rgba(0,200,255,0.05);
}

/* HERO BADGE GLOW */
.hero-badge,
.hero .licensed-badge {
  box-shadow:
    0 0 30px rgba(0,200,255,0.1),
    inset 0 0 20px rgba(0,200,255,0.06);
}

/* ABOUT TAG (red) GLOW */
.about-tag,
.about-copy .licensed-badge {
  box-shadow:
    0 0 12px rgba(255,69,0,0.18),
    inset 0 0 10px rgba(255,69,0,0.06);
  text-shadow: 0 0 10px rgba(255,69,0,0.6);
}

/* Eyebrow underline element so SECTION LABEL GLOW has something to glow */
.eyebrow {
  position: relative;
}
.eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  vertical-align: middle;
  margin-left: 10px;
  border-radius: 2px;
}


/* ============================================================
   TOP CARD GLOW — universal "lit from above" spotlight effect
   Inspired by the orange top-glow in reference imagery; rendered
   in cyan/blue to match Electric Storm palette.
   Applied via ::after with mix-blend-mode: screen so it lightens
   rather than obscures content underneath.
   ============================================================ */
.service-card,
.testi-card, .testimonial-card,
.blog-card,
.pillar,
.highlight-card, .cred,
.cert-item,
.sca-feature,
.stat,
.contact-info,
.contact-form {
  position: relative;
}

.service-card::after,
.testi-card::after, .testimonial-card::after,
.blog-card::after,
.pillar::after,
.highlight-card::after,
.cert-item::after,
.sca-feature::after,
.stat::after,
.contact-info::after,
.contact-form::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  pointer-events: none;
  background: radial-gradient(
    ellipse 75% 100% at 50% 0%,
    rgba(0,200,255,0.22) 0%,
    rgba(0,200,255,0.12) 22%,
    rgba(0,200,255,0.04) 45%,
    transparent 70%
  );
  mix-blend-mode: screen;
  z-index: 5;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

/* Service cards have a full-bleed image at top; push glow above the image */
.service-card::after,
.blog-card::after {
  background: radial-gradient(
    ellipse 75% 90% at 50% -5%,
    rgba(0,200,255,0.30) 0%,
    rgba(0,200,255,0.14) 25%,
    rgba(0,200,255,0.05) 50%,
    transparent 75%
  );
}

/* On hover, intensify */
.service-card:hover::after,
.testi-card:hover::after, .testimonial-card:hover::after,
.blog-card:hover::after,
.pillar:hover::after,
.highlight-card:hover::after,
.cert-item:hover::after,
.sca-feature:hover::after {
  background: radial-gradient(
    ellipse 80% 100% at 50% 0%,
    rgba(0,200,255,0.38) 0%,
    rgba(0,200,255,0.18) 25%,
    rgba(0,200,255,0.06) 50%,
    transparent 75%
  );
  transition: background 0.4s ease;
}

/* Container cards (contact info / form) — subtler, doesn't need hover state */
.contact-info::after,
.contact-form::after {
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(0,200,255,0.16) 0%,
    rgba(0,200,255,0.06) 35%,
    transparent 70%
  );
  height: 45%;
}


/* ============================================================
   TOPBAR — Light grey utility strip above the nav
   ============================================================ */
:root { --topbar-height: 38px; }

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;          /* above .site-nav (z-index: 1000) */
  height: var(--topbar-height);
  background: #e9e9e9;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: #1a1a1a;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}
.topbar-tag { color: #2a2a2a; }
.topbar-phone {
  color: #000;
  font-weight: 700;
  padding-bottom: 1px;
  border-bottom: 2px solid var(--color-emergency);
  transition: var(--transition);
  white-space: nowrap;
}
.topbar-phone:hover {
  color: var(--color-emergency);
  border-bottom-color: var(--color-emergency);
}
.topbar-bolt {
  display: inline-block;
  color: var(--color-emergency);
  font-size: 0.9rem;
}

/* Push fixed nav + page content below the new topbar */
.site-nav { top: var(--topbar-height) !important; }
main      { padding-top: calc(var(--nav-height) + var(--topbar-height)); }

/* Hero accounts for topbar so it still fits one viewport */
.hero { min-height: calc(100vh - var(--topbar-height)); }

/* Mobile: hide tagline, keep phone */
@media (max-width: 720px) {
  :root { --topbar-height: 34px; }
  .topbar-inner { gap: 0.6rem; font-size: 0.72rem; letter-spacing: 0.06em; }
  .topbar-tag-long { display: none; }
}


/* ============================================================
   NAV LOGO — Larger to fill the existing header height
   (header height stays at --nav-height: 72px)
   ============================================================ */
.nav-logo img {
  height: 68px;       /* fills 72px nav with 2px breathing room top/bottom */
  max-height: 68px;
  width: auto;
}
@media (max-width: 720px) {
  .nav-logo img { height: 56px; max-height: 56px; }
}


/* ============================================================
   HERO SPLIT LAYOUT — logo-color.png left, words right
   Used on the home page hero.
   ============================================================ */
.hero-split {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}
.hero-logo-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-col img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter:
    drop-shadow(0 0 40px rgba(0,200,255,0.45))
    drop-shadow(0 0 100px rgba(0,200,255,0.22));
  animation: heroLogoPulse 5s ease-in-out infinite;
}
@keyframes heroLogoPulse {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(0,200,255,0.45)) drop-shadow(0 0 100px rgba(0,200,255,0.22)); }
  50%      { filter: drop-shadow(0 0 60px rgba(0,200,255,0.65)) drop-shadow(0 0 140px rgba(0,200,255,0.32)); }
}

.hero-text-col          { text-align: left; }
.hero-text-col .lead    { margin-left: 0; margin-right: 0; }
.hero-text-col .btn-row { justify-content: flex-start; }

/* Override the centered hero alignment when using split */
.hero:has(.hero-split) { text-align: left; }
.hero:has(.hero-split) .hero-inner { max-width: 1200px; }
.hero:has(.hero-split) .btn-row { justify-content: flex-start; }

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-text-col          { text-align: center; }
  .hero-text-col .btn-row { justify-content: center; }
  .hero-logo-col img      { max-width: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-col img { animation: none; }
}


/* ============================================================
   FOOTER SECTION SEPARATOR — wavy-line.png above the footer
   ============================================================ */
.site-footer { padding-top: 0; }
.footer-separator {
  width: 100%;
  margin: 0 0 50px;
  line-height: 0;
  pointer-events: none;
  overflow: hidden;
}
.footer-separator img {
  width: 100%;
  height: auto;
  display: block;
  /* If source image is dark navy/black on transparent, light it up subtly */
  filter: drop-shadow(0 0 14px rgba(0,200,255,0.18));
}
@media (max-width: 720px) {
  .footer-separator { margin-bottom: 30px; }
}


/* ============================================================
   FOOTER — Full-width, symmetric padding above/below wave
   ============================================================ */
.site-footer {
  padding: 80px 0 0;          /* 80px ABOVE the wave (no horizontal pad here) */
  background: #050505;
  width: 100%;
}
.footer-separator {
  width: 100%;
  margin: 0 0 80px;            /* 80px BELOW the wave — matches above */
  padding: 0;
}
.footer-separator img {
  width: 100%;
  height: auto;
  display: block;
}
.footer-grid {
  padding: 0 5%;               /* re-add side padding here so columns don't go edge-to-edge */
  max-width: 1280px;
  margin: 0 auto 3rem;
}
.footer-bottom {
  padding: 1.5rem 5% 1.75rem;  /* same — keep bottom row off the edges */
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .site-footer { padding-top: 56px; }
  .footer-separator { margin-bottom: 56px; }
}


/* ============================================================
   FOOTER LOGO — give it room to breathe in column 1
   ============================================================ */
.footer-grid {
  grid-template-columns: 1.9fr 1fr 1.2fr 1fr;
}
.footer-logo img {
  width: 100%;
  max-width: 480px;
  margin-bottom: 1.25rem;
}
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-logo img { max-width: 420px; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo img { max-width: 360px; }
}


/* ============================================================
   HERO LIGHTNING GRID — applies to any #hero-lightning element
   Pure CSS; no JS. Replaces the previous BG01 lightning system
   on hero sections (the old .bg-lightning rules in backgrounds.css
   still exist for the blog-grid section that uses class-based bg).
   ============================================================ */
#hero-lightning {
  position: relative;
  background: #050505;
  overflow: hidden;
}

#hero-lightning .grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,212,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.16) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
#hero-lightning .grid-lines::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.07) 1px, transparent 1px);
  background-size: 12px 12px;
}

#hero-lightning .bolt-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
#hero-lightning .bolt {
  position: absolute;
  width: 2px;
  transform-origin: top center;
  animation: bolt-flash 4s infinite;
  opacity: 0;
}
#hero-lightning .bolt::after {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  width: 18px; height: 100%;
  background: inherit;
  filter: blur(12px);
  opacity: .4;
}
@keyframes bolt-flash {
  0%,89%,100% { opacity: 0; }
  90%  { opacity: 1; transform: scaleY(1); }
  91%  { opacity: .6; }
  92%  { opacity: 1; }
  95%  { opacity: 0; }
}
#hero-lightning .b1 { left:15%; top:0; height:45%; background: linear-gradient(180deg,#00D4FF,transparent); animation-delay:0s;   }
#hero-lightning .b2 { left:35%; top:0; height:60%; background: linear-gradient(180deg,#FFD700,transparent); animation-delay:1.3s; }
#hero-lightning .b3 { left:55%; top:0; height:38%; background: linear-gradient(180deg,#00D4FF,transparent); animation-delay:2.1s; }
#hero-lightning .b4 { left:75%; top:0; height:52%; background: linear-gradient(180deg,#fff,transparent);    animation-delay:.7s;  }
#hero-lightning .b5 { left:88%; top:0; height:30%; background: linear-gradient(180deg,#00D4FF,transparent); animation-delay:3.2s; }

#hero-lightning .arc-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 30% at 50% 0%, rgba(0,212,255,.12) 0%, transparent 70%);
  animation: arc-pulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes arc-pulse {
  0%,100% { opacity: .6; }
  50%     { opacity: 1; }
}

/* Keep content above background layers */
#hero-lightning > .hero-inner,
#hero-lightning > .hero-content { position: relative; z-index: 5; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  #hero-lightning .bolt,
  #hero-lightning .arc-glow { animation: none !important; }
}


/* ============================================================
   FEATURE BAR — Tabler icon tiles
   ============================================================ */
.feature-bar {
  background: #0a0a12;
  padding: 2rem 1.5rem;
}
.feature-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.feature-tile {
  background: rgba(30, 144, 212, 0.12);
  border-radius: 8px;
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: background 0.2s ease;
}
.feature-tile:hover { background: rgba(30, 144, 212, 0.22); }
.feature-tile i {
  font-size: 28px;
  color: #1e90d4;
}
.feature-tile span {
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
/* Emergency tile — orange accent */
.feature-tile--emergency { background: rgba(232, 93, 4, 0.12); }
.feature-tile--emergency:hover { background: rgba(232, 93, 4, 0.22); }
.feature-tile--emergency i { color: #e85d04; }

/* Kill the universal card top-glow on feature tiles (they have their own look) */
.feature-tile::after { display: none !important; }

@media (max-width: 768px) {
  .feature-bar__inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .feature-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .feature-tile--emergency { grid-column: 1 / -1; }
}


/* ============================================================
   PAGE HERO — tighten vertical spacing (subpages were way too tall)
   ============================================================ */
.page-hero {
  min-height: 32vh;
  padding: 56px 5% 64px;
}
@media (max-width: 768px) {
  .page-hero {
    min-height: 26vh;
    padding: 44px 5% 48px;
  }
}


/* ============================================================
   LIGHTNING OVERRIDES — purple palette + faster strike cadence
   ============================================================ */

/* Faster strikes: 4s → 2.5s cycle, tighter stagger across all 5 bolts */
#hero-lightning .bolt { animation: bolt-flash 2.5s infinite; }

/* 5 shades of electric purple */
#hero-lightning .b1 {
  background: linear-gradient(180deg, #BB86FC, transparent);  /* light electric purple */
  animation-delay: 0s;
}
#hero-lightning .b2 {
  background: linear-gradient(180deg, #7B2FFF, transparent);  /* plasma purple */
  animation-delay: 0.5s;
}
#hero-lightning .b3 {
  background: linear-gradient(180deg, #C77DFF, transparent);  /* orchid */
  animation-delay: 1.0s;
}
#hero-lightning .b4 {
  background: linear-gradient(180deg, #E0AAFF, transparent);  /* soft lavender (was white) */
  animation-delay: 1.5s;
}
#hero-lightning .b5 {
  background: linear-gradient(180deg, #9D4EDD, transparent);  /* deep electric purple */
  animation-delay: 2.0s;
}

/* Arc-glow at top — shift to purple so it harmonizes with the bolts */
#hero-lightning .arc-glow {
  background: radial-gradient(
    ellipse 60% 30% at 50% 0%,
    rgba(155, 90, 255, 0.14) 0%,
    transparent 70%
  );
}


/* ============================================================
   ABOUT PHOTO — 50% smaller, 1px teal border
   ============================================================ */
.about-photo-frame {
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #008080;
}
@media (max-width: 768px) {
  .about-photo-frame { max-width: 240px; }
}


/* ============================================================
   PLASMA ARC — applied to the site footer on every page
   With a dark overlay so footer text stays readable.
   ============================================================ */

/* Make the footer the plasma container */
.site-footer.plasma-section {
  position: relative;
  overflow: hidden;
  background: #08000F;
}

/* Orb container */
.plasma-section .plasma-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
/* Core orb */
.plasma-section .plasma-core {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(123,47,255,.9)   0%,
    rgba(0,212,255,.4)   30%,
    rgba(123,47,255,.15) 60%,
    transparent          70%
  );
  animation: plasma-rotate 8s linear infinite;
  filter: blur(2px);
  flex-shrink: 0;
  position: relative;
}
.plasma-section .plasma-core::before {
  content: '';
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent          0%,
    rgba(0,212,255,.6)  15%,
    transparent         30%,
    rgba(123,47,255,.5) 50%,
    transparent         65%,
    rgba(0,212,255,.4)  80%,
    transparent        100%
  );
  animation: plasma-rotate 4s linear infinite reverse;
  filter: blur(8px);
}
.plasma-section .plasma-core::after {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255,255,255,.95)  0%,
    rgba(123,47,255,.8)   20%,
    transparent           60%
  );
  animation: plasma-pulse 2s ease-in-out infinite;
}
@keyframes plasma-rotate { to { transform: rotate(360deg); } }
@keyframes plasma-pulse {
  0%,100% { transform: scale(.95); opacity: .8; }
  50%     { transform: scale(1.05); opacity: 1; }
}

/* Expanding energy rings */
.plasma-section .plasma-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.plasma-section .plasma-rings .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ring-expand 4s ease-out infinite;
  opacity: 0;
  width: 300px;
  height: 300px;
}
.plasma-section .plasma-rings .ring:nth-child(1) { border-color: rgba(123,47,255,.6); animation-delay: 0s; }
.plasma-section .plasma-rings .ring:nth-child(2) { border-color: rgba(0,212,255,.5);  animation-delay: 1.3s; }
.plasma-section .plasma-rings .ring:nth-child(3) { border-color: rgba(255,255,255,.3); animation-delay: 2.6s; }
@keyframes ring-expand {
  0%   { transform: scale(.3); opacity: .8; }
  100% { transform: scale(3);  opacity: 0; }
}

/* Dark readability overlay sits BETWEEN plasma and footer content */
.plasma-section .plasma-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,0,15,0.55) 0%, rgba(0,0,0,0.80) 60%, rgba(0,0,0,0.92) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Footer content sits ABOVE plasma and overlay */
.site-footer.plasma-section > .footer-separator,
.site-footer.plasma-section > .footer-grid,
.site-footer.plasma-section > .footer-bottom {
  position: relative;
  z-index: 5;
}

/* Footer logo/text on plasma — give them subtle dark shadow for crispness */
.site-footer.plasma-section .footer-col h4,
.site-footer.plasma-section .footer-col ul li a,
.site-footer.plasma-section .footer-contact div,
.site-footer.plasma-section .footer-copy,
.site-footer.plasma-section .footer-tagline {
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

/* Mobile: shrink orb so it fits the shorter footer */
@media (max-width: 768px) {
  .plasma-section .plasma-core { width: 340px; height: 340px; }
  .plasma-section .plasma-rings .ring { width: 180px; height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  .plasma-section .plasma-core,
  .plasma-section .plasma-core::before,
  .plasma-section .plasma-core::after,
  .plasma-section .plasma-rings .ring { animation: none !important; }
}


/* ============================================================
   LOGO SIZE FIX
   The base reset has `img { max-width: 100% }` which was
   clamping the wide horizontal logo and squashing its height.
   Override max-width:none so height: actually controls size.
   ============================================================ */
.nav-logo img {
  max-width: none !important;
  height: 48px;
  max-height: 48px;
}
.footer-logo img {
  max-width: 240px;
  width: 100%;
}

/* Mobile — scale down so it still fits the narrower viewport */
@media (max-width: 992px) {
  .nav-logo img { height: 44px; max-height: 44px; }
}
@media (max-width: 600px) {
  .nav-logo img { height: 40px; max-height: 40px; }
}
@media (max-width: 420px) {
  .nav-logo img { height: 36px; max-height: 36px; }
}


/* ============================================================
   WHY MIKE — replaces the 3-pillar block in the welcome section
   ============================================================ */
.why-mike {
  background:
    radial-gradient(circle at 0% 0%, rgba(0,200,255,0.10), transparent 50%),
    linear-gradient(180deg, rgba(13,13,18,0.95) 0%, rgba(8,8,12,0.95) 100%);
  border: 1px solid rgba(0,200,255,0.20);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(0,200,255,0.04),
    0 20px 60px rgba(0,200,255,0.06),
    inset 0 1px 0 rgba(0,200,255,0.10);
}
.why-mike-eyebrow {
  font-family: 'Share Tech Mono', 'Albert Sans', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,200,255,0.15);
}
.why-mike-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-mike-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.why-mike-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(0,200,255,0.10);
  border: 1px solid rgba(0,200,255,0.25);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: inset 0 0 12px rgba(0,200,255,0.10);
}
.why-mike-item strong {
  display: block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.why-mike-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-text-dim);
}
.why-mike-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,200,255,0.15);
  width: 100%;
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.why-mike-cta:hover { color: #fff; }


/* ============================================================
   DARK BLUE BLOB — home page right-side background
   Only renders on body.page-home; ignored elsewhere.
   ============================================================ */
.page-blob {
  position: fixed;
  top: 0;
  right: 0;
  width: 65vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 55% 65% at 100% 50%, rgba(18, 38, 110, 0.45) 0%, rgba(8, 18, 60, 0.20) 35%, transparent 70%),
    radial-gradient(ellipse 35% 40% at 100% 20%, rgba(30, 80, 180, 0.25) 0%, transparent 60%);
}


/* ============================================================
   HOME HERO — tighten space between header and hero words
   ============================================================ */
.page-home .hero {
  align-items: flex-start;
  padding-top: 32px;
  padding-bottom: 56px;
  min-height: auto;
}
@media (max-width: 768px) {
  .page-home .hero {
    padding-top: 24px;
    padding-bottom: 40px;
  }
}


/* ============================================================
   PLASMA SECTION BASE — works on any .plasma-section, not just footer
   ============================================================ */
section.plasma-section {
  position: relative;
  overflow: hidden;
  background: #08000F;
  padding: 100px 5%;
}
section.plasma-section > .section-inner,
section.plasma-section > .container.section-inner {
  position: relative;
  z-index: 5;
}
section.plasma-section .container-narrow,
section.plasma-section .section-heading-block {
  position: relative;
  z-index: 5;
}
section.plasma-section h2 {
  color: #fff;
  text-shadow: 0 0 30px #7B2FFF, 0 0 80px rgba(123,47,255,.5);
}
section.plasma-section p {
  color: rgba(255,255,255,.75);
}
@media (max-width: 768px) {
  section.plasma-section { padding: 64px 5%; }
}


/* ============================================================
   ACCESSIBILITY — global keyboard focus states
   Applies a clear cyan focus ring on tab navigation.
   :focus-visible scopes it to keyboard users (no ring on mouse click).
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Form inputs in the contact form get the cyan focus already; reinforce */
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

/* Skip-to-content link for screen readers */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--color-accent);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}
.skip-link:focus-visible {
  left: 1rem;
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}


/* ============================================================
   ABOUT PHOTO — larger, right-aligned, butted up to bio text
   ============================================================ */
.about-photo-frame {
  max-width: 360px;        /* up from 280px */
  margin-left: auto;        /* push to right edge of its grid column */
  margin-right: 0;
}
/* Shrink the gap between photo column and bio column */
.about-grid {
  gap: 1.25rem;             /* was 3.5rem */
  grid-template-columns: auto 1fr;
  align-items: start;
}
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-photo-frame {
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
  }
}


/* ============================================================
   SERVICE FEATURE IMAGE — breaks up wall-of-text on service pages
   ============================================================ */
.service-feature-image {
  margin: 2.5rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(0,200,255,0.15);
  aspect-ratio: 16 / 9;
  box-shadow:
    0 0 40px rgba(0,200,255,0.08),
    inset 0 0 60px rgba(0,200,255,0.04);
  position: relative;
}
.service-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(1.05);
}
.service-feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,8,8,0.4));
  pointer-events: none;
}

.services-feature-banner {
  margin: 4rem auto;
  max-width: 1280px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(0,200,255,0.15);
  aspect-ratio: 21 / 9;
  box-shadow: 0 0 60px rgba(0,200,255,0.10);
}
.services-feature-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ============================================================
   HEADER FONT WEIGHT — semi-bold (600)
   Was 700 (bold). Albert Sans has the full weight range so 600
   renders cleanly. Alumni Sans Pinstripe is a single-weight
   display font; on it, 600 falls back to its native weight.
   ============================================================ */
h1, h2, h3, h4, h5, h6,
.hero-h1, .section-h2, .why-mike-eyebrow {
  font-weight: 600;
}


/* ============================================================
   BTN-PRIMARY — toned down from electric #00C8FF to a calmer
   steel cyan that matches the feature-tile icon color (#1E90D4).
   Brand accent variable stays unchanged for all other usage.
   ============================================================ */
.btn-primary {
  background: #1E90D4;
  color: #000;
  box-shadow:
    0 0 20px rgba(30, 144, 212, 0.35),
    0 0 60px rgba(30, 144, 212, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  background: #fff;
  color: #1E90D4;
  box-shadow:
    0 0 35px rgba(30, 144, 212, 0.55),
    0 0 80px rgba(30, 144, 212, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}


/* ============================================================
   TOPBAR FONT — darker (pure black)
   BTN-PRIMARY FONT — lighter (white instead of black)
   ============================================================ */
.topbar       { color: #000; }
.topbar-tag   { color: #000; font-weight: 700; }
.topbar-phone { color: #000; font-weight: 800; }
.topbar-phone:hover { color: var(--color-emergency); }

.btn-primary {
  color: #ffffff;
}
.btn-primary:hover {
  /* keep the inverted hover: white bg, blue text */
  color: #1E90D4;
}


/* ============================================================
   NAV ALIGNMENT — logo left, menu pushed right
   ============================================================ */
.nav-inner {
  justify-content: space-between;
}
.nav-menu {
  margin-left: auto;
}


/* ============================================================
   FONT FAMILY — keep headings Pinstripe, revert body to Inter
   ============================================================ */
:root {
  --font-heading: 'Alumni Sans Pinstripe', 'Albert Sans', Arial, sans-serif;
  --font-body:    'Inter', 'Albert Sans', Arial, sans-serif;
}

/* Topbar — force Inter for readability (was inheriting Pinstripe) */
.topbar,
.topbar-inner,
.topbar-tag,
.topbar-phone {
  font-family: 'Inter', 'Albert Sans', Arial, sans-serif;
  color: #000;
  letter-spacing: 0.04em;
}
.topbar-tag   { font-weight: 700; color: #000; }
.topbar-phone { font-weight: 800; color: #000; }
.topbar-phone:hover { color: var(--color-emergency); }

/* Nav menu items — larger */
.nav-menu > li > a,
.nav-menu > li > button {
  font-size: 1rem;        /* up from 0.82rem */
  letter-spacing: 0.10em;
  padding: 0.7rem 0.85rem;
}

/* Home hero color logo — smaller */
.hero-logo-col img {
  max-width: 300px;       /* down from 380px */
}
@media (max-width: 900px) {
  .hero-logo-col img { max-width: 200px; }
}


/* ============================================================
   SERVICE PAGES — intro text side-by-side with feature image
   Desktop: 2-col grid. Mobile: stack with image below text.
   ============================================================ */
.service-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.service-intro-text { font-size: 1.05rem; }
.service-intro-text p + p { margin-top: 1rem; }

.service-intro-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(0,200,255,0.15);
  aspect-ratio: 16 / 9;
  box-shadow:
    0 0 40px rgba(0,200,255,0.08),
    inset 0 0 60px rgba(0,200,255,0.04);
  position: relative;
}
.service-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(1.05);
}

/* Mobile: stack vertically, image below text */
@media (max-width: 768px) {
  .service-intro-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-intro-image  { order: 2; }
  .service-intro-text   { order: 1; }
}

/* Hide the legacy full-width .service-feature-image when an intro-split is present */
.service-detail-inner:has(.service-intro-split) .service-feature-image,
.service-detail-inner:has(.service-intro-split) > .fade-in-up > .service-feature-image {
  display: none;
}


/* ============================================================
   TYPOGRAPHY FIX — Pinstripe is a DISPLAY font. It only reads
   well at large sizes (h1/h2). At small sizes the pinstripe
   lines through each letter make it look hollow / broken.
   So: keep Pinstripe on big display headings only; switch every
   small label, card title, nav item, and footer link to Inter
   with bold weight for legibility + weight contrast.
   ============================================================ */

/* Small labels + card titles + nav + footer → Inter Bold */
.eyebrow,
.section-label,
.pillar h3,
.service-card h3,
.blog-card h3,
.blog-date,
.read-more,
.highlight-card h3,
.cert-item,
.ethics-item strong,
.contact-info-item strong,
.testimonial-author strong,
.stat-label,
.sca-feature h3,
.footer-col h4,
.footer-col ul li a,
.footer-tagline,
.tab-btn,
.why-mike-item strong,
.nav-menu > li > a,
.nav-menu > li > button,
.nav-dropdown a,
.trust-item span:last-child,
.feature-tile span {
  font-family: 'Inter', 'Albert Sans', Arial, sans-serif;
  font-weight: 700;
}

/* Big display headings KEEP Pinstripe (this is where it shines) */
h1, h2,
.hero-h1,
.section-h2 {
  font-family: 'Alumni Sans Pinstripe', 'Albert Sans', Arial, sans-serif;
}

/* "Why Mike?" card — specific sizing bumps the user asked for */
.why-mike-item strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.why-mike-eyebrow {
  /* keep the Share Tech Mono terminal accent, just larger + brighter */
  font-family: 'Share Tech Mono', 'Inter', Arial, monospace;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--color-accent);
}

/* Eyebrows: a touch bolder + brighter now that they're Inter */
.eyebrow {
  font-weight: 700;
  letter-spacing: 0.22em;
}


/* ============================================================
   NAV + CTA BUTTONS → Inter (was Pinstripe / hollow at this size)
   ============================================================ */
.nav-menu > li > a,
.nav-menu > li > button,
.nav-dropdown a,
.btn-primary,
.btn-secondary,
.btn-emergency,
.why-mike-cta {
  font-family: 'Inter', 'Albert Sans', Arial, sans-serif;
  font-weight: 700;
}


/* ████████████████████████████████████████████████████████████
   MASTER TYPE SYSTEM — single source of truth (overrides all above)
   Pinstripe = display headings only. Inter = everything else.
   ████████████████████████████████████████████████████████████ */

:root {
  --font-heading: 'Alumni Sans Pinstripe', 'Albert Sans', Arial, sans-serif;
  --font-body:    'Inter', 'Albert Sans', Arial, sans-serif;
}

/* ---- Base body ---- */
body { font-family: 'Inter', 'Albert Sans', Arial, sans-serif; }
p    { font-family: 'Inter', 'Albert Sans', Arial, sans-serif; font-weight: 400; }

/* ---- DISPLAY HEADINGS (Pinstripe, big only) ---- */
h1, h2, .hero-h1, .section-h2 {
  font-family: 'Alumni Sans Pinstripe', 'Albert Sans', Arial, sans-serif !important;
  font-weight: 400;
}

/* ---- ALL small headings / labels / UI → Inter ---- */
h3, h4, h5, h6,
.eyebrow, .section-label,
.nav-menu > li > a, .nav-menu > li > button, .nav-dropdown a,
.btn-primary, .btn-secondary, .btn-emergency, .why-mike-cta,
.licensed-badge, .hero-badge, .about-tag,
.emergency-bar, .emergency-bar span, .emergency-bar a, .emergency-phone,
.topbar, .topbar-tag, .topbar-phone,
.service-card h3, .blog-card h3, .blog-date, .read-more,
.pillar h3, .highlight-card h3, .cert-item, .sca-feature h3,
.ethics-item strong, .contact-info-item strong, .testimonial-author strong,
.stat-num, .stat-number, .stat-label,
.footer-col h4, .footer-col ul li a, .footer-tagline, .footer-copy,
.tab-btn, .why-mike-item strong, .why-mike-item p,
.feature-tile span, .trust-item span:last-child {
  font-family: 'Inter', 'Albert Sans', Arial, sans-serif !important;
}
/* Keep the one deliberate mono accent */
.why-mike-eyebrow {
  font-family: 'Share Tech Mono', 'Inter', monospace !important;
}

/* ════════ SIZES + WEIGHTS (deliberate, not inherited) ════════ */

/* Topbar */
.topbar-tag   { font-size: 0.82rem; font-weight: 700; color: #000; letter-spacing: 0.05em; }
.topbar-phone { font-size: 0.92rem; font-weight: 800; color: #000; }

/* Main nav — matches the CTA button treatment */
.nav-menu > li > a,
.nav-menu > li > button {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 0.7rem 0.85rem;
}
.nav-dropdown a { font-size: 0.82rem; font-weight: 500; }

/* Hero eyebrow + section eyebrows */
.eyebrow {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* CTA buttons — SMALLER than before (user: too big) */
.btn-primary,
.btn-secondary {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 0.8rem 1.75rem;
}
.btn-emergency {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.95rem 2.2rem;
}

/* Licensed badge — BIGGER than before (user: too small) */
.licensed-badge {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.3rem;
}

/* Emergency bar — BIGGER than before (user: too small) */
.emergency-bar {
  font-size: 1.02rem;
  letter-spacing: 0.06em;
}
.emergency-bar span,
.emergency-bar a { font-size: 1.02rem; font-weight: 700; }

/* Card titles */
.service-card h3, .blog-card h3,
.pillar h3, .highlight-card h3, .sca-feature h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Stat numbers stay big + bold (Inter handles the glow fine) */
.stat-num, .stat-number { font-weight: 800; }
.stat-label { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; }

/* Footer */
.footer-col h4       { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.12em; }
.footer-col ul li a  { font-size: 0.9rem; font-weight: 500; }
.footer-tagline      { font-size: 1rem; font-weight: 700; }
.footer-copy         { font-size: 0.85rem; font-weight: 400; }

/* Why Mike card */
.why-mike-eyebrow    { font-size: 0.92rem; font-weight: 400; color: var(--color-accent); }
.why-mike-item strong{ font-size: 1rem; font-weight: 700; letter-spacing: 0.03em; color: #fff; }
.why-mike-item p     { font-size: 0.92rem; font-weight: 400; }


/* ████████████████████████████████████████████████████████████
   ABOUT 2-COLUMN FEATURE SECTIONS + TAB FIX + SERVICES LIST + FORM
   ████████████████████████████████████████████████████████████ */

/* ---- About: image + text, 2-column ---- */
.about-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-feature-text { text-align: left; }
.about-feature-text .eyebrow { margin-bottom: 0.75rem; }
.about-feature-text h2 { text-align: left; margin-bottom: 1rem; }
.about-feature-text p { text-align: left; }
.about-feature-img {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(0,200,255,0.15);
  box-shadow: 0 0 40px rgba(0,200,255,0.08), inset 0 0 60px rgba(0,200,255,0.04);
  aspect-ratio: 4 / 3;
}
.about-feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* certifications grid sits inside the text column now */
.about-feature .cert-grid { grid-template-columns: 1fr 1fr; margin-top: 1.5rem; max-width: none; }
@media (max-width: 768px) {
  .about-feature { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-feature--img-right .about-feature-img { order: 2; }
  .about-feature--img-right .about-feature-text { order: 1; }
  .about-feature .cert-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- TABS: make them obviously clickable tabs ---- */
.tab-list {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: none;
  margin-bottom: 2rem;
}
.tab-btn {
  font-family: 'Inter','Albert Sans',Arial,sans-serif !important;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.85rem 1.75rem;
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.tab-btn::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-text-dim);
  transition: all 0.2s ease;
}
.tab-btn:hover {
  color: #fff;
  border-color: rgba(0,200,255,0.45);
  background: rgba(0,200,255,0.06);
}
.tab-btn.active {
  color: #000;
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(0,200,255,0.35);
}
.tab-btn.active::before { background: #000; box-shadow: 0 0 6px rgba(0,0,0,0.4); }

/* ---- Services full list: bigger, Inter, readable ---- */
.full-services-grid li {
  font-family: 'Inter','Albert Sans',Arial,sans-serif !important;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 1rem 1.1rem;
}

/* ---- Contact form fields: medium-grey visible border ---- */
.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.02);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.contact-form input:hover,
.contact-form textarea:hover { border-color: rgba(255,255,255,0.42); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0,200,255,0.18);
}
