:root{
  --white:#FFFFFF;
  --soft:#F5F5F7;
  --soft-deep:#E8E8ED;
  --ink:#1D1D1F;
  --muted:#86868B;
  --divider:#D2D2D7;
  --signal:#E8342B;
  --signal-deep:#B91F18;
  --glass:rgba(255,255,255,0.72);
  --radius-lg:22px;
  --radius-md:16px;
  --radius-sm:10px;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'SF Pro Display',sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.47;
  -webkit-font-smoothing:antialiased;
  font-feature-settings:'tnum' 1, 'ss01' 1;
}
a{color:inherit;text-decoration:none;}
img,svg{display:block;max-width:100%;}
.wrap{max-width:1100px;margin:0 auto;padding:0 24px;}
.wrap-narrow{max-width:820px;margin:0 auto;padding:0 24px;}
.section{padding:140px 0;}
@media (max-width:900px){.section{padding:88px 0;}}

h1,h2,h3{font-weight:600;letter-spacing:-0.02em;color:var(--ink);}

/* ---------- NAV ---------- */
nav{
  position:sticky;top:0;z-index:50;
  background:var(--signal);
  backdrop-filter:saturate(180%) blur(20px);
  -webkit-backdrop-filter:saturate(180%) blur(20px);
  border-bottom:1px solid rgba(255,255,255,0.18);
}
.nav-inner{max-width:1100px;margin:0 auto;padding:0 24px;height:52px;display:flex;align-items:center;justify-content:space-between;}
.logo{font-size:15px;font-weight:600;letter-spacing:-0.01em;display:flex;align-items:center;gap:7px;color:var(--white);}
.logo-dot{width:7px;height:7px;border-radius:50%;background:var(--white);}
.nav-links{display:flex;gap:34px;font-size:12.5px;font-weight:400;color:var(--white);}
.nav-links a{opacity:0.8;}
.nav-links a:hover,.nav-links a.active{opacity:1;}
.nav-cta{font-size:12.5px;font-weight:400;color:var(--white);opacity:0.8;}
.nav-cta:hover{opacity:1;}
.nav-lang{font-size:12.5px;font-weight:600;color:var(--white);opacity:0.75;border:1px solid rgba(255,255,255,0.4);border-radius:999px;padding:4px 11px;margin-right:18px;}
.nav-lang:hover{opacity:1;border-color:rgba(255,255,255,0.9);}
@media (max-width:800px){.nav-links{display:none;}}

/* ---------- HERO ---------- */
.hero{padding:96px 0 64px 0;text-align:center;}
.hero .kicker{font-size:14px;font-weight:600;color:var(--signal);margin-bottom:14px;letter-spacing:0.01em;}
.hero h1{font-size:76px;line-height:1.02;letter-spacing:-0.03em;margin-bottom:20px;}
@media (max-width:900px){.hero h1{font-size:44px;}}
.hero .sub{font-size:21px;color:var(--muted);max-width:620px;margin:0 auto 36px auto;font-weight:400;line-height:1.4;}
@media (max-width:900px){.hero .sub{font-size:17px;}}

.btn-row{display:flex;gap:18px;justify-content:center;flex-wrap:wrap;}
.btn-primary{
  background:var(--signal);color:var(--white);
  padding:13px 28px;border-radius:999px;font-weight:500;font-size:15px;
  display:inline-block;border:none;
  transition:background 0.2s ease;
}
.btn-primary:hover{background:var(--signal-deep);}
.btn-secondary{
  color:var(--signal);padding:13px 8px;font-weight:500;font-size:15px;
  display:inline-flex;align-items:center;gap:4px;
}
.btn-secondary:after{content:"›";font-size:17px;}
.fine-print{font-size:13px;color:var(--muted);margin-top:20px;}

