/* Pro2Call Communication — design system
   Palette: ink navy, signal cyan, off-hook orange
   Type: Space Grotesk (display), IBM Plex Sans (body), IBM Plex Mono (labels) */

:root {
  --ink: #04070C;
  --panel: #0A121D;
  --panel-2: #0D1B2B;
  --line: #142433;
  --cyan: #00D9FF;
  --cyan-dim: #0A5D70;
  --orange: #00D9FF;
  --paper: #F4F7FA;
  --white: #FFFFFF;
  --slate: #93A9BD;
  --slate-dark: #5B7288;
  --max: 1140px;
  --radius: 14px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 40% at 50% -5%, rgba(0,217,255,.08), transparent),
    linear-gradient(rgba(0,217,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,217,255,.025) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 42px 42px, 42px 42px, auto;
  background-attachment: fixed;
  color: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(4, 7, 12, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
  color: var(--white); text-decoration: none; letter-spacing: -.02em;
  display: flex; align-items: center; gap: 10px;
}
.logo .mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--cyan), #1490c9);
  display: grid; place-items: center; color: var(--ink);
  font-size: 1.05rem;
}
.logo em { color: var(--cyan); font-style: normal; }
nav.main-nav { display: flex; gap: 28px; align-items: center; }
nav.main-nav a {
  color: var(--slate); text-decoration: none; font-size: .95rem; font-weight: 500;
  transition: color .15s;
}
nav.main-nav a:hover, nav.main-nav a[aria-current="page"] { color: var(--white); }
.btn {
  display: inline-block; padding: 13px 24px; border-radius: 999px;
  font-family: var(--font-mono); font-weight: 500; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border: 0; cursor: pointer; transition: transform .12s, box-shadow .12s;
}
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px solid var(--cyan); outline-offset: 3px;
}
.btn-orange { background: var(--orange); color: #04121C; box-shadow: 0 0 18px rgba(0,217,255,.22); }
.btn-orange:hover { transform: translateY(-1px); box-shadow: 0 0 26px rgba(0,217,255,.45); }
.btn-ghost { background: transparent; color: var(--cyan); border: 1px solid var(--cyan-dim); }
.btn-ghost:hover { border-color: var(--cyan); }
.header-phone { font-family: var(--font-mono); font-size: .9rem; color: var(--cyan); text-decoration: none; }
.header-phone:hover { text-decoration: underline; }

/* ---------- Eyebrow labels ---------- */
.eyebrow {
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cyan); display: block; margin-bottom: 14px;
}

