/* ═══════════ EVERYTHING ELECTRONIC LLC · Clean & Modern ═══════════
   Tech palette — deep slate canvas, electric-blue accent, amber CTA
   ─────────────────────────────────────────────────────────────────── */

:root {
  --ink: #0B1220;            /* deep tech slate */
  --ink-2: #060A14;
  --night: #0F172A;
  --steel: #1E293B;
  --line: #E5E9EE;
  --line-soft: #F1F4F8;
  --line-dark: rgba(255,255,255,0.10);
  --surface: #F8FAFC;
  --surface-2: #EEF2F7;
  --white: #FFFFFF;
  --text: #0B1220;
  --text-soft: #475467;
  --muted: #6B7280;
  --muted-soft: #94A3B8;

  --primary: #0EA5E9;           /* electric blue — tech accent */
  --primary-bright: #38BDF8;
  --primary-deep: #0369A1;
  --primary-soft: rgba(14,165,233,0.10);
  --primary-glow: rgba(14,165,233,0.30);

  --amber: #F59E0B;             /* warm CTA */
  --amber-bright: #FBBF24;
  --amber-soft: rgba(245,158,11,0.14);

  --success: #16A34A;
  --danger: #DC2626;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
@supports not (overflow-x: clip) {
  body { overflow-x: visible; }
  html { overflow-x: hidden; }
}
::selection { background: var(--primary); color: var(--white); }

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
}
.serif {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-tight { max-width: 980px; margin: 0 auto; padding: 0 24px; }

/* ─── Brand mark ─── */
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-icon {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 60%, var(--ink) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: -0.02em;
  box-shadow: 0 6px 18px rgba(14,165,233,0.32);
  flex-shrink: 0;
}
.brand-icon::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}
.brand-text {
  display: flex; flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.025em;
  color: var(--text);
}
.brand-name .accent { color: var(--primary); }
.brand-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ═══ Announce strip ═══ */
.announce {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 9px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.announce-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.announce-left { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.announce a { color: rgba(255,255,255,0.78); transition: color 0.2s; }
.announce a:hover { color: var(--primary-bright); }
.announce .pulse {
  display: inline-block;
  width: 6px; height: 6px;
  background: #22C55E;
  border-radius: 50%;
  margin-right: 7px; vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.7);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.announce-right { color: var(--primary-bright); font-weight: 600; }

/* ═══ NAV ═══ */
.nav-wrap {
  background: var(--white);
  position: sticky; top: 0; z-index: 80;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--text-soft);
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-call {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--text);
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid rgba(14,165,233,0.22);
  transition: all 0.2s;
}
.nav-call:hover { background: rgba(14,165,233,0.18); border-color: var(--primary); }
.nav-call svg { width: 15px; height: 15px; color: var(--primary); }
.burger {
  display: none;
  background: none; border: 1px solid var(--line);
  width: 40px; height: 40px;
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
}
.burger svg { width: 22px; height: 22px; }

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  padding: 13px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.btn-xl { padding: 16px 28px; font-size: 15.5px; border-radius: 14px; }
.btn-primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(245,158,11,0.32);
}
.btn-primary:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(245,158,11,0.42);
}
.btn-secondary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(14,165,233,0.32);
}
.btn-secondary:hover {
  background: var(--primary-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(14,165,233,0.42);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.24);
  color: var(--white);
  backdrop-filter: blur(14px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.42);
}
.btn-ghost-dark {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-ghost-dark:hover { border-color: var(--text); background: var(--surface-2); }
.btn svg { width: 16px; height: 16px; }

/* ═══ Eyebrow chip ═══ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-deep);
  padding: 6px 13px;
  background: var(--primary-soft);
  border: 1px solid rgba(14,165,233,0.20);
  border-radius: 999px;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
}

/* ═══ Sections ═══ */
.sec {
  padding: 88px 0;
  position: relative;
}
.sec-white { background: var(--white); }
.sec-surface { background: var(--surface); }
.sec-dark {
  background: var(--ink);
  color: var(--white);
}
.sec-dark h1, .sec-dark h2, .sec-dark h3, .sec-dark h4 { color: var(--white); }
.sec-dark p { color: rgba(255,255,255,0.78); }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.sec-head h2 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.sec-dark .sec-head h2 em { color: var(--primary-bright); }
.sec-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
}
.sec-dark .sec-head p { color: rgba(255,255,255,0.74); }

/* ═══ Page hero (inner pages) ═══ */
.page-hero {
  background:
    radial-gradient(ellipse 60% 70% at 50% 30%, rgba(14,165,233,0.12) 0%, transparent 70%),
    linear-gradient(180deg, #0B1220 0%, #060A14 100%);
  color: var(--white);
  padding: 80px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 65% 75% at 50% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 65% 75% at 50% 50%, #000 0%, transparent 75%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto; padding: 0 24px;
}
.breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 18px;
  display: inline-flex; gap: 10px; align-items: center;
}
.breadcrumb a { color: var(--primary-bright); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.30); }
.page-hero h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--white);
  margin: 0 0 16px;
}
.page-hero h1 .accent { color: var(--primary-bright); }
.page-hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .page-hero { padding: 56px 0 64px; }
  .page-hero h1 { font-size: clamp(30px, 8.4vw, 44px); }
  .page-hero-sub { font-size: 14.5px; }
}