/* ---------- SIGNATURE: HERO VISUAL (waveform + floating notification cards) ---------- */
.hero-visual{position:relative;max-width:820px;margin:64px auto 0 auto;height:260px;}
.hv-wave{position:absolute;inset:0;display:flex;align-items:center;}
.hv-wave-layer{position:absolute;left:0;right:0;top:50%;transform:translateY(-50%);height:120px;display:flex;align-items:center;justify-content:space-between;}
.hv-wave-layer span{width:3px;border-radius:3px;}
.hv-wave-a span{background:var(--signal);opacity:0.88;animation:hvWaveA 1.7s ease-in-out infinite;}
.hv-wave-b span{background:var(--ink);opacity:0.14;animation:hvWaveB 2.1s ease-in-out infinite;}
@keyframes hvWaveA{0%,100%{transform:scaleY(0.35);}50%{transform:scaleY(1);}}
@keyframes hvWaveB{0%,100%{transform:scaleY(0.3);}50%{transform:scaleY(1);}}
/* 14-step pattern repeated across all bars (nth-child modulo) so a dense wave
   only needs 14 rules instead of one per bar. */
.hv-wave-a span:nth-child(14n+1){height:18%;animation-delay:0.00s;} .hv-wave-a span:nth-child(14n+2){height:32%;animation-delay:0.09s;}
.hv-wave-a span:nth-child(14n+3){height:55%;animation-delay:0.18s;} .hv-wave-a span:nth-child(14n+4){height:75%;animation-delay:0.27s;}
.hv-wave-a span:nth-child(14n+5){height:50%;animation-delay:0.36s;} .hv-wave-a span:nth-child(14n+6){height:80%;animation-delay:0.45s;}
.hv-wave-a span:nth-child(14n+7){height:95%;animation-delay:0.54s;} .hv-wave-a span:nth-child(14n+8){height:65%;animation-delay:0.63s;}
.hv-wave-a span:nth-child(14n+9){height:85%;animation-delay:0.72s;} .hv-wave-a span:nth-child(14n+10){height:100%;animation-delay:0.81s;}
.hv-wave-a span:nth-child(14n+11){height:70%;animation-delay:0.90s;} .hv-wave-a span:nth-child(14n+12){height:88%;animation-delay:0.99s;}
.hv-wave-a span:nth-child(14n+13){height:42%;animation-delay:1.08s;} .hv-wave-a span:nth-child(14n+14){height:60%;animation-delay:1.17s;}
.hv-wave-b span:nth-child(14n+1){height:30%;animation-delay:0.15s;} .hv-wave-b span:nth-child(14n+2){height:20%;animation-delay:0.26s;}
.hv-wave-b span:nth-child(14n+3){height:40%;animation-delay:0.37s;} .hv-wave-b span:nth-child(14n+4){height:60%;animation-delay:0.48s;}
.hv-wave-b span:nth-child(14n+5){height:85%;animation-delay:0.59s;} .hv-wave-b span:nth-child(14n+6){height:55%;animation-delay:0.70s;}
.hv-wave-b span:nth-child(14n+7){height:70%;animation-delay:0.81s;} .hv-wave-b span:nth-child(14n+8){height:92%;animation-delay:0.92s;}
.hv-wave-b span:nth-child(14n+9){height:75%;animation-delay:1.03s;} .hv-wave-b span:nth-child(14n+10){height:60%;animation-delay:1.14s;}
.hv-wave-b span:nth-child(14n+11){height:88%;animation-delay:1.25s;} .hv-wave-b span:nth-child(14n+12){height:48%;animation-delay:1.36s;}
.hv-wave-b span:nth-child(14n+13){height:95%;animation-delay:1.47s;} .hv-wave-b span:nth-child(14n+14){height:33%;animation-delay:1.58s;}

.hv-card{
  position:absolute;background:var(--white);border-radius:16px;padding:14px 16px;
  box-shadow:0 20px 45px -14px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.03);
  display:flex;align-items:flex-start;gap:10px;text-align:left;width:210px;
}
.hv-avatar{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:11.5px;font-weight:700;flex-shrink:0;}
.hv-title{font-weight:600;font-size:13px;color:var(--ink);margin-bottom:2px;}
.hv-sub{font-size:12px;color:var(--muted);line-height:1.35;}

.hv-sms{top:0;left:0;}
.hv-booking{top:6px;right:0;flex-direction:column;gap:0;padding-top:16px;}
.hv-booking .hv-title{margin-bottom:8px;}
.hv-call{bottom:6px;left:2%;}
.hv-reminder{bottom:32px;right:16%;}

