/* Zero Person — Formiqa-inspired SaaS showcase */
:root {
  --bg: #f6f7fb;
  --bg-white: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --accent: #6366f1;
  --accent-dark: #4f46e5;
  --accent-soft: #eef2ff;
  --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  --pharma: #0d9488;
  --pharma-soft: #ccfbf1;
  --garage: #ea580c;
  --garage-soft: #ffedd5;
  --food: #65a30d;
  --food-soft: #ecfccb;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 48px rgba(99, 102, 241, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font);
  --header-h: 72px;
  --contact-bar-h: 52px;
  --top-offset: calc(var(--header-h) + var(--contact-bar-h));
  --container: min(1140px, 100% - 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  padding: 0.5rem 1rem; background: var(--accent); color: #fff;
  border-radius: 8px; text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.container { width: var(--container); margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1.25rem; font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600; border-radius: 10px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45); }
.btn-secondary {
  background: var(--bg-white); color: var(--text);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.btn-invert { background: #fff; color: var(--accent-dark); box-shadow: var(--shadow); }
.btn-lg { padding: 0.9rem 1.75rem; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-full { width: 100%; }
.btn-invert-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}
.btn-invert-outline:hover { background: rgba(255, 255, 255, 0.12); }

.btn-voice {
  display: inline-flex; width: 100%; margin-top: 1rem;
  padding: 0.85rem 1.25rem; font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700; border-radius: 10px;
  text-decoration: none; text-align: center;
  color: #fff; border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-voice:hover { transform: translateY(-1px); }
.btn-voice--pharma { background: var(--pharma); box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35); }
.btn-voice--garage { background: var(--garage); box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35); }
.btn-voice--food { background: var(--food); box-shadow: 0 4px 14px rgba(101, 163, 13, 0.35); }
.voice-hint {
  margin: 0.65rem 0 0; font-size: 0.8rem; color: var(--text-muted); line-height: 1.4;
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(246, 247, 251, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--text); text-decoration: none;
}
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a:not(.btn) {
  color: var(--text-muted); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; transition: color 0.2s;
}
.nav a:not(.btn):hover { color: var(--text); }
.nav-phone {
  font-weight: 700 !important; color: var(--accent-dark) !important;
  white-space: nowrap;
}
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 1px;
}
.mobile-nav {
  display: none; flex-direction: column; padding: 1rem 1.25rem 1.5rem;
  gap: 0.75rem; background: var(--bg-white); border-top: 1px solid var(--border);
}
.mobile-nav a { color: var(--text); text-decoration: none; font-weight: 500; padding: 0.35rem 0; }
.mobile-nav.is-open { display: flex; }
@media (max-width: 860px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .nav-phone { display: none; }
}

/* Contact bar */
.contact-bar {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 99;
  background: var(--text); color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-bar-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 0.75rem 1.5rem;
  min-height: var(--contact-bar-h); padding: 0.5rem 0;
}
.contact-bar-lead { margin: 0; font-size: 0.85rem; opacity: 0.9; }
.contact-bar-links {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
}
.contact-bar-email {
  font-size: 1rem; font-weight: 700; color: #a5b4fc;
  text-decoration: none;
}
.contact-bar-email:hover { color: #fff; text-decoration: underline; }
.contact-bar-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 1.05rem; font-weight: 800; color: #fff; text-decoration: none;
}
.contact-bar-phone:hover { color: #c7d2fe; }
.contact-bar-phone-icon { flex-shrink: 0; }

/* Hero */
.hero {
  position: relative; padding: calc(var(--top-offset) + 3rem) 0 4rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: -20% 0 auto;
  height: 70%; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(99, 102, 241, 0.18), transparent),
    radial-gradient(ellipse 50% 40% at 80% 10%, rgba(168, 85, 247, 0.12), transparent);
}
.hero-grid {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { order: -1; }
}
.pill {
  display: inline-block; padding: 0.35rem 0.85rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--accent-dark);
  background: var(--accent-soft); border-radius: 100px; margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.03em;
  margin: 0 0 1.25rem; max-width: 22ch;
}
.hero-lead {
  font-size: 1.1rem; color: var(--text-muted); max-width: 46ch;
  margin: 0 0 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-metrics {
  display: flex; flex-wrap: wrap; gap: 2rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.metric-value {
  display: block; font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 800; color: var(--text);
}
.metric-label { font-size: 0.85rem; color: var(--text-muted); }

.hero-card {
  background: var(--bg-white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  overflow: hidden;
}
.hero-card-header {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.25rem; font-size: 0.8rem; font-weight: 600;
  color: var(--text-muted); border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.hero-card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.voice-line {
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.voice-avatar {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
}
.voice-line--ai .voice-avatar { background: var(--accent-soft); color: var(--accent-dark); }
.voice-line--user .voice-avatar { background: #f1f5f9; color: var(--text-muted); }
.voice-line p {
  margin: 0; font-size: 0.9rem; padding: 0.75rem 1rem;
  border-radius: 12px; background: var(--bg); border: 1px solid var(--border);
}
.voice-line--user p { background: var(--accent-soft); border-color: transparent; }
.hero-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.25rem; font-size: 0.75rem; color: var(--text-muted);
  border-top: 1px solid var(--border); background: var(--bg);
}
.badge-secure {
  padding: 0.2rem 0.5rem; background: #dcfce7; color: #166534;
  border-radius: 6px; font-weight: 600;
}

/* Trust strip */
.trust {
  padding: 2rem 0; border-block: 1px solid var(--border);
  background: var(--bg-white);
}
.trust-label {
  text-align: center; font-size: 0.85rem; color: var(--text-muted);
  margin: 0 0 1rem;
}
.trust-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  list-style: none; padding: 0; margin: 0;
}
.trust-tags li {
  padding: 0.4rem 1rem; font-size: 0.85rem; font-weight: 500;
  color: var(--text-muted); background: var(--bg);
  border: 1px solid var(--border); border-radius: 100px;
}

/* Section heads */
.section-head { margin-bottom: 2.5rem; max-width: 36rem; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-eyebrow {
  display: block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 0.75rem;
}
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800; letter-spacing: -0.02em; margin: 0 0 0.75rem; line-height: 1.2;
}
.section-head p { margin: 0; color: var(--text-muted); font-size: 1.05rem; }

/* About Zero Person */
.about-zp {
  padding: 5rem 0;
  background: var(--bg-white);
  border-block: 1px solid var(--border);
}
.about-zp-grid {
  display: grid;
  gap: 2rem;
}
.about-zp-copy p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 52rem;
}
.about-zp-copy p strong { color: var(--text); }
.about-zp-vision {
  margin: 1.5rem 0;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(168, 85, 247, 0.06) 100%);
  border: 1px solid rgba(99, 102, 241, 0.15);
}
.about-zp-vision h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}
.about-zp-vision p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}
/* Readable long-form copy (Tailwind-equivalent scale) */
.prose-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}
@media (min-width: 768px) {
  .prose-body { font-size: 1.125rem; }
}
.prose-body p { margin: 0 0 1.25rem; }
.prose-body p:last-child { margin-bottom: 0; }
.prose-body--on-dark { color: rgba(248, 250, 252, 0.88); }
.prose-body--on-dark strong { color: #fff; }

.section-lead {
  margin: 0.75rem auto 0;
  max-width: 42rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Sector deep-dive matrix */
.sectors-intro {
  padding: 4rem 0 1rem;
  background: var(--bg);
}
.sector-block {
  padding: 4rem 0;
  border-block: 1px solid var(--border);
}
.sector-block--food { background: var(--bg-white); }
.sector-block--garage { background: var(--bg); }
.sector-block--pharma { background: var(--bg-white); }
.sector-block-inner { max-width: 52rem; }
.sector-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.sector-tag--food { background: var(--food-soft); color: var(--food); }
.sector-tag--garage { background: var(--garage-soft); color: var(--garage); }
.sector-tag--pharma { background: var(--pharma-soft); color: var(--pharma); }
.sector-block-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.sector-challenge {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--text);
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
}
.sector-block--food .sector-challenge { border-left-color: var(--food); }
.sector-block--garage .sector-challenge { border-left-color: var(--garage); }
.sector-block--pharma .sector-challenge { border-left-color: var(--pharma); }
.sector-prose { margin-bottom: 2rem; }
.sector-actions { max-width: 28rem; }
.sector-actions .btn-voice { margin-top: 0; }

/* UK engineering / global infrastructure */
.sovereignty {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 55%, #312e81 100%);
  color: #e2e8f0;
}
.sovereignty-inner { max-width: 52rem; }
.section-eyebrow--light { color: #a5b4fc; }
.sovereignty h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1.25rem;
  line-height: 1.2;
}
.sovereignty-prose { margin: 0; }
.sovereignty-link {
  color: #c7d2fe;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sovereignty-link:hover { color: #fff; }
.hero-lead a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero-lead a:hover { color: var(--accent); }
.about-zp-copy a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.about-zp-copy a:hover { color: var(--accent); }
.faq-item a { color: var(--accent-dark); }

.zp-end-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100001;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.zp-end-call:hover { transform: translateY(-1px); }

/* Solutions bento */
.solutions { padding: 5rem 0; }
.bento {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.bento-card--large { grid-column: 1 / -1; }
@media (max-width: 768px) {
  .bento { grid-template-columns: 1fr; }
}
.bento-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}
.bento-card:hover {
  box-shadow: var(--shadow); transform: translateY(-2px);
}
.bento-top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.bento-icon { font-size: 1.5rem; }
.bento-tag {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.3rem 0.65rem; border-radius: 6px;
}
.bento-card--pharma .bento-tag { background: var(--pharma-soft); color: var(--pharma); }
.bento-card--garage .bento-tag { background: var(--garage-soft); color: var(--garage); }
.bento-card--food .bento-tag { background: var(--food-soft); color: var(--food); }
.bento-card h3 {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  margin: 0 0 0.75rem; letter-spacing: -0.02em;
}
.bento-card > p { color: var(--text-muted); margin: 0 0 1rem; font-size: 0.95rem; }
.bento-list {
  margin: 0 0 1.25rem; padding: 0; list-style: none;
}
.bento-list li {
  position: relative; padding-left: 1.25rem; margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.bento-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--pharma);
}
.bento-card--garage .bento-list li::before { background: var(--garage); }
.bento-card--food .bento-list li::before { background: var(--food); }
.bento-demo {
  background: var(--bg); border-radius: var(--radius);
  padding: 1rem 1.15rem; margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}
.demo-chip {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); margin: 0 0 0.5rem;
}
.bento-demo blockquote {
  margin: 0; font-size: 0.9rem; font-style: italic; color: var(--text);
  line-height: 1.5;
}
.bento-link {
  font-size: 0.9rem; font-weight: 600; color: var(--accent);
  text-decoration: none;
}
.bento-link:hover { color: var(--accent-dark); }