/* ---------- Hero ---------- */
.hero { padding: 96px 0 72px; position: relative; overflow: hidden; }
.hero h1 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.03em;
  font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.05; color: var(--white);
  max-width: 14ch;
}
.hero h1 .accent { color: var(--cyan); }
.hero p.lede { max-width: 56ch; margin-top: 22px; color: var(--slate); font-size: 1.15rem; }
.hero .cta-row { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .assess-note { font-family: var(--font-mono); font-size: .8rem; color: var(--slate-dark); }

/* Waveform — signature motion */
.waveform { display: flex; gap: 5px; align-items: center; height: 54px; margin-top: 48px; }
.waveform span {
  width: 5px; border-radius: 3px; background: var(--cyan); opacity: .85;
  animation: pulse 1.3s ease-in-out infinite;
  height: 30%;
}
.waveform span:nth-child(4n)   { background: #7FEBFF; }
.waveform span:nth-child(2n)   { animation-duration: 1.7s; }
.waveform span:nth-child(3n)   { animation-duration: .9s; animation-delay: .2s; }
.waveform span:nth-child(5n)   { animation-delay: .45s; }
@keyframes pulse {
  0%, 100% { height: 22%; }
  50% { height: 100%; }
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  letter-spacing: -.02em; color: var(--white); line-height: 1.15;
}
.section-head p { color: var(--slate); margin-top: 14px; }

/* ---------- Dial-pad services grid (signature) ---------- */
.dialpad {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.key {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 24px; position: relative; transition: transform .15s, border-color .15s;
}
.key:hover { transform: translateY(-3px); border-color: var(--cyan-dim); }
.key .digit {
  font-family: var(--font-mono); font-size: .8rem; color: var(--slate-dark);
  position: absolute; top: 18px; right: 20px;
}
.key .digit b { color: var(--cyan); font-weight: 500; }
.key h3 {
  font-family: var(--font-display); font-size: 1.15rem; color: var(--white);
  margin-bottom: 8px; letter-spacing: -.01em; padding-right: 42px;
}
.key p { font-size: .93rem; color: var(--slate); }

/* ---------- Brands strip ---------- */
.brands { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 40px 0; background: var(--panel); }
.brands .wrap { display: flex; flex-wrap: wrap; gap: 16px 40px; align-items: baseline; justify-content: center; }
.brands .label { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-dark); width: 100%; text-align: center; margin-bottom: 6px; }
.brands span.brand { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--slate); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .panel-card {
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px;
}
.checklist { list-style: none; margin-top: 18px; }
.checklist li { padding-left: 30px; position: relative; margin-bottom: 13px; color: var(--slate); }
.checklist li::before {
  content: "▸"; position: absolute; left: 0; color: var(--orange); font-weight: 700;
}
.checklist li b { color: var(--paper); font-weight: 600; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
}
.quote p { font-size: .95rem; color: var(--paper); }
.quote footer { margin-top: 16px; font-family: var(--font-mono); font-size: .78rem; color: var(--cyan); }

/* ---------- CTA band ---------- */
.cta-band {
  background: radial-gradient(ellipse at 50% -20%, rgba(0,217,255,.14), transparent 60%), #060B12;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--white); letter-spacing: -.02em; }
.cta-band p { color: var(--slate); margin: 14px auto 30px; max-width: 52ch; }
.cta-band .phone-big {
  font-family: var(--font-mono); font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--cyan); text-decoration: none; display: inline-block; margin-top: 22px;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; max-width: 560px;
}
label { display: block; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); margin: 18px 0 7px; }
input[type=text], input[type=email], input[type=tel], textarea, select {
  width: 100%; padding: 13px 15px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--ink); color: var(--paper); font-family: var(--font-body); font-size: 1rem;
}
input:focus, textarea:focus, select:focus { outline: 2px solid var(--cyan); outline-offset: 1px; border-color: transparent; }
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--slate-dark); margin-top: 14px; }