.hv-check{
  position:absolute;top:-12px;right:-12px;width:26px;height:26px;border-radius:50%;
  background:#1F9254;color:var(--white);display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;
  box-shadow:0 4px 10px rgba(31,146,84,0.35);
}
.hv-row{display:flex;justify-content:space-between;font-size:12.5px;color:var(--muted);padding:4px 0;gap:16px;width:100%;}
.hv-row strong{color:var(--ink);font-weight:600;}
.hv-progress{width:100%;height:4px;background:var(--soft-deep);border-radius:99px;margin-top:8px;overflow:hidden;}
.hv-progress-fill{width:55%;height:100%;background:#1F9254;border-radius:99px;}

@media (max-width:800px){
  .hero-visual{height:auto;}
  .hv-wave{position:relative;height:90px;margin-bottom:20px;}
  .hv-wave-layer{height:90px;}
  .hv-card{position:static;width:100%;margin-bottom:10px;}
  .hv-booking{position:relative;}
  .hv-check{top:-10px;right:8px;}
}

/* ---------- SECTION HEAD ---------- */
.section-head{text-align:center;max-width:680px;margin:0 auto 64px auto;}
.section-head .kicker{font-size:13px;font-weight:600;color:var(--signal);margin-bottom:12px;}
.section-head h2{font-size:44px;line-height:1.08;margin-bottom:14px;}
@media (max-width:900px){.section-head h2{font-size:30px;}}
.section-head p{font-size:18px;color:var(--muted);}

/* ---------- FEATURE GRID ---------- */
.tile-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;}
@media (max-width:800px){.tile-grid{grid-template-columns:1fr;}}
.tile{background:var(--soft);border-radius:var(--radius-lg);padding:44px;min-height:340px;display:flex;flex-direction:column;}
.tile.dark{background:var(--ink);color:var(--white);}
.tile h3{font-size:26px;margin-bottom:12px;letter-spacing:-0.02em;}
.tile.dark h3{color:var(--white);}
.tile p{font-size:16px;color:var(--muted);line-height:1.5;max-width:440px;}
.tile.dark p{color:rgba(255,255,255,0.7);}
.tile-visual{margin-top:auto;padding-top:28px;}

.mini-transcript{background:var(--white);border-radius:14px;padding:18px 20px;font-size:14px;}
.mini-transcript .row{display:flex;gap:10px;margin-bottom:10px;}
.mini-transcript .row:last-child{margin-bottom:0;}
.mini-transcript .who{font-weight:600;color:var(--signal);white-space:nowrap;font-size:12.5px;padding-top:2px;}
.mini-transcript .txt{color:var(--ink);}

.stat-row{display:flex;gap:32px;margin-top:8px;}
.stat-row .stat{flex:1;}
.stat-row .num{font-size:40px;font-weight:600;letter-spacing:-0.02em;}
.tile.dark .stat-row .num{color:var(--white);}
.stat-row .lbl{font-size:13px;color:var(--muted);margin-top:2px;}

/* ---------- PRICING TILES ---------- */
.price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
@media (max-width:900px){.price-grid{grid-template-columns:1fr;}}
.price-tile{background:var(--soft);border-radius:var(--radius-lg);padding:40px 32px;display:flex;flex-direction:column;}
.price-tile.featured{background:var(--ink);color:var(--white);}
.price-tile .plan-name{font-size:22px;font-weight:600;margin-bottom:8px;}
.price-tile .plan-desc{font-size:14.5px;color:var(--muted);margin-bottom:24px;min-height:44px;}
.price-tile.featured .plan-desc{color:rgba(255,255,255,0.65);}
.price-tile .amount{font-size:44px;font-weight:600;letter-spacing:-0.02em;margin-bottom:2px;}
.price-tile .amount span{font-size:15px;color:var(--muted);font-weight:400;}
.price-tile.featured .amount span{color:rgba(255,255,255,0.6);}
.price-tile ul{list-style:none;margin:24px 0 32px 0;flex-grow:1;}
.price-tile li{font-size:14px;padding:9px 0;border-top:1px solid var(--divider);}
.price-tile.featured li{border-top:1px solid rgba(255,255,255,0.15);color:rgba(255,255,255,0.85);}
.price-cta{text-align:center;padding:12px;border-radius:999px;font-weight:500;font-size:14.5px;background:var(--ink);color:var(--white);}
.price-tile.featured .price-cta{background:var(--signal);}
.price-cta:hover{opacity:0.85;}

