/* ── Reset & Variables ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0B1221;
  --card:        #111827;
  --raised:      #1A2332;
  --border:      #1F2D3D;
  --accent:      #06B6D4;
  --accent-hover:#0891B2;
  --text-1:      #F1F5F9;
  --text-2:      #94A3B8;
  --text-3:      #475569;
  --green:       #22C55E;
  --red:         #EF4444;
  --amber:       #F59E0B;
  --r:           10px;
  --max-w:       1160px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--navy);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Utilities ──────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.accent { color: var(--accent); }

.badge {
  display: inline-block;
  background: rgba(6,182,212,.12);
  color: var(--accent);
  border: 1px solid rgba(6,182,212,.3);
  font-size: .72rem; font-weight: 600;
  padding: .2em .75em; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .06em;
}

.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .65rem 1.4rem; border-radius: var(--r);
  font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none;
  transition: opacity .15s, transform .1s, background .15s;
}
.btn:hover   { opacity: .88; transform: translateY(-1px); }
.btn:active  { transform: translateY(0); }
.btn-primary { background: var(--accent); color: #0B1221; }
.btn-outline { background: transparent; color: var(--text-1); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--raised); opacity: 1; }
.btn-lg { padding: .8rem 1.8rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Nav ────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,18,33,.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.nav-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 100%;
}
.nav-logo { font-size: 1.2rem; font-weight: 800; flex-shrink: 0; }
.nav-logo .lo-accent { color: var(--accent); }
.nav-links { display: flex; gap: .15rem; margin-left: auto; }
.nav-links a {
  padding: .4rem .75rem; border-radius: 6px;
  font-size: .9rem; color: var(--text-2);
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-1); background: var(--raised); }
.nav-cta { margin-left: .75rem; }
.nav-hamburger {
  display: none; margin-left: auto;
  background: none; border: none; cursor: pointer;
  color: var(--text-2); padding: .25rem;
  align-items: center; justify-content: center;
}

/* ── Mobile menu ────────────────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--card); border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem; z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: .2rem; }
.mobile-menu a {
  display: block; padding: .6rem .5rem;
  border-radius: 6px; color: var(--text-2); font-size: .95rem;
}
.mobile-menu a:hover { color: var(--text-1); background: var(--raised); }
.mobile-menu-cta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }

/* ── Section helpers ────────────────────────────────────────────── */
.section-label  { text-align: center; margin-bottom: .75rem; }
.section-title  { text-align: center; font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; margin-bottom: .6rem; }
.section-sub    { text-align: center; color: var(--text-2); font-size: 1rem; max-width: 520px; margin: 0 auto 3rem; }