/* ---------- Contact page layout ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.contact-facts { list-style: none; }
.contact-facts li { margin-bottom: 22px; }
.contact-facts .k { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-dark); display: block; margin-bottom: 4px; }
.contact-facts a { color: var(--cyan); text-decoration: none; font-size: 1.1rem; }
.contact-facts a:hover { text-decoration: underline; }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.post-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; text-decoration: none; display: block; transition: transform .15s, border-color .15s;
}
.post-card:hover { transform: translateY(-3px); border-color: var(--cyan-dim); }
.post-card .tag { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }
.post-card h3 { font-family: var(--font-display); color: var(--white); font-size: 1.15rem; margin: 10px 0 8px; letter-spacing: -.01em; }
.post-card p { color: var(--slate); font-size: .92rem; }
.post-card .soon { color: var(--slate-dark); font-family: var(--font-mono); font-size: .74rem; }

/* Article pages */
.article { background: var(--paper); color: #1d2b38; padding: 72px 0 90px; }
.article .wrap { max-width: 760px; }
.article .eyebrow { color: #0891B2; }
.article h1 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.7rem); letter-spacing: -.02em; line-height: 1.15; color: #0A1420; }
.article .meta { font-family: var(--font-mono); font-size: .8rem; color: #5B7288; margin: 16px 0 36px; }
.article h2 { font-family: var(--font-display); font-size: 1.45rem; color: #0A1420; margin: 40px 0 14px; letter-spacing: -.01em; }
.article p { margin-bottom: 18px; }
.article ul, .article ol { margin: 0 0 18px 24px; }
.article li { margin-bottom: 8px; }
.article a { color: #0E7490; }
.article .article-cta {
  margin-top: 48px; background: var(--ink); color: var(--paper); border-radius: var(--radius);
  padding: 30px; text-align: center;
}
.article .article-cta h3 { font-family: var(--font-display); color: var(--white); margin-bottom: 8px; }
.article .article-cta p { color: var(--slate); font-size: .95rem; }
.article .article-cta .btn { margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 56px 0 40px; background: var(--panel); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .8fr 1fr 1.1fr; gap: 36px; }
.site-footer h4 { font-family: var(--font-display); color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.site-footer a { color: var(--slate); text-decoration: none; display: block; margin-bottom: 9px; font-size: .92rem; }
.site-footer a:hover { color: var(--cyan); }
.site-footer p { color: var(--slate); font-size: .92rem; }
.copyright { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: .76rem; color: var(--slate-dark); }

/* ---------- Chatbot ---------- */
#p2c-chat-bubble {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--orange); border: 0; cursor: pointer;
  display: grid; place-items: center; font-size: 1.6rem;
  box-shadow: 0 0 24px rgba(0,217,255,.4);
  transition: transform .15s;
}
#p2c-chat-bubble:hover { transform: scale(1.06); }
#p2c-chat-panel {
  position: fixed; right: 22px; bottom: 96px; z-index: 91;
  width: min(360px, calc(100vw - 32px)); max-height: min(560px, calc(100vh - 130px));
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  display: none; flex-direction: column; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
#p2c-chat-panel.open { display: flex; }
.p2c-head {
  background: linear-gradient(120deg, #113247, #17323a);
  padding: 16px 18px; display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--line);
}
.p2c-head .dot { width: 10px; height: 10px; border-radius: 50%; background: #37e07c; box-shadow: 0 0 8px #37e07c; }
.p2c-head strong { font-family: var(--font-display); color: var(--white); font-size: .98rem; display: block; }
.p2c-head small { color: var(--slate); font-size: .76rem; }
.p2c-body { padding: 16px; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.p2c-msg { max-width: 85%; padding: 11px 14px; border-radius: 14px; font-size: .9rem; line-height: 1.5; }
.p2c-msg.bot { background: var(--panel-2); color: var(--paper); border-bottom-left-radius: 4px; align-self: flex-start; }
.p2c-msg.user { background: var(--cyan); color: var(--ink); border-bottom-right-radius: 4px; align-self: flex-end; }
.p2c-quick { display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-start; }
.p2c-quick button {
  background: transparent; border: 1px solid var(--cyan-dim); color: var(--cyan);
  border-radius: 999px; padding: 7px 14px; font-size: .82rem; cursor: pointer; font-family: var(--font-body);
}
.p2c-quick button:hover { border-color: var(--cyan); background: rgba(41,211,228,.08); }
.p2c-input { display: flex; border-top: 1px solid var(--line); }
.p2c-input input {
  flex: 1; border: 0; background: var(--ink); padding: 14px 16px; color: var(--paper); font-size: .92rem;
}
.p2c-input button {
  border: 0; background: var(--orange); color: #04121C; padding: 0 18px; cursor: pointer;
  font-family: var(--font-mono); font-weight: 500; font-size: .8rem;
  letter-spacing: .06em; text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .dialpad { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .dialpad { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 48px; }
  section { padding: 60px 0; }
}

/* ---------- Mobile nav: hamburger + dropdown panel ---------- */
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  background: transparent; border: 1px solid var(--line); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--cyan);
  border-radius: 2px; transition: transform .22s, opacity .18s;
  box-shadow: 0 0 6px rgba(0,217,255,.5);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  nav.main-nav {
    display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 59;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(4, 7, 12, .98); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,217,255,.2);
    padding: 10px 24px 26px;
    box-shadow: 0 30px 60px rgba(0,0,0,.6);
  }
  nav.main-nav.open { display: flex; animation: navDrop .22s ease-out; }
  @keyframes navDrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
  nav.main-nav a:not(.btn):not(.header-phone) {
    display: block; padding: 15px 4px; font-size: 1.05rem; color: var(--paper);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  nav.main-nav a[aria-current="page"] { color: var(--cyan); }
  .header-phone {
    display: block; padding: 16px 4px 6px; font-size: 1.05rem; text-align: center;
  }
  nav.main-nav .btn { margin-top: 12px; text-align: center; padding: 15px 24px; }
}

/* ---------- Trust badges ---------- */
.badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.chip {
  border: 1px solid var(--line); background: var(--panel); border-radius: 999px;
  padding: 8px 16px; font-family: var(--font-mono); font-size: .78rem; color: var(--paper);
}
.chip b { color: var(--orange); font-weight: 500; }
.logo img { max-width: 200px; }


/* ---------- Dark/techy pass: neon glow accents ---------- */
.hero h1 .accent { text-shadow: 0 0 24px rgba(0,217,255,.55); }
.waveform span { box-shadow: 0 0 8px rgba(0,217,255,.6); }
.waveform span:nth-child(4n) { box-shadow: 0 0 8px rgba(127,235,255,.6); }
.key { background: linear-gradient(180deg, rgba(0,217,255,.03), transparent 40%), var(--panel); }
.key:hover { box-shadow: 0 0 0 1px var(--cyan-dim), 0 0 24px rgba(0,217,255,.12); }
.key .digit b { text-shadow: 0 0 10px rgba(0,217,255,.7); }
.eyebrow { text-shadow: 0 0 12px rgba(0,217,255,.4); }
.chip { background: rgba(0,217,255,.04); }
.p2c-head .dot { background: #3DFF8B; box-shadow: 0 0 10px #3DFF8B; }
.header-phone { text-shadow: 0 0 10px rgba(0,217,255,.5); }
.site-header { border-bottom: 1px solid rgba(0,217,255,.15); }

#p2c-close {
  margin-left: auto; background: transparent; border: 0; cursor: pointer;
  color: var(--slate); font-size: 1.5rem; line-height: 1; padding: 2px 6px; border-radius: 8px;
}
#p2c-close:hover { color: var(--white); background: rgba(255,255,255,.08); }


/* ---------- Fix: header button text must stay dark on bright bg ---------- */
nav.main-nav a.btn-orange, nav.main-nav a.btn-orange:hover { color: #04121C; }
.btn-orange:hover { color: #04121C; }
/* Post-card tags: cyan reads better than green did */
.post-card .tag { color: var(--cyan); }


/* ---------- Chat teaser chip (mobile nudge) ---------- */
#p2c-teaser {
  position: fixed; right: 94px; bottom: 34px; z-index: 89;
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 14px; font-size: .85rem; color: var(--paper); cursor: pointer;
  display: flex; gap: 10px; align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.55);
  max-width: calc(100vw - 120px);
  animation: teaserIn .25s ease-out;
}
#p2c-teaser button {
  background: transparent; border: 0; color: var(--slate); font-size: 1.05rem;
  cursor: pointer; padding: 0; line-height: 1;
}
#p2c-teaser button:hover { color: var(--white); }
@keyframes teaserIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Small-screen chat sizing */
@media (max-width: 620px) {
  #p2c-chat-bubble { right: 16px; bottom: 16px; width: 56px; height: 56px; font-size: 1.4rem; }
  #p2c-chat-panel { right: 12px; left: 12px; width: auto; bottom: 84px; }
  #p2c-teaser { right: 84px; bottom: 26px; }
}


/* ---------- Hero photo background (homepage) ----------
   To use a real photo instead of the SVG art:
   1. Save it as assets/img/hero.jpg (1600px+ wide, compressed)
   2. Change the url() below to url("img/hero.jpg")                    */
.hero-photo { position: relative; isolation: isolate; }
.hero-photo::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: url("img/hero.jpg") center 30% / cover no-repeat; /* swap back to img/hero-bg.svg for the SVG art */
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg,
    rgba(4,7,12,.92) 0%, rgba(4,7,12,.82) 45%, rgba(4,7,12,.55) 100%);
}


/* ---------- About hero portrait ---------- */
.about-hero-grid { display: grid; grid-template-columns: 1.55fr .45fr; gap: 48px; align-items: center; }
.brent-card {
  margin: 0; justify-self: end; max-width: 240px;
  background: var(--white); border-radius: 14px; padding: 10px 10px 8px;
  border: 1px solid var(--line); box-shadow: 0 0 30px rgba(0,217,255,.14);
}
.brent-card img { width: 100%; height: auto; display: block; border-radius: 8px; }
.brent-card figcaption {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em;
  color: #33465A; text-align: center; padding-top: 8px; line-height: 1.5;
}
@media (max-width: 860px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .brent-card { justify-self: start; max-width: 200px; }
}


/* ---------- Homepage call banner: evident, not tacky ---------- */
.call-banner {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; text-decoration: none; padding: 12px 20px;
  background: linear-gradient(90deg, rgba(0,217,255,.06), rgba(0,217,255,.14), rgba(0,217,255,.06));
  background-size: 200% 100%;
  border-bottom: 1px solid rgba(0,217,255,.25);
  animation: bannerSheen 6s ease-in-out infinite;
}
.call-banner .cb-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--cyan);
  animation: dotPulse 2s ease-in-out infinite;
}
.call-banner .cb-text {
  color: var(--paper); font-size: .92rem;
}
.call-banner .cb-num {
  font-family: var(--font-mono); font-weight: 500; font-size: 1.05rem;
  color: var(--cyan); letter-spacing: .04em;
  animation: numGlow 2s ease-in-out infinite;
}
.call-banner .cb-cta {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em;
  color: var(--slate); border: 1px solid var(--line); border-radius: 999px;
  padding: 5px 12px; transition: color .15s, border-color .15s;
}
.call-banner:hover .cb-cta { color: var(--cyan); border-color: var(--cyan-dim); }
@keyframes numGlow {
  0%, 100% { text-shadow: 0 0 6px rgba(0,217,255,.3); }
  50%      { text-shadow: 0 0 18px rgba(0,217,255,.85); }
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,217,255,.5); }
  50%      { box-shadow: 0 0 0 7px rgba(0,217,255,0); }
}
@keyframes bannerSheen {
  0%, 100% { background-position: 0% 0; }
  50%      { background-position: 100% 0; }
}
@media (max-width: 620px) {
  .call-banner .cb-text { display: none; }
  .call-banner { gap: 12px; padding: 11px 14px; }
}


/* ---------- Homepage phone strip ---------- */
.phone-strip { padding: 34px 0; border-top: 1px solid var(--line); }
.phone-strip .wrap { display: flex; align-items: center; justify-content: center; gap: 34px; flex-wrap: wrap; }
.ps-item { text-decoration: none; text-align: center; transition: transform .15s; }
.ps-item:hover { transform: translateY(-3px); }
.ps-item img { width: 150px; height: auto; display: block; border-radius: 10px; background: var(--panel); border: 1px solid var(--line); }
.ps-item span { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; color: var(--slate-dark); display: block; margin-top: 8px; }
.ps-item:hover span { color: var(--cyan); }
.ps-more { font-family: var(--font-mono); font-size: .8rem; color: var(--cyan); text-decoration: none; }
.ps-more:hover { text-decoration: underline; }
@media (max-width: 620px) { .ps-item img { width: 104px; } .phone-strip .wrap { gap: 18px; } }


/* Dial-pad keys are links now */
a.key { display: block; text-decoration: none; cursor: pointer; }
a.key:hover h3 { color: var(--cyan); }