/* ---------- COMPARISON TABLE ---------- */
.compare-wrap{overflow-x:auto;border-radius:var(--radius-lg);background:var(--soft);padding:8px;}
table.compare{width:100%;border-collapse:collapse;font-size:14px;min-width:600px;}
table.compare th{text-align:left;padding:16px 20px;font-weight:600;font-size:13px;color:var(--muted);}
table.compare td{padding:14px 20px;border-top:1px solid var(--divider);}
table.compare td.yes{color:var(--signal);font-weight:600;text-align:center;}
table.compare td.no{color:var(--divider);text-align:center;}
table.compare td:first-child{font-weight:500;}

/* ---------- ADDON ROWS ---------- */
.addon-row{display:flex;justify-content:space-between;align-items:center;padding:24px 0;border-top:1px solid var(--divider);gap:20px;flex-wrap:wrap;}
.addon-row h3{font-size:17px;margin-bottom:4px;}
.addon-row p{color:var(--muted);font-size:14px;}
.addon-price{font-weight:600;font-size:15px;white-space:nowrap;}

/* ---------- FAQ ---------- */
.faq-item{border-top:1px solid var(--divider);padding:26px 0;}
.faq-item:last-child{border-bottom:1px solid var(--divider);}
.faq-item h3{font-size:17px;font-weight:600;margin-bottom:8px;}
.faq-item p{color:var(--muted);font-size:15px;max-width:640px;line-height:1.5;}

/* ---------- CONTACT ---------- */
.contact-grid{display:grid;grid-template-columns:1.1fr 0.9fr;gap:48px;}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr;}}
.contact-form{display:flex;flex-direction:column;gap:16px;}
.contact-form label{font-size:13px;font-weight:500;color:var(--muted);margin-bottom:6px;display:block;}
.contact-form input,.contact-form textarea,.contact-form select{width:100%;padding:14px 16px;border:1px solid var(--divider);border-radius:var(--radius-sm);font-family:'Inter',sans-serif;font-size:15px;background:var(--white);}
.contact-form textarea{min-height:120px;resize:vertical;}
.contact-form button{margin-top:6px;cursor:pointer;align-self:flex-start;}
.info-card{background:var(--soft);border-radius:var(--radius-lg);padding:32px;}
.contact-method{display:flex;gap:14px;margin-bottom:24px;}
.contact-method:last-child{margin-bottom:0;}
.contact-method-icon{width:38px;height:38px;border-radius:10px;background:var(--white);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-weight:600;color:var(--signal);}
.contact-method-label{font-size:12px;color:var(--muted);margin-bottom:2px;}
.contact-method-value{font-weight:500;font-size:15px;}
.contact-method-note{color:var(--muted);font-size:12.5px;margin-top:2px;}
.divider-line{height:1px;background:var(--divider);margin:24px 0;}

/* ---------- LOCAL / MONTREAL PAGE ---------- */
.stat-grid-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
@media (max-width:800px){.stat-grid-cards{grid-template-columns:1fr;}}
.stat-tile{background:var(--soft);border-radius:var(--radius-lg);padding:36px 28px;text-align:center;}
.stat-tile .num{font-size:48px;font-weight:600;color:var(--signal);letter-spacing:-0.02em;margin-bottom:8px;}
.stat-tile p{font-size:14.5px;color:var(--muted);}

.local-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
@media (max-width:800px){.local-grid{grid-template-columns:1fr;}}
.local-tile{background:var(--soft);border-radius:var(--radius-lg);padding:32px;}
.local-tile-icon{width:44px;height:44px;border-radius:12px;background:var(--white);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:20px;margin-bottom:16px;}
.local-tile h3{font-size:18px;margin-bottom:10px;}
.local-tile p{color:var(--muted);font-size:14.5px;line-height:1.5;}

/* ---------- COMPLIANCE ---------- */
.compliance-badge{display:inline-flex;align-items:center;gap:8px;background:var(--signal);color:var(--white);font-size:12.5px;font-weight:600;letter-spacing:0.04em;text-transform:uppercase;padding:9px 18px;border-radius:999px;margin-bottom:20px;}
.compliance-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:40px;}
@media (max-width:800px){.compliance-grid{grid-template-columns:1fr;}}
.compliance-card{background:var(--white);border-radius:var(--radius-lg);padding:36px 28px;text-align:center;box-shadow:0 2px 16px rgba(0,0,0,0.05);}
.compliance-card-icon{width:56px;height:56px;border-radius:14px;background:var(--soft);display:flex;align-items:center;justify-content:center;font-size:26px;margin:0 auto 18px auto;}
.compliance-card h3{font-size:17px;}
.compliance-note{max-width:640px;margin:0 auto;text-align:center;color:var(--muted);font-size:15px;line-height:1.6;}