/* ═══ Mobile drawer ═══ */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 320px; max-width: 88vw;
  background: var(--white);
  z-index: 200;
  padding: 88px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -16px 0 48px rgba(0,0,0,0.28);
  display: flex; flex-direction: column; gap: 6px;
  border-left: 1px solid var(--line);
}
.drawer.open { transform: translateX(0); }
.drawer a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
}
.drawer a.drawer-phone {
  color: var(--primary);
  margin-top: 10px;
  border: 0;
}
.drawer .drawer-cta {
  display: block;
  margin-top: 16px;
  padding: 14px;
  background: var(--amber);
  color: var(--ink);
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  border: 0;
}
.drawer-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 0;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

/* ═══ Footer ═══ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 32px;
  border-top: 4px solid var(--primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-tag { color: rgba(255,255,255,0.42); }
.footer p.footer-about {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  max-width: 320px;
}
.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-bright);
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; gap: 11px; align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--primary-bright);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 3px;
}
.footer-contact-item .v {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.4;
}
.footer-contact-item a:hover .v { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 12px;
}

/* ═══ Mobile sticky CTA ═══ */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  gap: 0;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 12px max(10px, env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.32);
}
.mobile-sticky-cta.show { transform: translateY(0); }
.mcta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 12px;
  text-decoration: none;
  margin: 0 4px;
  white-space: nowrap;
}
.mcta-btn svg { width: 16px; height: 16px; }
.mcta-call {
  background: var(--amber);
  color: var(--ink);
}
.mcta-quote {
  background: var(--primary);
  color: var(--white);
}

/* ═══ Reveal animation ═══ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.show { opacity: 1; transform: translateY(0); }

/* ═══ MOBILE ═══ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .nav-call { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer p.footer-about { max-width: 100%; }
  .sec { padding: 64px 0; }
  .sec-head { margin-bottom: 36px; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
}
@media (max-width: 580px) {
  .announce { padding: 7px 0; font-size: 9.5px; letter-spacing: 1.1px; }
  .announce-left { gap: 12px; flex-wrap: nowrap; overflow: hidden; }
  .announce-left a[href^="mailto"] { display: none; }
  .announce-right { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .sec { padding: 48px 0; }
  .sec-head h2 { font-size: 28px; }
  .container { padding: 0 18px; }
}

/* === FACEBOOK INTEGRATION === */
.nav-fb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(24, 119, 242, 0.10);
  border: 1px solid rgba(24, 119, 242, 0.28);
  color: #1877F2;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.nav-fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
  transform: translateY(-1px);
}
.nav-fb svg { width: 16px; height: 16px; }

.drawer-fb {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  background: rgba(24, 119, 242, 0.12);
  border: 1px solid rgba(24, 119, 242, 0.30);
  color: #1877F2 !important;
  padding: 14px 16px !important;
  border-radius: 10px;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-top: 6px;
}
.drawer-fb svg { width: 18px; height: 18px; flex-shrink: 0; }

/* === FB BAND (between hero + reviews) === */
.fb-band {
  background: var(--bg);
  padding: 28px 0 12px;
  position: relative;
}
.fb-band-inner { display: flex; justify-content: center; }
.fb-band-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px 14px 16px;
  max-width: 720px;
  width: 100%;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.14) 0%, rgba(24, 119, 242, 0.06) 100%);
  border: 1px solid rgba(24, 119, 242, 0.32);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s, border-color 0.22s, background 0.22s, box-shadow 0.22s;
  box-shadow: 0 14px 36px -18px rgba(24, 119, 242, 0.4);
}
.fb-band-link:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 119, 242, 0.62);
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.20) 0%, rgba(24, 119, 242, 0.10) 100%);
  box-shadow: 0 22px 50px -16px rgba(24, 119, 242, 0.55);
}
.fb-band-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #1877F2;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 22px -6px rgba(24, 119, 242, 0.55);
}
.fb-band-icon svg { width: 28px; height: 28px; }
.fb-band-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.fb-band-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #1877F2;
}
.fb-band-title {
  font-family: var(--font-display, 'Space Grotesk'), sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--text);
  line-height: 1.2;
}
.fb-band-sub {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-soft, rgba(255,255,255,0.66));
  margin-top: 2px;
}
.fb-band-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1877F2;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 10px 16px;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 0.18s;
}
.fb-band-cta svg { width: 14px; height: 14px; }
.fb-band-link:hover .fb-band-cta { background: #1466D5; }

@media (max-width: 720px) {
  .nav-fb { width: 36px; height: 36px; }
  .nav-fb svg { width: 15px; height: 15px; }
  .fb-band { padding: 22px 0 6px; }
  .fb-band-link {
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
  }
  .fb-band-text { flex: 1 1 calc(100% - 66px); }
  .fb-band-icon { width: 46px; height: 46px; }
  .fb-band-icon svg { width: 24px; height: 24px; }
  .fb-band-title { font-size: 15.5px; }
  .fb-band-sub { font-size: 12.5px; }
  .fb-band-cta {
    flex: 1 1 100%;
    justify-content: center;
    padding: 11px 16px;
    font-size: 13px;
  }
}