/* ── Page hero (inner pages) ────────────────────────────────────── */
.page-hero {
  padding: 4rem 0 3rem; text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(6,182,212,.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(1.75rem,3.5vw,2.5rem); font-weight: 700; margin: .75rem 0 .7rem; }
.page-hero p  { color: var(--text-2); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ── CTA section ────────────────────────────────────────────────── */
.cta-section { padding: 5rem 0; }
.cta-card {
  background: linear-gradient(135deg, var(--card) 0%, #0d1829 100%);
  border: 1px solid rgba(6,182,212,.25); border-radius: 16px;
  padding: 3.5rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(6,182,212,.07) 0%, transparent 70%);
}
.cta-card h2 { font-size: clamp(1.5rem,3vw,2rem); font-weight: 700; margin-bottom: .75rem; position: relative; }
.cta-card p  { color: var(--text-2); font-size: 1rem; margin-bottom: 2rem; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; position: relative; }
.cta-note    { font-size: .8rem; color: var(--text-3); margin-top: .9rem; position: relative; }

/* ── Footer ─────────────────────────────────────────────────────── */
footer {
  background: var(--card); border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
.footer-brand h3 { font-size: 1.1rem; font-weight: 800; color: var(--accent); margin-bottom: .5rem; }
.footer-brand p  { font-size: .85rem; color: var(--text-2); max-width: 230px; line-height: 1.65; }
.footer-col h4   { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); margin-bottom: .75rem; }
.footer-col ul   { display: flex; flex-direction: column; gap: .4rem; }
.footer-col a    { font-size: .875rem; color: var(--text-2); transition: color .15s; }
.footer-col a:hover { color: var(--text-1); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--text-3); flex-wrap: wrap; gap: .5rem;
}

/* ═══════════════════════════════════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  padding: 5rem 0 4rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 0%, rgba(6,182,212,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem; align-items: center;
}
.hero-eyebrow { margin-bottom: 1.2rem; }
.hero-title {
  font-size: clamp(2rem,4vw,2.9rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -.02em; margin-bottom: 1.25rem;
}
.hero-title .block-accent { color: var(--accent); display: block; }
.hero-sub {
  font-size: 1.08rem; color: var(--text-2); max-width: 480px;
  margin-bottom: 2rem; line-height: 1.75;
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: .8rem; color: var(--text-3); margin-top: .9rem; }

/* ── Dashboard mockup ───────────────────────────────────────────── */
.mockup-wrap { position: relative; }
.mockup-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(ellipse at 50% 50%, rgba(6,182,212,.12) 0%, transparent 65%);
  pointer-events: none;
}
.mockup {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.55);
  position: relative;
}
.mockup-titlebar {
  background: var(--raised); height: 34px;
  display: flex; align-items: center; padding: 0 .9rem; gap: .4rem;
  border-bottom: 1px solid var(--border);
}
.m-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.m-dot.red   { background: #EF4444; }
.m-dot.amber { background: #F59E0B; }
.m-dot.green { background: #22C55E; }
.mockup-urlbar {
  flex: 1; margin: 0 .75rem;
  background: rgba(255,255,255,.04);
  border-radius: 4px; height: 18px;
  display: flex; align-items: center; padding: 0 .5rem;
  font-size: .65rem; color: var(--text-3); font-family: monospace;
}
.mockup-body { display: flex; height: 290px; }
.mockup-sidebar {
  width: 54px; background: #0d1829;
  border-right: 1px solid var(--border);
  padding: 1rem .5rem; display: flex; flex-direction: column; gap: .4rem;
}
.m-pill { height: 30px; border-radius: 6px; background: rgba(255,255,255,.04); }
.m-pill.active { background: rgba(6,182,212,.2); border-left: 2px solid var(--accent); }
.mockup-main {
  flex: 1; padding: .9rem; display: flex; flex-direction: column; gap: .65rem;
}
.m-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: .45rem;
}
.m-stat {
  background: var(--raised); border: 1px solid var(--border);
  border-radius: 7px; padding: .45rem .55rem;
}
.m-stat-val { font-size: 1.15rem; font-weight: 700; color: var(--accent); line-height: 1; }
.m-stat-lbl { font-size: .52rem; color: var(--text-3); margin-top: .2rem; text-transform: uppercase; letter-spacing: .04em; }
.m-chart {
  flex: 1; background: var(--raised); border: 1px solid var(--border);
  border-radius: 7px; padding: .6rem .7rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.m-chart-label { font-size: .6rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; }
.m-bars {
  display: flex; align-items: flex-end; gap: 5px; flex: 1;
}
.m-bar {
  flex: 1; border-radius: 3px 3px 0 0; min-height: 4px;
  background: linear-gradient(to top, var(--accent-hover), rgba(6,182,212,.35));
}
.m-row-list { display: flex; flex-direction: column; gap: .35rem; }
.m-row { display: flex; gap: .4rem; align-items: center; }
.m-row-cell { height: 7px; border-radius: 2px; background: var(--border); }
.m-row-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ── Feature cards ──────────────────────────────────────────────── */
.features-section { padding: 5rem 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.25rem;
}
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.5rem;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(6,182,212,.4); transform: translateY(-2px); }
.f-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(6,182,212,.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.f-icon svg { width: 20px; height: 20px; }
.feature-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .4rem; }
.feature-card p  { font-size: .875rem; color: var(--text-2); line-height: 1.65; }

/* ── How it works ───────────────────────────────────────────────── */
.how-section {
  padding: 5rem 0;
  background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.how-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 2.5rem; margin-top: 3rem; }
.how-step { text-align: center; }
.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent); color: #0B1221;
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.how-step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .4rem; }
.how-step p  { font-size: .875rem; color: var(--text-2); line-height: 1.6; }