.scenario{background:var(--soft);border-radius:var(--radius-lg);padding:36px;margin-bottom:20px;}
.scenario .tag{font-size:12.5px;font-weight:600;color:var(--signal);margin-bottom:10px;}
.scenario h3{font-size:20px;margin-bottom:18px;}
.scenario-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
@media (max-width:800px){.scenario-grid{grid-template-columns:1fr;}}
.scenario-grid h4{font-size:12px;font-weight:600;color:var(--muted);text-transform:uppercase;letter-spacing:0.04em;margin-bottom:6px;}
.scenario-grid p{font-size:14.5px;color:var(--ink);line-height:1.5;}

/* ---------- FINAL CTA ---------- */
.final-cta{background:var(--ink);color:var(--white);text-align:center;padding:120px 0;}
.final-cta h2{color:var(--white);font-size:48px;margin-bottom:16px;letter-spacing:-0.02em;}
@media (max-width:900px){.final-cta h2{font-size:32px;}}
.final-cta p{font-size:19px;color:rgba(255,255,255,0.65);margin-bottom:36px;}
.final-cta .btn-secondary{color:var(--white);}

/* ---------- FOOTER ---------- */
footer{padding:48px 0;border-top:1px solid var(--divider);}
.footer-top{display:flex;justify-content:space-between;flex-wrap:wrap;gap:20px;margin-bottom:28px;align-items:center;}
.footer-links{display:flex;gap:26px;flex-wrap:wrap;font-size:13px;color:var(--muted);}
.footer-bottom{font-size:12.5px;color:var(--muted);}
.footer-bottom-row{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;}
.footer-legal{display:flex;gap:18px;flex-wrap:wrap;}
.footer-legal a{font-size:12.5px;color:var(--muted);}
.footer-legal a:hover{color:var(--ink);}

/* ---------- LEGAL / DOC PAGES ---------- */
.legal-note{background:var(--soft);border-radius:var(--radius-md);padding:16px 20px;font-size:13.5px;color:var(--muted);line-height:1.5;margin-bottom:48px;}
.legal-body h2{font-size:22px;margin:40px 0 12px 0;letter-spacing:-0.01em;}
.legal-body h2:first-child{margin-top:0;}
.legal-body p{font-size:15px;color:var(--ink);line-height:1.65;margin-bottom:14px;max-width:720px;}
.legal-body ul{margin:0 0 14px 20px;max-width:700px;}
.legal-body li{font-size:15px;color:var(--ink);line-height:1.65;margin-bottom:6px;}
.legal-updated{font-size:13px;color:var(--muted);margin-bottom:8px;}

/* ---------- LIVE DEMO CONSOLE (shared: index.html + demo.html) ---------- */
.industry-picker{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin:40px 0 0 0;}
.industry-pill{
  border:1px solid var(--divider);background:var(--white);color:var(--muted);
  padding:10px 18px;border-radius:999px;font-size:13.5px;font-weight:500;
  cursor:pointer;transition:all 0.15s ease;display:flex;align-items:center;gap:6px;
}
.industry-pill:hover{border-color:var(--signal);color:var(--signal);}
.industry-pill.active{background:var(--signal);border-color:var(--signal);color:var(--white);}

.demo-console{max-width:920px;margin:56px auto 0 auto;border-radius:var(--radius-lg);overflow:hidden;box-shadow:0 30px 70px -20px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.03);border:1px solid var(--divider);}
.console-grid{display:grid;grid-template-columns:1fr 1fr;}
@media (max-width:800px){.console-grid{grid-template-columns:1fr;}}