/* Steps */
.steps {
  padding: 5rem 0; background: var(--bg-white);
  border-block: 1px solid var(--border);
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  list-style: none; padding: 0; margin: 0;
}
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  padding: 1.75rem; border-radius: var(--radius-lg);
  background: var(--bg); border: 1px solid var(--border);
}
.step-num {
  display: block; font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.75rem; line-height: 1;
}
.step-card h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  margin: 0 0 0.5rem;
}
.step-card p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

/* Platform */
.platform { padding: 5rem 0; }
.platform-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
@media (max-width: 900px) { .platform-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .platform-grid { grid-template-columns: 1fr; } }
.platform-card {
  padding: 1.5rem; background: var(--bg-white);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.platform-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin: 0 0 0.5rem;
}
.platform-card p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }

/* CTA band */
.cta-band {
  padding: 4rem 0;
  background: var(--gradient); color: #fff;
}
.cta-band-inner {
  text-align: center; max-width: 36rem; margin-inline: auto;
}
.cta-band h2 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; margin: 0 0 0.75rem;
}
.cta-band p { margin: 0 0 1.75rem; opacity: 0.9; font-size: 1.05rem; }
.cta-band-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}

/* FAQ */
.faq { padding: 5rem 0; }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start;
}
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0 1.25rem;
}
.faq-item summary {
  padding: 1.1rem 0; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.25rem; color: var(--accent); font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 0 0 1.1rem; font-size: 0.92rem; color: var(--text-muted);
  padding-top: 0; border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}