/* ── Previews section ───────────────────────────────────────────── */
.previews-section { padding: 5rem 0; }
.previews-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem; margin-top: 3rem;
}
.preview-frame {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
}
.preview-titlebar {
  background: var(--raised); height: 28px;
  display: flex; align-items: center; padding: 0 .7rem; gap: .35rem;
  border-bottom: 1px solid var(--border);
}
.p-dot { width: 8px; height: 8px; border-radius: 50%; }
.p-dot.red   { background: #EF4444; }
.p-dot.amber { background: #F59E0B; }
.p-dot.green { background: #22C55E; }
.preview-urlbar {
  flex: 1; height: 14px; border-radius: 3px;
  background: rgba(255,255,255,.04); margin: 0 .75rem;
  font-size: .58rem; color: var(--text-3); font-family: monospace;
  display: flex; align-items: center; padding: 0 .4rem;
}
.preview-body  { padding: 1rem; }
.preview-cap   { padding: .6rem 1rem .75rem; font-size: .8rem; color: var(--text-2); font-weight: 600; border-top: 1px solid var(--border); }

/* Overview preview internals */
.pv-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: .4rem; margin-bottom: .6rem; }
.pv-stat  { background: var(--raised); border: 1px solid var(--border); border-radius: 6px; padding: .4rem .5rem; }
.pv-val   { font-size: 1rem; font-weight: 700; color: var(--accent); }
.pv-lbl   { font-size: .5rem; color: var(--text-3); text-transform: uppercase; }
.pv-chart { background: var(--raised); border: 1px solid var(--border); border-radius: 6px; padding: .5rem .6rem; }
.pv-chart-title { font-size: .6rem; color: var(--text-3); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .04em; }
.pv-bars  { display: flex; align-items: flex-end; gap: 4px; height: 60px; }
.pv-bar   { flex: 1; border-radius: 2px 2px 0 0; background: linear-gradient(to top, var(--accent-hover), rgba(6,182,212,.3)); }
.pv-table { margin-top: .6rem; display: flex; flex-direction: column; gap: .3rem; }
.pv-trow  { display: flex; align-items: center; gap: .4rem; }
.pv-tdot  { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.pv-tcell { height: 7px; border-radius: 2px; background: var(--border); }

/* Wallboard preview internals */
.wb-preview {
  background: linear-gradient(180deg, #0a1019 0%, var(--navy) 100%);
  padding: 1.5rem 1rem; text-align: center; min-height: 160px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem;
}
.wb-label  { font-size: .65rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .12em; }
.wb-number { font-size: 5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.wb-sub    { font-size: .7rem; color: var(--text-2); }
.wb-agents { display: flex; gap: .5rem; margin-top: .75rem; justify-content: center; flex-wrap: wrap; }
.wb-agent  {
  background: rgba(6,182,212,.08); border: 1px solid rgba(6,182,212,.2);
  border-radius: 5px; padding: .2rem .45rem; font-size: .6rem; color: var(--text-2);
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════════════════════════ */
.services-section { padding: 5rem 0; }
.services-grid { display: grid; gap: 1.25rem; margin-top: 3rem; }
.service-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.75rem;
  display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem; align-items: flex-start;
  transition: border-color .2s;
}
.service-item:hover { border-color: rgba(6,182,212,.35); }
.s-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: rgba(6,182,212,.1); border: 1px solid rgba(6,182,212,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.s-icon svg { width: 24px; height: 24px; }
.s-content h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .4rem; }
.s-content p  { font-size: .9rem; color: var(--text-2); line-height: 1.65; }
.s-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .7rem; }
.s-tag {
  font-size: .7rem; font-weight: 500;
  background: var(--raised); border: 1px solid var(--border);
  color: var(--text-2); border-radius: 4px; padding: .15em .5em;
}

.compat-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 2rem 1.75rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem;
}
.compat-col h4 { font-size: .9rem; font-weight: 600; color: var(--accent); margin-bottom: .75rem; }
.compat-col ul { display: flex; flex-direction: column; gap: .45rem; }
.compat-col li { font-size: .875rem; color: var(--text-2); display: flex; align-items: center; gap: .5rem; }
.compat-col li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════
   PRICING PAGE
═══════════════════════════════════════════════════════════════════ */
.pricing-section { padding: 5rem 0; }
.pricing-wrap { max-width: 500px; margin: 0 auto; }
.pricing-card {
  background: var(--card);
  border: 1px solid rgba(6,182,212,.4); border-radius: 16px;
  overflow: hidden; box-shadow: 0 0 60px rgba(6,182,212,.06);
  margin-top: 3rem;
}
.pricing-header {
  background: linear-gradient(135deg, rgba(6,182,212,.12) 0%, transparent 100%);
  padding: 2.25rem 2rem 2rem; text-align: center;
  border-bottom: 1px solid var(--border);
}
.pricing-badge {
  display: inline-block; background: var(--accent); color: #0B1221;
  font-size: .7rem; font-weight: 700; padding: .25em .8em;
  border-radius: 100px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1.1rem;
}
.pricing-plan { font-size: 1.15rem; font-weight: 600; margin-bottom: .4rem; }
.pricing-price { font-size: 3.25rem; font-weight: 800; line-height: 1; margin-bottom: .25rem; }
.pricing-price sup { font-size: 1.4rem; vertical-align: top; margin-top: .45rem; font-weight: 700; }
.pricing-cadence { font-size: .9rem; color: var(--text-2); }
.pricing-body { padding: 2rem; }
.includes-label {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-3); margin-bottom: 1.25rem; font-weight: 600;
}
.pricing-features { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.pf-item { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--text-2); }
.pf-check { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.pricing-actions { display: flex; flex-direction: column; gap: .5rem; }
.pricing-note { font-size: .75rem; color: var(--text-3); text-align: center; margin-top: .8rem; }

.pricing-extras {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; margin-top: 2.5rem; text-align: center;
}
.pe-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 1.25rem 1rem; }
.pe-item h4 { font-size: .9rem; font-weight: 600; margin-bottom: .3rem; }
.pe-item p  { font-size: .8rem; color: var(--text-2); }

/* ═══════════════════════════════════════════════════════════════════
   FAQ PAGE
═══════════════════════════════════════════════════════════════════ */
.faq-section { padding: 5rem 0; }
.faq-list { max-width: 740px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.25rem; cursor: pointer;
  font-weight: 500; font-size: .95rem;
  transition: background .15s; user-select: none;
}
.faq-q:hover { background: var(--raised); }
.faq-chevron { width: 18px; height: 18px; color: var(--text-3); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none; padding: 0 1.25rem 1.1rem;
  border-top: 1px solid var(--border);
  font-size: .9rem; color: var(--text-2); line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }
.faq-a a { color: var(--accent); }
.faq-a a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════════ */
.contact-section { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 3rem; align-items: flex-start; }
.contact-form-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 2rem;
}
.contact-form-wrap h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .85rem; font-weight: 500; color: var(--text-2); margin-bottom: .4rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--raised); border: 1px solid var(--border);
  border-radius: 8px; padding: .6rem .85rem; color: var(--text-1);
  font-size: .9rem; transition: border-color .15s;
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-msg {
  display: none; padding: .75rem 1rem; border-radius: 8px;
  font-size: .875rem; margin-top: .75rem;
}
.form-msg.success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: var(--green); display: block; }
.form-msg.error   { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: var(--red); display: block; }