.voice-panel{background:var(--ink);color:var(--white);padding:36px 32px;display:flex;flex-direction:column;}
.voice-panel .biz-name{font-size:12.5px;color:rgba(255,255,255,0.55);margin-bottom:4px;letter-spacing:0.02em;}
.voice-panel .biz-title{font-size:19px;font-weight:600;margin-bottom:24px;}
.mic-circle{
  width:110px;height:110px;border-radius:50%;background:rgba(255,255,255,0.08);
  border:2px solid rgba(255,255,255,0.18);margin:10px auto 20px auto;
  display:flex;align-items:center;justify-content:center;font-size:38px;position:relative;
}
.mic-circle.listening{border-color:var(--signal);}
.mic-circle .pulse-ring{position:absolute;inset:-8px;border-radius:50%;border:2px solid var(--signal);opacity:0;}
.mic-circle.listening .pulse-ring{animation:pulseRing 1.6s ease-out infinite;}
@keyframes pulseRing{0%{opacity:0.7;transform:scale(0.9);}100%{opacity:0;transform:scale(1.3);}}
.voice-status{text-align:center;font-size:14px;color:rgba(255,255,255,0.7);margin-bottom:20px;min-height:20px;}
.start-btn{
  background:var(--signal);color:var(--white);border:none;font-weight:500;font-size:14.5px;
  padding:13px 22px;border-radius:999px;cursor:pointer;margin:0 auto;display:block;width:fit-content;
  transition:background 0.2s ease;
}
.start-btn:hover{background:var(--signal-deep);}
.suggested{margin-top:28px;display:flex;flex-direction:column;gap:8px;}
.suggested .label{font-size:11.5px;color:rgba(255,255,255,0.45);text-transform:uppercase;letter-spacing:0.05em;margin-bottom:2px;}
.sq-btn{
  background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.14);color:rgba(255,255,255,0.9);
  padding:10px 14px;border-radius:var(--radius-sm);font-size:13px;text-align:left;cursor:pointer;transition:background 0.15s;
}
.sq-btn:hover{background:rgba(255,255,255,0.14);}
.quickreply-row{display:flex;gap:8px;margin-top:12px;flex-wrap:wrap;}
.qr-btn{background:var(--signal);color:var(--white);border:none;padding:9px 16px;border-radius:999px;font-size:12.5px;font-weight:500;cursor:pointer;transition:background 0.2s ease;}
.qr-btn:hover{background:var(--signal-deep);}

.transcript-panel{background:var(--white);padding:32px 28px;display:flex;flex-direction:column;max-height:560px;}
.transcript-panel .label{font-size:12px;font-weight:600;color:var(--muted);text-transform:uppercase;letter-spacing:0.05em;margin-bottom:14px;}
.transcript-scroll{flex-grow:1;overflow-y:auto;display:flex;flex-direction:column;gap:14px;padding-right:4px;max-height:280px;}
.t-line{font-size:14px;}
.t-who{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:0.04em;margin-bottom:3px;}
.t-line.customer .t-who{color:var(--signal);}
.t-line.ai .t-who{color:var(--ink);}
.t-text{background:var(--soft);border-radius:var(--radius-sm);padding:9px 13px;display:inline-block;}
.t-line.ai .t-text{background:var(--soft-deep);}

.summary-card{margin-top:20px;background:var(--soft);border-radius:var(--radius-md);padding:20px;display:none;}
.summary-card.show{display:block;animation:fadeUp 0.4s ease;}
@keyframes fadeUp{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:translateY(0);}}
.summary-card h4{font-size:12px;text-transform:uppercase;letter-spacing:0.05em;color:var(--muted);margin-bottom:12px;}
.summary-row{display:flex;justify-content:space-between;font-size:13.5px;padding:7px 0;border-top:1px solid var(--divider);}
.summary-row:first-of-type{border-top:none;}
.summary-row .v{font-weight:600;text-align:right;}
.status-pill{background:rgba(232,52,43,0.1);color:var(--signal-deep);font-size:11.5px;font-weight:600;padding:3px 10px;border-radius:999px;}

.crm-check{margin-top:16px;display:flex;flex-direction:column;gap:8px;}
.crm-item{font-size:13px;color:var(--muted);opacity:0;transform:translateX(-6px);transition:all 0.35s ease;display:flex;align-items:center;gap:8px;}
.crm-item.show{opacity:1;transform:translateX(0);color:var(--ink);}
.crm-item .ck{color:var(--signal);font-weight:700;}

.dash-strip{background:var(--soft);border-top:1px solid var(--divider);padding:22px 28px;display:grid;grid-template-columns:repeat(4,1fr);gap:12px;}
.dash-stat{text-align:center;}
.dash-stat .num{font-size:26px;font-weight:600;color:var(--signal);}
.dash-stat .lbl{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:0.03em;}