.faq-item a { color: var(--accent); }

/* Contact */
.contact {
  padding: 5rem 0; background: var(--bg-white);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-copy h2 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  margin: 0 0 0.75rem; letter-spacing: -0.02em;
}
.contact-copy > p { color: var(--text-muted); margin: 0 0 1.5rem; }
.contact-hero-card {
  background: var(--gradient); color: #fff;
  border-radius: var(--radius-lg); padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem; box-shadow: var(--shadow-lg);
}
.contact-hero-email {
  display: block; font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 800; color: #fff; text-decoration: none; margin-bottom: 0.75rem;
  word-break: break-all;
}
.contact-hero-email:hover { text-decoration: underline; }
.contact-hero-phone {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem); font-weight: 800;
  color: #fff; text-decoration: none; letter-spacing: 0.02em;
}
.contact-hero-phone:hover { opacity: 0.9; }
.contact-hero-note { margin: 0.75rem 0 0; font-size: 0.9rem; opacity: 0.92; }
.contact-address {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0.92;
}
.contact-perks {
  list-style: none; padding: 0; margin: 0;
}
.contact-perks li {
  position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem;
  font-size: 0.95rem; color: var(--text);
}
.contact-perks li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.contact-form {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1.75rem; background: var(--bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.contact-form label { display: flex; flex-direction: column; gap: 0.35rem; }
.contact-form label span {
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
}
.contact-form input,
.contact-form select {
  padding: 0.85rem 1rem; font-family: inherit; font-size: 1rem;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--bg-white); color: var(--text);
}
.contact-form input:focus,
.contact-form select:focus {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

/* Footer */
.site-footer {
  padding: 3rem 0 1.5rem; background: var(--text); color: #94a3b8;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo { color: #fff; margin-bottom: 0.75rem; }
.footer-brand p { margin: 0; font-size: 0.9rem; max-width: 24ch; }
.footer-address {
  margin: 1rem 0 0;
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}
.footer-col h4 {
  color: #fff; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.08em; margin: 0 0 1rem;
}
.footer-col a {
  display: block; color: #94a3b8; text-decoration: none;
  font-size: 0.9rem; margin-bottom: 0.5rem;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 1.5rem; font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1; transform: translateY(0);
}

/* Vapi voice demo widget */
.zp-voice-status {
  position: fixed;
  left: 50%;
  bottom: 88px;
  transform: translateX(-50%);
  z-index: 100000;
  max-width: min(420px, calc(100vw - 2rem));
  margin: 0;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.92);
  color: #f8fafc;
  font-size: 0.85rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}
.zp-voice-status--error {
  background: rgba(185, 28, 28, 0.95);
}
button.btn-voice { cursor: pointer; font-family: var(--font-display); }
button.btn-voice:disabled { opacity: 0.75; cursor: wait; }
/* Legacy Vapi widget button — not used; hide if injected */
.vapi-btn { display: none !important; }