.contact-info h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: .5rem; }
.contact-info > p { font-size: .9rem; color: var(--text-2); margin-bottom: 2rem; line-height: 1.65; }
.contact-detail { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: 1.5rem; }
.cd-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(6,182,212,.1); border: 1px solid rgba(6,182,212,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.cd-icon svg { width: 17px; height: 17px; }
.contact-detail h4 { font-size: .875rem; font-weight: 600; margin-bottom: .15rem; }
.contact-detail p, .contact-detail a { font-size: .875rem; color: var(--text-2); }
.contact-detail a:hover { color: var(--accent); }
.contact-provider {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 1.25rem; margin-top: 2rem;
}
.contact-provider p  { font-size: .8rem; color: var(--text-2); margin-top: .25rem; line-height: 1.6; }
.contact-provider strong { font-size: .85rem; }

/* ── Tour / extra screenshot grids ─────────────────────────────── */
.tour-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-top:3rem; }
.tour-full   { margin-top:1.5rem; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .tour-grid-2  { grid-template-columns: 1fr; }
  .hero-grid    { grid-template-columns: 1fr; }
  .mockup-wrap  { display: none; }
  .previews-grid { grid-template-columns: 1fr; }
  .compat-box   { grid-template-columns: 1fr; }
  .pricing-extras { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid  { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-actions  { flex-direction: column; }
  .btn-lg        { width: 100%; justify-content: center; }
  .form-row      { grid-template-columns: 1fr; }
  .m-stats       { grid-template-columns: repeat(2,1fr); }
  .pv-stats      { grid-template-columns: repeat(2,1fr); }
}