.browser-note{font-size:12px;color:rgba(255,255,255,0.5);text-align:center;margin-top:14px;}

/* ---------- MICRO STEPS (compact "click here" walkthrough) ---------- */
.steps{display:flex;justify-content:center;align-items:center;gap:18px;margin:44px 0 0 0;flex-wrap:wrap;}
.step{display:flex;flex-direction:column;align-items:center;gap:8px;max-width:150px;text-align:center;}
.step .n{width:34px;height:34px;border-radius:50%;background:var(--soft-deep);color:var(--signal);font-weight:600;display:flex;align-items:center;justify-content:center;font-size:14px;}
.step p{font-size:13px;color:var(--muted);}
.step-arrow{color:var(--divider);font-size:20px;}

/* ---------- ONBOARDING STEPS (numbered cards) ---------- */
.onboard-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
@media (max-width:900px){.onboard-grid{grid-template-columns:1fr;}}
.onboard-step{background:var(--soft);border-radius:var(--radius-lg);padding:36px 32px;}
.onboard-step .onboard-n{font-size:13px;font-weight:700;color:var(--signal);letter-spacing:0.04em;margin-bottom:16px;}
.onboard-step h3{font-size:19px;margin-bottom:10px;}
.onboard-step p{color:var(--muted);font-size:14.5px;line-height:1.5;}

/* ---------- TRUST STATS BAR ---------- */
.trust-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;text-align:center;}
@media (max-width:800px){.trust-stats{grid-template-columns:repeat(2,1fr);}}
.trust-stats .stat-num{font-size:36px;font-weight:700;color:var(--signal);letter-spacing:-0.02em;margin-bottom:6px;}
.trust-stats .stat-lbl{font-size:13px;color:var(--muted);line-height:1.4;max-width:180px;margin:0 auto;}

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
@media (max-width:900px){.testimonial-grid{grid-template-columns:1fr;}}
.testimonial-card{background:var(--soft);border-radius:var(--radius-lg);padding:32px 28px;display:flex;flex-direction:column;}
.testimonial-card p{font-size:15px;line-height:1.55;color:var(--ink);margin-bottom:20px;flex-grow:1;}
.testimonial-who{font-size:13.5px;font-weight:600;}
.testimonial-role{font-size:12.5px;color:var(--muted);margin-top:2px;}

