:root{
  --navy:#0e2e4a;
  --navy2:#163e61;
  --blue:#1c5d8e;
  --green:#20a55a;
  --green-soft:#eaf8ef;
  --ink:#13283b;
  --muted:#5f7284;
  --line:#dfe7ee;
  --soft:#f4f8fb;
  --white:#fff;
  --shadow:0 22px 60px rgba(14,46,74,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,calc(100% - 40px));margin:auto}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid #edf1f4;
}
.nav{
  min-height:74px;
  display:flex;
  align-items:center;
  gap:28px;
}
.logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:1.34rem;
  letter-spacing:-.03em;
  color:var(--navy);
}
.logo-icon{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius:9px;
  background:var(--navy);
  color:white;
  font-size:16px;
}
nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:25px;
  font-size:.92rem;
  font-weight:600;
}
nav a:hover{color:var(--blue)}
.menu-btn{display:none}
.desktop-cta{margin-left:2px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 19px;
  border-radius:11px;
  font-weight:750;
  border:1px solid transparent;
  transition:.18s ease;
  cursor:pointer;
  font:inherit;
}
.btn:hover{transform:translateY(-1px)}
.btn-dark{background:var(--navy);color:white;box-shadow:0 8px 24px rgba(14,46,74,.15)}
.btn-dark:hover{background:#0b263e}
.btn-outline{border-color:#9fb2c2;background:white;color:var(--navy)}
.btn.full{width:100%}

.hero{
  min-height:620px;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 74% 18%, #eef7ff 0, #f8fbfd 28%, transparent 55%),
    linear-gradient(100deg,#fff 0%,#f7fbff 58%,#eef6fb 100%);
}
.hero-glow{position:absolute;border-radius:50%;filter:blur(20px);opacity:.7}
.hero-glow-a{width:320px;height:320px;background:#dfeef8;right:4%;top:8%}
.hero-glow-b{width:250px;height:250px;background:#e8f7ef;right:22%;bottom:-50px}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:70px;
  padding:82px 0 78px;
}
.eyebrow{
  color:var(--navy2);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.09em;
}
.eyebrow.light{color:#dceaf5}
h1,h2,h3{line-height:1.08;letter-spacing:-.04em;margin-top:0}
h1{font-size:clamp(3rem,5.6vw,5.2rem);margin:17px 0 20px;max-width:760px}
h2{font-size:clamp(2rem,3.6vw,3.25rem);margin:12px 0 16px}
h3{font-size:1.08rem;margin-bottom:10px}
.hero-lead{font-size:1.2rem;color:#355168;max-width:680px}
.hero-checks{list-style:none;padding:0;margin:25px 0;display:grid;gap:10px}
.hero-checks li{position:relative;padding-left:28px}
.hero-checks li:before{
  content:"✓";
  position:absolute;left:0;top:0;
  width:18px;height:18px;border-radius:50%;
  display:grid;place-items:center;
  background:var(--green);color:white;
  font-size:.72rem;font-weight:800;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin:30px 0 16px}
.small-note{color:var(--muted);font-size:.9rem;max-width:640px}

.hero-visual{position:relative;min-height:470px}
.visual-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(214,225,233,.95);
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
}
.main-call-card{
  width:min(100%,430px);
  border-radius:28px;
  padding:26px;
  position:absolute;
  left:0;top:46px;
}
.call-top{display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid var(--line);padding-bottom:16px}
.call-label{display:block;color:var(--muted);font-size:.78rem;margin-bottom:2px}
.call-top strong{display:block}
.live-dot{width:11px;height:11px;border-radius:50%;background:#2db36c;box-shadow:0 0 0 6px #e7f7ee}
.chat-bubble{padding:14px 16px;border-radius:16px;margin:18px 0;font-size:.93rem}
.chat-bubble.agent{background:#eef7fc;color:#224a65}
.chat-bubble.customer{background:#f2f4f6;margin-left:45px}
.voice-wave{height:34px;display:flex;align-items:center;gap:5px;justify-content:center}
.voice-wave span{width:4px;background:#4a91bd;border-radius:4px;animation:wave 1.4s infinite ease-in-out}
.voice-wave span:nth-child(1){height:9px}.voice-wave span:nth-child(2){height:18px}.voice-wave span:nth-child(3){height:28px}
.voice-wave span:nth-child(4){height:15px}.voice-wave span:nth-child(5){height:25px}.voice-wave span:nth-child(6){height:12px}.voice-wave span:nth-child(7){height:20px}
@keyframes wave{50%{transform:scaleY(.55);opacity:.7}}
.booking-result{
  background:#eefaf2;border:1px solid #d6f1df;border-radius:14px;
  padding:14px;display:flex;align-items:center;gap:12px
}
.booking-result small{display:block;color:var(--muted)}
.result-icon{width:32px;height:32px;display:grid;place-items:center;border-radius:50%;background:var(--green);color:white;font-weight:800}
.feature-float{
  width:250px;border-radius:22px;padding:18px;
  position:absolute;right:-18px;bottom:18px;
}
.mini-feature{display:flex;align-items:center;gap:10px;padding:10px 0;border-bottom:1px solid #edf1f4;font-size:.91rem;font-weight:600}
.mini-feature:last-child{border-bottom:0}
.mini-feature span{width:29px;height:29px;display:grid;place-items:center;border-radius:8px;background:#edf5fb}

.benefit-strip{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:white}
.benefit-grid{display:grid;grid-template-columns:repeat(5,1fr)}
.benefit{text-align:center;padding:25px 16px;border-right:1px solid var(--line)}
.benefit:last-child{border-right:0}
.benefit strong,.benefit small{display:block}
.benefit strong{font-size:.92rem}
.benefit small{color:var(--muted);font-size:.8rem;margin-top:4px}
.benefit-icon{display:block;font-size:1.8rem;color:var(--blue);margin-bottom:6px}

.section{padding:92px 0}
.section.soft{background:var(--soft)}
.pricing-layout{display:grid;grid-template-columns:360px 1fr;gap:50px;align-items:start}
.price-card{
  background:linear-gradient(150deg,#f0faf4,#f7fbf8);
  border:1px solid #d9eee0;
  border-radius:22px;
  padding:28px;
  box-shadow:0 16px 38px rgba(32,165,90,.08);
}
.price-kicker{color:var(--green);font-size:.76rem;font-weight:800;letter-spacing:.06em}
.price-row{display:flex;align-items:baseline;gap:8px;margin-top:8px}
.price{font-size:3.25rem;font-weight:800;line-height:1}
.currency{font-size:1.8rem;font-weight:800}
.vat{font-size:.86rem;color:var(--muted)}
.payment-pill{
  background:#c9f5d8;color:#164f2c;font-weight:750;
  border-radius:999px;padding:8px 13px;margin:18px 0;font-size:.87rem;
}
.price-list{list-style:none;padding:0;margin:18px 0 22px;display:grid;gap:10px}
.price-list li{position:relative;padding-left:28px}
.price-list li:before{
  content:"✓";position:absolute;left:0;top:2px;width:19px;height:19px;
  display:grid;place-items:center;border-radius:50%;background:var(--green);color:white;font-size:.72rem;font-weight:800
}
.legal-note{font-size:.76rem;color:var(--muted);margin:14px 0 0}
.section-heading p,.section-copy{color:var(--muted);font-size:1.04rem}
.steps{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;margin-top:34px}
.step{padding:18px 14px 18px 0}
.step-no{
  width:28px;height:28px;border-radius:50%;
  display:grid;place-items:center;background:var(--navy);color:white;font-weight:800;font-size:.82rem;margin-bottom:14px
}
.step p{color:var(--muted);font-size:.9rem}

.split{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:center}
.integration-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.integration-card{
  background:white;border:1px solid var(--line);border-radius:18px;padding:22px;
  box-shadow:0 10px 28px rgba(14,46,74,.04)
}
.integration-card span{font-size:1.5rem}
.integration-card strong,.integration-card small{display:block}
.integration-card strong{margin:8px 0 3px}
.integration-card small{color:var(--muted)}

.gdpr-card{
  display:grid;grid-template-columns:90px 1fr 1fr;gap:28px;align-items:start;
  background:linear-gradient(110deg,#f3f9fd,#f7fbff);border:1px solid #deebf4;border-radius:22px;padding:32px;
}
.gdpr-icon{
  width:72px;height:72px;border-radius:20px;display:grid;place-items:center;
  background:white;border:1px solid #d7e7f2;color:var(--navy);font-size:2rem
}
.gdpr-card p{color:var(--muted)}
.gdpr-list{list-style:none;padding:0;margin:0;display:grid;gap:12px}
.gdpr-list li{position:relative;padding-left:27px}
.gdpr-list li:before{content:"✓";position:absolute;left:0;color:var(--green);font-weight:900}

.contact-section{background:linear-gradient(140deg,#0d2c48,#153e61);color:white}
.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:start}
.contact-section p{color:#c8d9e6}
.contact-points{display:grid;gap:10px;margin-top:24px;color:#e8f1f7}
.contact-form{background:white;color:var(--ink);border-radius:22px;padding:25px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
label{display:grid;gap:6px;font-size:.86rem;font-weight:650;margin-bottom:14px}
input,textarea{
  border:1px solid #d7e0e7;border-radius:10px;padding:12px 13px;
  font:inherit;color:var(--ink);background:#fff
}
textarea{resize:vertical}
input:focus,textarea:focus{outline:2px solid #acd1ea;outline-offset:1px}
.consent{grid-template-columns:18px 1fr;align-items:start;font-weight:500;color:var(--muted)}
.consent input{margin-top:4px}
.form-status{font-size:.88rem;min-height:22px;color:var(--muted);margin-bottom:0}

footer{padding:30px 0;background:#081e31;color:white}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:30px}
.footer-logo{color:white}
.footer-inner p{color:#8fa8ba;margin:6px 0 0;font-size:.86rem}
.footer-links{display:flex;gap:20px;color:#bfd0dc;font-size:.86rem}

@media (max-width:1050px){
  .steps{grid-template-columns:repeat(3,1fr)}
  .benefit-grid{grid-template-columns:repeat(3,1fr)}
  .benefit:nth-child(3){border-right:0}
  .benefit:nth-child(-n+3){border-bottom:1px solid var(--line)}
  .benefit-grid .benefit:nth-child(4){grid-column:1/2}
}
@media (max-width:900px){
  .desktop-cta{display:none}
  .menu-btn{
    display:block;margin-left:auto;border:0;background:transparent;font-size:1.5rem;color:var(--navy);cursor:pointer
  }
  nav{
    display:none;position:absolute;left:20px;right:20px;top:70px;
    background:white;border:1px solid var(--line);box-shadow:var(--shadow);
    border-radius:16px;padding:16px;flex-direction:column;align-items:stretch;gap:5px
  }
  nav.open{display:flex}
  nav a{padding:10px 8px}
  .hero-grid,.pricing-layout,.split,.contact-grid{grid-template-columns:1fr}
  .hero-grid{gap:30px;padding-top:60px}
  .hero-visual{min-height:480px;max-width:620px}
  .price-card{max-width:500px}
  .gdpr-card{grid-template-columns:70px 1fr}
  .gdpr-list{grid-column:2}
}
@media (max-width:650px){
  .container{width:min(100% - 28px,1180px)}
  .hero-grid{padding:50px 0}
  h1{font-size:2.75rem}
  .feature-float{right:0;width:220px}
  .benefit-grid{grid-template-columns:1fr 1fr}
  .benefit{border-bottom:1px solid var(--line)}
  .benefit:nth-child(odd){border-right:1px solid var(--line)}
  .benefit:nth-child(even){border-right:0}
  .benefit:last-child{grid-column:1/-1;border-bottom:0}
  .steps{grid-template-columns:1fr}
  .integration-grid,.form-row{grid-template-columns:1fr}
  .gdpr-card{grid-template-columns:1fr}
  .gdpr-list{grid-column:auto}
  .footer-inner{align-items:flex-start;flex-direction:column}
  .footer-links{flex-wrap:wrap}
}


/* Multi-package pricing */
.pricing-heading{max-width:760px}
.pricing-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  align-items:stretch;
}
.pricing-cards .price-card{
  display:flex;
  flex-direction:column;
  position:relative;
}
.pricing-cards .price-list{flex:1}
.price-card.featured{
  border:2px solid #8dd9aa;
  transform:translateY(-8px);
  box-shadow:0 22px 52px rgba(32,165,90,.13);
}
.popular{
  display:inline-block;
  align-self:flex-start;
  margin:-14px 0 15px;
  padding:7px 11px;
  border-radius:999px;
  background:var(--navy);
  color:white;
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.06em;
}
.pricing-footnote{
  max-width:1000px;
  margin:24px auto 0;
  color:var(--muted);
  font-size:.79rem;
  text-align:center;
}
.flow-section{background:#fbfcfd}
@media (max-width:900px){
  .pricing-cards{grid-template-columns:1fr}
  .pricing-cards .price-card{max-width:560px;width:100%;margin:auto}
  .price-card.featured{transform:none}
}

.single-price-wrap{max-width:430px;margin-top:34px}
@media(max-width:650px){.single-price-wrap{max-width:none}}


.brand-green{color:var(--green)}

.segment-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:34px;
}
.segment-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  box-shadow:0 10px 26px rgba(14,46,74,.04);
}
.segment-card span{
  width:42px;height:42px;
  display:grid;place-items:center;
  background:#edf6fb;
  border-radius:12px;
  font-size:1.25rem;
  margin-bottom:12px;
}
.segment-card strong,.segment-card small{display:block}
.segment-card strong{margin-bottom:5px}
.segment-card small{color:var(--muted)}
.company-line{margin-top:2px!important}

.legal-page{max-width:850px}
.legal-page h1{font-size:clamp(2.6rem,5vw,4.5rem)}
.legal-page h2{font-size:1.45rem;margin-top:34px;margin-bottom:10px;letter-spacing:-.025em}
.legal-page p{color:var(--muted)}

@media(max-width:900px){
  .segment-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:650px){
  .segment-grid{grid-template-columns:1fr}
}


/* Live booking demo */
.demo-section{background:#fff}
.demo-heading{max-width:780px;margin-bottom:34px}
.live-demo{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 22px 60px rgba(14,46,74,.10);
  background:#fff;
}
.conversation-panel{padding:26px;background:linear-gradient(155deg,#f5f9fc,#fff)}
.demo-panel-head{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid var(--line);padding-bottom:17px}
.demo-panel-head small,.demo-panel-head strong{display:block}
.demo-panel-head small{font-size:.66rem;color:var(--muted);font-weight:800;letter-spacing:.07em}
.demo-live{font-size:.72rem;font-weight:700;color:var(--green)}
.demo-live span{display:inline-block;width:8px;height:8px;border-radius:50%;background:var(--green);margin-right:5px;box-shadow:0 0 0 5px rgba(32,165,90,.12)}
.demo-phone{display:grid;grid-template-columns:42px 1fr auto;gap:12px;align-items:center;padding:18px 0}
.demo-phone small,.demo-phone strong{display:block}
.demo-phone small{color:var(--muted);font-size:.78rem}
.demo-avatar{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:var(--navy);color:white}
.demo-timer{font-variant-numeric:tabular-nums;color:var(--muted);font-size:.82rem}
.demo-chat{display:flex;flex-direction:column;gap:10px;min-height:345px}
.demo-message{
  max-width:88%;
  padding:12px 14px;
  border-radius:15px;
  font-size:.86rem;
  opacity:.22;
  transform:translateY(5px);
  transition:.35s ease;
}
.demo-message span{display:block;font-size:.67rem;font-weight:800;margin-bottom:3px;color:var(--muted)}
.demo-message.agent{background:#eaf4fa;align-self:flex-start;border-bottom-left-radius:4px}
.demo-message.customer{background:#eef0f2;align-self:flex-end;border-bottom-right-radius:4px}
.demo-message.success{background:#e9f8ef}
.demo-message.active{opacity:1;transform:none}
.demo-note{font-size:.72rem;color:var(--muted);border-top:1px solid var(--line);padding-top:14px;margin-top:14px}
.booking-panel{position:relative;background:#edf2f5;min-width:0}
.browser-bar{height:48px;background:#fff;border-bottom:1px solid var(--line);display:flex;align-items:center;gap:7px;padding:0 14px}
.browser-dot{width:8px;height:8px;border-radius:50%;background:#cbd5dc}
.browser-address{margin-left:7px;background:#f1f4f6;border-radius:7px;padding:6px 12px;font-size:.72rem;color:var(--muted);flex:1}
.sync-status{font-size:.65rem;font-weight:800;color:var(--green)}
.planway-video{display:block;width:100%;height:auto;background:#fff}
.demo-play{
  position:absolute;inset:48px 0 0 0;
  margin:auto;
  width:190px;height:74px;
  align-self:center;
  border:0;border-radius:16px;
  background:rgba(14,46,74,.94);
  color:#fff;
  display:flex;align-items:center;justify-content:center;gap:12px;
  cursor:pointer;box-shadow:0 16px 36px rgba(14,46,74,.24);
  transition:.2s ease;
}
.demo-play:hover{transform:scale(1.025)}
.demo-play.hidden{opacity:0;pointer-events:none}
.demo-play strong,.demo-play small{display:block;text-align:left}
.demo-play small{color:#c9d9e5;font-size:.68rem;margin-top:2px}
.play-icon{font-size:1.3rem}
.demo-result{display:flex;justify-content:center;align-items:center;gap:18px;flex-wrap:wrap;margin-top:22px;font-weight:700;color:var(--navy)}
.demo-result b{color:#8ba0b0}

@media(max-width:900px){
  .live-demo{grid-template-columns:1fr}
  .demo-chat{min-height:auto}
}


.demo-chat{
  max-height:390px;
  overflow-y:auto;
  padding-right:4px;
  scroll-behavior:smooth;
}
.demo-message.current{
  box-shadow:0 0 0 2px rgba(32,165,90,.18);
}


/* Fully simulated synchronized demo */
.sim-demo-shell{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  border:1px solid var(--line);
  border-radius:26px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 24px 64px rgba(14,46,74,.12);
}
.sim-panel{min-width:0}
.sim-conversation{
  padding:26px;
  background:linear-gradient(160deg,#f7fafc 0%,#ffffff 100%);
  border-right:1px solid var(--line);
}
.sim-booking{background:#f3f6f8}
.sim-panel-top,.sim-booking-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.sim-panel-top{padding-bottom:17px;border-bottom:1px solid var(--line)}
.sim-panel-top strong{display:block;font-size:1.02rem}
.sim-kicker{
  display:block;
  color:var(--muted);
  font-size:.67rem;
  font-weight:800;
  letter-spacing:.08em;
  margin-bottom:2px;
}
.sim-call-status,.sim-api-status{
  display:flex;
  align-items:center;
  gap:7px;
  font-size:.72rem;
  font-weight:750;
  color:var(--green);
}
.sim-call-status span,.sim-api-status span{
  width:8px;height:8px;border-radius:50%;background:var(--green);
  box-shadow:0 0 0 5px rgba(32,165,90,.12);
}
.sim-call-card{
  display:grid;
  grid-template-columns:44px 1fr auto;
  gap:12px;
  align-items:center;
  padding:18px 0;
}
.sim-phone-icon{
  width:44px;height:44px;border-radius:50%;
  display:grid;place-items:center;
  background:var(--navy);color:#fff;
}
.sim-call-card strong,.sim-call-card small{display:block}
.sim-call-card small{color:var(--muted);font-size:.77rem}
.sim-timer{font-size:.8rem;color:var(--muted);font-variant-numeric:tabular-nums}
.sim-messages{
  min-height:410px;
  max-height:410px;
  overflow-y:auto;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:2px 4px 10px 0;
  scroll-behavior:smooth;
}
.sim-message{
  max-width:88%;
  padding:12px 14px;
  border-radius:16px;
  font-size:.86rem;
  opacity:.12;
  transform:translateY(7px);
  transition:.32s ease;
}
.sim-message.visible{opacity:1;transform:none}
.sim-message.current{box-shadow:0 0 0 2px rgba(32,165,90,.18)}
.sim-message span{
  display:block;
  font-size:.66rem;
  font-weight:800;
  color:var(--muted);
  margin-bottom:3px;
}
.sim-message.agent{
  align-self:flex-start;
  background:#eaf4fa;
  border-bottom-left-radius:4px;
}
.sim-message.customer{
  align-self:flex-end;
  background:#eef0f2;
  border-bottom-right-radius:4px;
}
.sim-message.success{background:#e8f8ee}
.sim-browser-top{
  height:48px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:0 16px;
  border-bottom:1px solid var(--line);
  background:#fff;
}
.sim-browser-dots{display:flex;gap:5px}
.sim-browser-dots span{width:8px;height:8px;border-radius:50%;background:#cbd5dc}
.sim-browser-url{
  flex:1;
  background:#f3f5f7;
  border-radius:8px;
  padding:6px 11px;
  font-size:.7rem;
  color:var(--muted);
}
.sim-booking-body{padding:26px}
.sim-booking-header h3{margin:3px 0 0;font-size:1.45rem}
.sim-progress{
  width:145px;height:7px;border-radius:999px;background:#dfe6eb;overflow:hidden
}
.sim-progress span{
  display:block;width:0;height:100%;background:var(--green);transition:.5s ease
}
.sim-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:25px;
}
.sim-field{margin:0;gap:6px}
.sim-field.full{grid-column:1/-1}
.sim-field>span{font-size:.75rem;color:var(--muted);font-weight:700}
.sim-input{
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:11px 13px;
  border:1px solid #d7e0e7;
  border-radius:11px;
  background:#fff;
  transition:.3s ease;
}
.sim-input:before{
  content:attr(data-placeholder);
  color:#a3afb8;
  font-size:.84rem;
}
.sim-input.filled:before{display:none}
.sim-value{font-size:.87rem;font-weight:600}
.sim-check{
  opacity:0;
  width:20px;height:20px;border-radius:50%;
  display:grid;place-items:center;
  background:var(--green);color:#fff;
  font-size:.68rem;font-weight:900;
  transition:.25s ease;
}
.sim-input.filled{
  border-color:#a9d9bb;
  box-shadow:0 0 0 3px rgba(32,165,90,.07);
}
.sim-input.filled .sim-check{opacity:1}
.sim-field.active .sim-input{
  border-color:#74b0d5;
  box-shadow:0 0 0 3px rgba(28,93,142,.08)
}
.sim-lookup{
  display:none;
  align-items:center;
  gap:10px;
  margin-top:18px;
  padding:12px 14px;
  background:#eef6fb;
  border-radius:11px;
  font-size:.8rem;
  color:#355168;
}
.sim-lookup.show{display:flex}
.sim-spinner{
  width:16px;height:16px;
  border:2px solid #a9c6d8;
  border-top-color:var(--blue);
  border-radius:50%;
  animation:simspin .8s linear infinite;
}
@keyframes simspin{to{transform:rotate(360deg)}}
.sim-summary{
  display:none;
  align-items:center;
  gap:12px;
  margin-top:18px;
  padding:14px;
  border:1px solid #cdebd8;
  border-radius:13px;
  background:#ecf9f1;
}
.sim-summary.show{display:flex}
.sim-summary-icon{
  width:32px;height:32px;border-radius:50%;
  display:grid;place-items:center;
  background:var(--green);color:#fff;font-weight:900
}
.sim-summary strong,.sim-summary small{display:block}
.sim-summary small{color:var(--muted);font-size:.72rem;margin-top:2px}
.sim-confirm-btn{
  width:100%;
  margin-top:18px;
  border:0;
  border-radius:11px;
  padding:13px 16px;
  background:#cbd4db;
  color:#fff;
  font:inherit;
  font-weight:750;
  transition:.3s ease;
}
.sim-confirm-btn.ready{
  background:var(--navy);
  box-shadow:0 9px 22px rgba(14,46,74,.15)
}
.sim-confirm-btn.done{background:var(--green)}
.sim-controls{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:20px;
}
.sim-controls span{font-size:.78rem;color:var(--muted);margin-left:4px}

@media(max-width:900px){
  .sim-demo-shell{grid-template-columns:1fr}
  .sim-conversation{border-right:0;border-bottom:1px solid var(--line)}
}
@media(max-width:650px){
  .sim-form-grid{grid-template-columns:1fr}
  .sim-field.full{grid-column:auto}
  .sim-progress{width:100px}
}


/* Voice-call demo */
.voice-demo-grid{
  display:grid;
  grid-template-columns:280px .9fr 1.15fr;
  gap:0;
  border:1px solid var(--line);
  border-radius:26px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 24px 64px rgba(14,46,74,.12);
}
.call-screen{
  background:linear-gradient(180deg,#172a3b 0%,#0d1f2e 100%);
  color:#fff;
  padding:26px 22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  min-height:580px;
  border-right:1px solid rgba(255,255,255,.08);
}
.call-status-row{
  display:flex;
  align-items:center;
  gap:8px;
  color:#dff7e7;
  background:rgba(32,165,90,.16);
  border:1px solid rgba(32,165,90,.45);
  border-radius:999px;
  padding:7px 13px;
  font-size:.78rem;
  font-weight:750;
}
.connected-dot{
  width:9px;height:9px;border-radius:50%;
  background:#2fd472;
  box-shadow:0 0 0 5px rgba(47,212,114,.13);
}
.call-timer{
  font-variant-numeric:tabular-nums;
  color:#c9d7e1;
  margin-top:10px;
  font-size:.84rem;
}
.call-logo{
  width:82px;height:82px;border-radius:50%;
  display:grid;place-items:center;
  font-size:2.2rem;
  margin-top:30px;
  background:linear-gradient(145deg,#d17aa8,#b25d8c);
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}
.call-screen h3{margin:14px 0 2px;font-size:1.45rem;letter-spacing:-.02em}
.call-screen>p{margin:0;color:#b7c5d0;font-size:.84rem}
.voice-wave-wrap{
  width:100%;
  min-height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.voice-wave{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  height:90px;
}
.voice-wave span{
  width:5px;
  height:18px;
  border-radius:999px;
  background:#43e184;
  box-shadow:0 0 12px rgba(67,225,132,.35);
  animation:voicePulse 1s ease-in-out infinite;
  animation-play-state:paused;
}
.voice-wave.active span{animation-play-state:running}
.voice-wave span:nth-child(2n){animation-delay:.12s}
.voice-wave span:nth-child(3n){animation-delay:.24s}
.voice-wave span:nth-child(4n){animation-delay:.36s}
.voice-wave span:nth-child(5n){animation-delay:.48s}
@keyframes voicePulse{
  0%,100%{height:14px;opacity:.65}
  50%{height:62px;opacity:1}
}
.call-controls{
  margin-top:auto;
  display:flex;
  justify-content:space-between;
  width:100%;
  gap:12px;
}
.call-control{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:7px;
  color:#dbe5ec;
  font-size:.72rem;
}
.call-control>span{
  width:54px;height:54px;border-radius:50%;
  display:grid;place-items:center;
  background:#21384a;
  border:1px solid rgba(255,255,255,.12);
  font-size:1.25rem;
}
.call-control.hangup>span{
  background:#ef4040;
  transform:rotate(135deg);
}
.simulation-note{
  margin-top:24px;
  font-size:.69rem;
  color:#91a5b4;
}
.chat-panel{
  padding:26px;
  background:linear-gradient(160deg,#f7fafc,#fff);
  border-right:1px solid var(--line);
  min-width:0;
}
.voice-demo-grid .sim-messages{
  margin-top:18px;
  min-height:470px;
  max-height:470px;
}
.voice-demo-grid .sim-booking{min-width:0}
.voice-demo-grid .sim-booking-body{padding:26px}

@media(max-width:1100px){
  .voice-demo-grid{grid-template-columns:240px 1fr}
  .voice-demo-grid .sim-booking{grid-column:1/-1;border-top:1px solid var(--line)}
}
@media(max-width:760px){
  .voice-demo-grid{grid-template-columns:1fr}
  .call-screen{min-height:520px;border-right:0;border-bottom:1px solid var(--line)}
  .chat-panel{border-right:0;border-bottom:1px solid var(--line)}
}


/* Contact form honeypot */
.hp-field{
  position:absolute!important;
  left:-10000px!important;
  top:auto!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
}
.contact-form button[disabled]{
  opacity:.7;
  cursor:wait;
}

/* Personalized AI demo */
.custom-demo-section{background:linear-gradient(180deg,#f7fbff 0%,#fff 100%)}
.custom-demo-heading{max-width:780px;margin-bottom:28px}
.custom-demo-card{background:#fff;border:1px solid #dfe8f2;border-radius:24px;padding:28px;box-shadow:0 18px 50px rgba(16,42,67,.08)}
.custom-demo-fields{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:18px}
.custom-demo-form label{display:flex;flex-direction:column;gap:7px;font-weight:700;color:#102a43}
.custom-demo-form input{width:100%;box-sizing:border-box;border:1px solid #cbd8e6;border-radius:12px;padding:14px 15px;font:inherit;background:#fff;color:#102a43}
.custom-demo-form input:focus{outline:3px solid rgba(36,112,184,.13);border-color:#2470b8}
.custom-demo-note,.custom-demo-try{font-size:.9rem;color:#66788a;margin:12px 0 0}
.custom-demo-status{margin-top:14px;font-weight:650;min-height:22px}
.custom-demo-status.error{color:#a12622}
.custom-demo-result{margin-top:26px;border-top:1px solid #e6edf4;padding-top:26px}
.custom-demo-result-head{display:flex;justify-content:space-between;gap:20px;align-items:flex-start}
.custom-demo-result h3{font-size:1.55rem;margin:5px 0 8px;color:#102a43}
.custom-demo-ready{display:inline-flex;align-items:center;gap:7px;background:#edf9f2;color:#18733d;border-radius:999px;padding:8px 12px;font-weight:750;font-size:.86rem;white-space:nowrap}
.custom-demo-ready i{width:8px;height:8px;border-radius:50%;background:#20a35a;box-shadow:0 0 0 4px rgba(32,163,90,.12)}
.elevenlabs-demo-mount{margin:20px 0;min-height:92px;border-radius:16px;background:#f7fafc;border:1px solid #e1e9f0;padding:16px;display:flex;align-items:center;justify-content:center}
.hp-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important}
@media(max-width:720px){.custom-demo-fields{grid-template-columns:1fr}.custom-demo-card{padding:20px}.custom-demo-result-head{display:block}.custom-demo-ready{margin-top:8px}}


/* Personalized demo v17 */
.custom-demo-progress{
  margin-top:18px;
  padding:16px 0 2px;
}
.custom-demo-progress-bar{
  height:7px;
  overflow:hidden;
  border-radius:999px;
  background:#e7eef5;
}
.custom-demo-progress-bar span{
  display:block;
  width:0;
  height:100%;
  border-radius:inherit;
  background:#2470b8;
  transition:width .65s ease;
}
.custom-demo-progress-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin-top:10px;
  font-size:.78rem;
  color:#8a99a8;
}
.custom-demo-progress-steps span{
  transition:color .2s ease,font-weight .2s ease;
}
.custom-demo-progress-steps span.active{
  color:#2470b8;
  font-weight:750;
}
.custom-demo-progress-steps span.done{
  color:#18733d;
}
.custom-demo-call-hint{
  display:flex;
  align-items:center;
  gap:13px;
  margin:18px 0 4px;
  padding:14px 16px;
  border:1px solid #dce7f1;
  border-radius:14px;
  background:#f7fbff;
}
.custom-demo-call-hint strong,
.custom-demo-call-hint span{
  display:block;
}
.custom-demo-call-hint strong{
  color:#102a43;
  margin-bottom:2px;
}
.custom-demo-call-hint span{
  color:#66788a;
  font-size:.86rem;
}
.custom-demo-mic{
  display:grid!important;
  place-items:center;
  width:42px;
  min-width:42px;
  height:42px;
  border-radius:50%;
  background:#e9f3fb;
  font-size:1.25rem!important;
}
.custom-demo-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}
.elevenlabs-demo-mount elevenlabs-convai{
  width:100%;
}
@media(max-width:720px){
  .custom-demo-progress-steps{
    font-size:.7rem;
  }
  .custom-demo-actions .btn{
    width:100%;
    text-align:center;
  }
}


/* TelefonAgenten custom voice UI v18 */
.ta-voice-card{
  margin:22px 0 10px;
  padding:28px;
  border:2px solid #d8e7f4;
  border-radius:22px;
  background:linear-gradient(180deg,#fbfdff 0%,#f3f8fc 100%);
  text-align:center;
  box-shadow:0 18px 50px rgba(20,55,85,.08);
}
.ta-voice-orb{
  width:82px;
  height:82px;
  margin:0 auto 16px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  background:radial-gradient(circle at 35% 30%,#6dc8ff 0%,#2470b8 45%,#123f6b 100%);
  box-shadow:0 12px 30px rgba(36,112,184,.24);
}
.ta-voice-orb span{
  display:block;
  width:5px;
  height:18px;
  border-radius:999px;
  background:white;
  opacity:.95;
}
.ta-voice-card.is-starting .ta-voice-orb span,
.ta-voice-card.is-connected .ta-voice-orb span{
  animation:taVoiceBars .8s ease-in-out infinite alternate;
}
.ta-voice-card.is-connected .ta-voice-orb{
  box-shadow:0 0 0 10px rgba(36,112,184,.08),0 16px 38px rgba(36,112,184,.28);
}
.ta-voice-card.is-error{
  border-color:#efc5c5;
}
.ta-voice-copy{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
}
.ta-voice-kicker{
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.12em;
  color:#2470b8;
}
.ta-voice-copy strong{
  font-size:1.35rem;
  color:#102a43;
}
.ta-voice-copy > span:last-child{
  color:#68798a;
  font-size:.94rem;
}
.ta-voice-controls{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.ta-start-call{
  appearance:none;
  border:0;
  border-radius:999px;
  padding:16px 28px;
  min-width:240px;
  background:#102a43;
  color:white;
  font:inherit;
  font-weight:800;
  font-size:1.05rem;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(16,42,67,.18);
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.ta-start-call:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(16,42,67,.24);
}
.ta-start-call:disabled{
  cursor:wait;
  opacity:.7;
  transform:none;
}
.ta-start-call-icon{
  margin-right:6px;
}
.ta-end-call{
  appearance:none;
  border:1px solid #cfdbe6;
  border-radius:999px;
  padding:14px 22px;
  background:white;
  color:#243b53;
  font:inherit;
  font-weight:750;
  cursor:pointer;
}
.ta-voice-example{
  margin-top:16px;
  color:#53697c;
  font-size:.88rem;
  font-style:italic;
}
@keyframes taVoiceBars{
  0%{height:12px}
  50%{height:30px}
  100%{height:18px}
}
.ta-voice-orb span:nth-child(2){animation-delay:.12s!important}
.ta-voice-orb span:nth-child(3){animation-delay:.24s!important}
.ta-voice-orb span:nth-child(4){animation-delay:.36s!important}

@media(max-width:720px){
  .ta-voice-card{
    padding:22px 16px;
    border-radius:18px;
  }
  .ta-start-call,
  .ta-end-call{
    width:100%;
  }
}


/* v19: what the full solution includes beyond the demo */
.demo-includes-card{
  margin-top:28px;
  padding:30px;
  border:1px solid #dce7f1;
  border-radius:22px;
  background:#fff;
  box-shadow:0 16px 44px rgba(20,55,85,.06);
}
.demo-includes-card h3{
  margin:6px 0 10px;
  color:#102a43;
  font-size:1.5rem;
}
.demo-includes-card > p{
  max-width:820px;
  color:#5f7182;
  line-height:1.65;
}
.demo-includes-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:22px;
}
.demo-include-item{
  padding:18px;
  border-radius:16px;
  background:#f7fafc;
  border:1px solid #e2ebf2;
}
.demo-include-item strong{
  display:block;
  margin-bottom:6px;
  color:#102a43;
  font-size:1rem;
}
.demo-include-item span{
  display:block;
  color:#66788a;
  line-height:1.55;
  font-size:.93rem;
}
.demo-includes-end{
  margin:22px 0 0!important;
  color:#102a43!important;
}
@media(max-width:720px){
  .demo-includes-card{
    padding:22px 16px;
  }
  .demo-includes-grid{
    grid-template-columns:1fr;
  }
}


/* v20: SMS verification */
.custom-demo-phone-field{
  grid-column:1 / -1;
  max-width:420px;
}
.demo-verify-step{
  margin:18px 0 10px;
  padding:18px;
  border:1px solid #d6e5f2;
  border-radius:16px;
  background:#f7fbff;
}
.demo-code-row{
  display:flex;
  align-items:end;
  gap:12px;
  flex-wrap:wrap;
}
.demo-code-row label{
  flex:1 1 220px;
}
.demo-code-row input{
  letter-spacing:.16em;
  font-weight:800;
  font-size:1.08rem;
}
.demo-resend-code{
  margin-top:10px;
  padding:0;
  border:0;
  background:none;
  color:#2470b8;
  font:inherit;
  font-weight:700;
  cursor:pointer;
}
.demo-resend-code:hover{
  text-decoration:underline;
}
@media(max-width:720px){
  .demo-code-row .btn{
    width:100%;
  }
}