/* ---------- ARCHITECTURE MAP ---------- */
.architecture-page{
  background:#f7fafc;
}
.architecture-page nav{
  background:#15215a;
}
.architecture-shell{
  max-width:1280px;
  margin:0 auto;
  padding:58px 40px 72px;
}
.architecture-header{
  max-width:780px;
  margin-bottom:28px;
}
.architecture-header .kicker{
  color:#0b6f9b;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.architecture-header h1{
  font-size:38px;
  line-height:1.08;
  color:#172153;
  margin-bottom:14px;
  letter-spacing:0;
}
.architecture-header p{
  color:#50677a;
  font-size:16px;
  max-width:700px;
}
.architecture-map{
  position:relative;
  height:760px;
  min-width:1040px;
  background:#fff;
  border:1px solid #d6e1e8;
  border-radius:8px;
  box-shadow:0 22px 60px rgba(21,33,90,0.08);
  overflow:hidden;
}
.architecture-lines{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
  pointer-events:none;
}
.line-blue,
.line-slate,
.line-orange{
  fill:none;
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.line-blue{
  stroke:#0b6f9b;
  marker-end:url(#arch-arrow-blue);
}
.line-slate{
  stroke:#8495a0;
  marker-end:url(#arch-arrow-slate);
}
.line-orange{
  stroke:#d4661f;
  marker-end:url(#arch-arrow-orange);
}
.dashed{
  stroke-dasharray:4 6;
}
.arch-node,
.arch-service,
.arch-path-title,
.arch-dashboard,
.arch-audit,
.arch-label,
.arch-side-note{
  position:absolute;
  left:calc(var(--x) * 100% / 1200);
  top:calc(var(--y) * 100% / 760);
  transform:translate(-50%, -50%);
  z-index:2;
}
.arch-node,
.arch-service,
.arch-dashboard,
.arch-audit{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-radius:8px;
}
.arch-node{
  width:300px;
  min-height:64px;
  color:#fff;
  padding:12px 18px;
}
.arch-node strong,
.arch-service strong,
.arch-path-title,
.arch-dashboard strong,
.arch-audit strong{
  font-size:13px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:0;
}
.arch-node span,
.arch-service span,
.arch-service small,
.arch-dashboard span,
.arch-dashboard small,
.arch-audit span,
.arch-audit small{
  display:block;
  font-size:10px;
  line-height:1.35;
  margin-top:5px;
}
.arch-node em{
  color:rgba(255,255,255,0.82);
  display:block;
  font-size:9.5px;
  line-height:1.25;
  font-style:normal;
  margin-top:4px;
}
.arch-pstn,
.arch-n8n{
  background:#252c66;
}
.arch-twilio{
  background:#0e6383;
}
.arch-livekit{
  width:360px;
  min-height:72px;
  background:#138298;
}
.arch-path-title{
  width:480px;
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  color:#fff;
  border-radius:7px;
  font-size:13px;
  font-weight:700;
  text-align:center;
  padding:8px 14px;
}
.arch-path-title span{
  font-weight:600;
}
.arch-incall-title{
  background:#138298;
}
.arch-postcall-title{
  background:#8a9aa4;
}
.arch-service{
  width:152px;
  min-height:92px;
  background:#f6fbfd;
  border:2px solid #177aa9;
  color:#15215a;
  padding:13px 12px;
}
.arch-service span{
  color:#384f65;
}
.arch-service small{
  color:#50677a;
}
.muted-card{
  background:#f7fafb;
  border-color:#95a8b4;
}
.arch-dashboard{
  width:490px;
  min-height:92px;
  background:#f4fbfe;
  border:2px solid #1290bc;
  color:#15215a;
  padding:16px 22px;
}
.arch-dashboard span,
.arch-dashboard small{
  color:#526a79;
}
.arch-audit{
  width:490px;
  min-height:92px;
  background:#fff8ef;
  border:2px dashed #d4661f;
  color:#9a4b12;
  padding:16px 22px;
}
.arch-audit span,
.arch-audit small{
  color:#9a4b12;
}
.arch-label,
.arch-side-note{
  color:#557183;
  background:#fff;
  font-size:9px;
  line-height:1;
  padding:3px 5px;
  white-space:nowrap;
}
.arch-label.muted{
  color:#8a9aa4;
}
.arch-side-note{
  color:#d4661f;
  background:transparent;
  transform:translate(-50%, -50%) rotate(-66deg);
}
.live-note-2{
  transform:translate(-50%, -50%) rotate(-75deg);
}
.crm-note{
  transform:translate(-50%, -50%);
  background:#fff;
}
.architecture-note{
  margin-top:24px;
  background:#fff;
  border:1px solid #d6e1e8;
  border-radius:8px;
  padding:18px 20px;
  color:#15215a;
}
.architecture-note strong{
  display:block;
  color:#0b6f9b;
  font-size:14px;
  margin-bottom:7px;
}
.architecture-note p{
  color:#50677a;
  font-size:13px;
  line-height:1.5;
}
.architecture-page footer .logo{
  color:var(--ink);
}
.architecture-page footer .logo-dot{
  background:var(--signal);
}

@media (max-width:1120px){
  .architecture-shell{
    padding:42px 18px 56px;
    overflow-x:auto;
  }
  .architecture-header{
    min-width:0;
  }
  .architecture-header h1{
    font-size:30px;
  }
}

@media (max-width:720px){
  .architecture-shell{
    padding:32px 16px 48px;
  }
  .architecture-header h1{
    font-size:26px;
  }
  .architecture-header p{
    font-size:15px;
  }
  .architecture-map{
    height:auto;
    min-width:0;
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    padding:16px;
    overflow:visible;
  }
  .architecture-lines,
  .arch-label,
  .arch-side-note{
    display:none;
  }
  .arch-node,
  .arch-service,
  .arch-path-title,
  .arch-dashboard,
  .arch-audit{
    position:static;
    left:auto;
    top:auto;
    transform:none;
    width:100%;
    min-height:auto;
  }
  .arch-path-title{
    margin-top:10px;
  }
  .arch-path-title span{
    display:inline;
  }
}
