:root {
  --blue: #0b5faa;
  --blue-dark: #172f6c;
  --blue-deep: #0a1f4f;
  --blue-soft: #eaf4ff;
  --ink: #13233a;
  --muted: #697991;
  --line: #dbe6f4;
  --bg: #f6f9fd;
  --white: #ffffff;
  --danger: #c23131;
  --shadow: 0 24px 80px rgba(15, 38, 75, .16);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(11, 95, 170, .10), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  min-height: 100vh;
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.page-shell { width: min(1440px, 100%); margin: 0 auto; padding: 24px; }
.topbar {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 16px 20px; background: rgba(255,255,255,.86); border: 1px solid var(--line);
  border-radius: 22px; backdrop-filter: blur(12px); box-shadow: 0 16px 50px rgba(23,47,108,.08);
  position: sticky; top: 14px; z-index: 10;
}
.brand img { height: 58px; width: auto; display: block; max-width: min(520px, 52vw); object-fit: contain; }
.topbar-actions { display: flex; align-items: center; gap: 14px; color: var(--blue-dark); font-weight: 700; }
.btn {
  border: 0; border-radius: 999px; padding: 12px 18px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; font-weight: 800; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; box-shadow: 0 16px 30px rgba(11,95,170,.24); }
.btn-secondary { background: var(--blue-soft); color: var(--blue-dark); border: 1px solid #cbdcf4; }
.btn-ghost { background: #fff; color: var(--blue-dark); border: 1px solid var(--line); }
.btn-danger { background: #fff1f1; color: var(--danger); border: 1px solid #ffd2d2; }
.btn-xl { min-height: 56px; padding: 16px 24px; }
.btn-sm { padding: 8px 12px; font-size: 13px; }
.hero {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 44px; align-items: center; padding: 84px 0 36px;
}
.eyebrow { display: inline-flex; gap: 10px; align-items: center; color: var(--blue-dark); font-weight: 900; background: var(--blue-soft); border: 1px solid #cfdef4; border-radius: 999px; padding: 10px 14px; }
.live-dot { width: 10px; height: 10px; background: #1bd175; border-radius: 50%; box-shadow: 0 0 0 6px rgba(27,209,117,.13); }
h1 { font-size: clamp(44px, 5.8vw, 86px); line-height: .98; margin: 24px 0 18px; letter-spacing: -0.055em; color: var(--blue-deep); }
.hero-copy p { font-size: clamp(18px, 1.55vw, 23px); line-height: 1.55; color: var(--muted); max-width: 780px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.trust-row span { background: #fff; color: var(--blue-dark); border: 1px solid var(--line); border-radius: 999px; padding: 9px 12px; font-weight: 800; font-size: 13px; }
.hero-card {
  background: linear-gradient(180deg, #fff, #f7fbff); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow);
  padding: 18px; min-height: 560px; display: flex; flex-direction: column; gap: 16px;
}
.call-preview-header { height: 44px; border-radius: 16px; background: #f0f5fb; display: flex; align-items: center; gap: 8px; padding: 0 14px; color: var(--blue-dark); }
.call-preview-header span { width: 11px; height: 11px; border-radius: 50%; background: #d3deec; }
.call-preview-header strong { margin-left: auto; font-size: 13px; }
.call-preview-screen { position: relative; flex: 1; border-radius: 22px; background: linear-gradient(135deg, #072a62, #0b5faa); padding: 26px; overflow: hidden; }
.portal-wire-card { height: 90px; border-radius: 18px; background: rgba(255,255,255,.94); margin-bottom: 18px; }
.portal-wire-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.portal-wire-grid div { height: 160px; border-radius: 18px; background: rgba(255,255,255,.82); }
.portal-highlight { position: absolute; left: 9%; right: 9%; bottom: 72px; height: 80px; border: 3px solid #fff; border-radius: 20px; box-shadow: 0 0 0 500px rgba(4,18,50,.35); }
.assistant-preview { display: flex; gap: 12px; align-items: center; padding: 16px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.avatar-mini, .assistant-avatar { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; display: grid; place-items: center; font-weight: 900; }
.assistant-preview p { margin: 0; color: var(--ink); font-weight: 700; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 24px 0 60px; }
.value-grid article { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: 0 12px 36px rgba(23,47,108,.06); }
.value-grid h2 { margin: 0 0 8px; color: var(--blue-dark); font-size: 22px; }
.value-grid p { margin: 0; color: var(--muted); line-height: 1.55; }
.hidden { display: none !important; }
.call-app { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); overflow: hidden; margin: 36px 0 80px; }
.call-header { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 16px 18px; border-bottom: 1px solid var(--line); background: #fbfdff; }
.call-title { display: flex; align-items: center; gap: 14px; }
.call-title img { height: 42px; max-width: 310px; object-fit: contain; }
.call-title div { display: grid; gap: 2px; }
.call-title span, #browserStatus { color: var(--muted); font-size: 13px; }
.call-controls { display: flex; align-items: center; gap: 10px; }
#callTimer { color: var(--blue-dark); background: var(--blue-soft); border-radius: 999px; padding: 8px 12px; font-weight: 900; }
.call-grid { display: grid; grid-template-columns: minmax(0, 1fr) 430px; min-height: 740px; }
.portal-panel { border-right: 1px solid var(--line); display: flex; flex-direction: column; min-width: 0; }
.portal-panel-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.portal-panel-header div { display: grid; gap: 4px; }
.browser-stage { position: relative; flex: 1; min-height: 640px; background: #061b3e; overflow: hidden; display: grid; place-items: center; }
#browserFrame { width: 100%; height: 100%; object-fit: contain; display: none; }
.browser-placeholder { text-align: center; max-width: 560px; color: #fff; padding: 28px; }
.browser-placeholder strong { display: block; font-size: 24px; margin: 18px 0 8px; }
.browser-placeholder p { color: rgba(255,255,255,.78); line-height: 1.5; }
.loader { width: 42px; height: 42px; display: inline-block; border: 4px solid rgba(255,255,255,.24); border-top-color: #fff; border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.highlight-box { position: absolute; border: 3px solid #23d38a; border-radius: 12px; box-shadow: 0 0 0 9999px rgba(0,0,0,.22); pointer-events: none; }
.highlight-box span { position: absolute; left: 0; top: -38px; background: #23d38a; color: #062133; border-radius: 999px; padding: 8px 12px; font-size: 13px; font-weight: 900; white-space: nowrap; }
.assistant-panel { padding: 16px; display: flex; flex-direction: column; gap: 14px; min-height: 0; background: #f8fbff; }
.assistant-card { display: flex; gap: 12px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 14px; }
.assistant-card div:last-child { display: grid; gap: 2px; }
.assistant-card span { color: var(--muted); font-size: 13px; }
.messages { flex: 1; overflow: auto; display: flex; flex-direction: column; gap: 12px; padding-right: 2px; min-height: 300px; }
.message { max-width: 92%; border-radius: 18px; padding: 12px 14px; line-height: 1.45; font-size: 15px; }
.message.assistant { background: #fff; border: 1px solid var(--line); align-self: flex-start; }
.message.user { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; align-self: flex-end; }
.message.system { background: #fff8e7; border: 1px solid #ffebb4; color: #6b4a00; align-self: stretch; max-width: 100%; }
.chat-form { display: flex; gap: 10px; align-items: flex-end; }
.chat-form textarea { flex: 1; border: 1px solid var(--line); border-radius: 18px; padding: 13px; resize: none; min-height: 56px; outline: none; }
.chat-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11,95,170,.10); }
.quick-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.quick-actions button { border: 1px solid var(--line); background: #fff; border-radius: 999px; color: var(--blue-dark); padding: 9px 12px; font-weight: 800; font-size: 13px; }
.lead-dialog { border: 0; border-radius: 28px; max-width: 720px; width: calc(100vw - 32px); padding: 0; box-shadow: var(--shadow); }
.lead-dialog::backdrop { background: rgba(6, 18, 42, .58); backdrop-filter: blur(4px); }
.lead-form { position: relative; padding: 28px; }
.dialog-close { position: absolute; right: 18px; top: 14px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-size: 24px; line-height: 1; }
.lead-head img { height: 54px; max-width: min(100%, 520px); object-fit: contain; }
.lead-head h2 { margin: 20px 0 8px; font-size: 32px; color: var(--blue-dark); }
.lead-head p { margin: 0 0 22px; color: var(--muted); line-height: 1.5; }
.lead-form .btn-primary[type="submit"] { min-width: 240px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-grid label { display: grid; gap: 7px; color: var(--blue-dark); font-weight: 900; }
.form-grid .wide { grid-column: 1 / -1; }
input, select { border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; outline: none; background: #fff; }
input:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11,95,170,.10); }
.consents { display: grid; gap: 10px; margin: 18px 0; color: var(--ink); }
.consents label { display: flex; align-items: flex-start; gap: 10px; line-height: 1.35; }
.privacy-note { color: var(--muted); background: #f6f9fd; border: 1px solid var(--line); padding: 14px; border-radius: 16px; line-height: 1.45; }
.dialog-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 18px; }
.toast { position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%) translateY(20px); opacity: 0; pointer-events: none; background: var(--blue-deep); color: #fff; padding: 13px 18px; border-radius: 999px; box-shadow: var(--shadow); transition: all .2s ease; z-index: 30; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-card { min-height: 420px; }
  .value-grid { grid-template-columns: 1fr; }
  .call-grid { grid-template-columns: 1fr; }
  .portal-panel { border-right: 0; border-bottom: 1px solid var(--line); }
  .assistant-panel { min-height: 520px; }
}
@media (max-width: 720px) {
  .page-shell { padding: 12px; }
  .topbar { position: static; align-items: flex-start; }
  .topbar, .call-header, .portal-panel-header { flex-direction: column; align-items: stretch; }
  .brand img, .call-title img { max-width: 100%; height: auto; }
  h1 { font-size: 42px; }
  .hero-ctas, .call-controls, .dialog-actions { flex-direction: column; align-items: stretch; }
  .form-grid { grid-template-columns: 1fr; }
  .lead-form { padding: 20px; }
  .browser-stage { min-height: 420px; }
  .chat-form { flex-direction: column; align-items: stretch; }
}

/* Voice-first videocall layer */
.btn-voice {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b5faa, #172f6c);
  color: #fff;
  box-shadow: 0 18px 36px rgba(11,95,170,.28);
}
.btn-voice::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #23d38a;
  box-shadow: 0 0 0 0 rgba(35,211,138,.55);
  animation: micPulse 1.7s infinite;
}
.btn-voice.is-connecting::after,
.btn-voice.is-active::after {
  content: '';
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle, rgba(255,255,255,.28), transparent 58%);
  animation: voiceSweep 1.8s linear infinite;
}
.voice-card {
  position: relative;
  overflow: hidden;
}
.voice-card::after {
  content: '';
  position: absolute;
  inset: auto -20% -70% -20%;
  height: 90px;
  background: radial-gradient(circle, rgba(11,95,170,.16), transparent 70%);
  opacity: 0;
  transition: opacity .2s ease;
}
.voice-active .voice-card::after { opacity: 1; }
.assistant-avatar {
  position: relative;
  isolation: isolate;
}
.assistant-avatar span { position: relative; z-index: 2; }
.assistant-avatar::before,
.assistant-avatar::after {
  content: '';
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 2px solid rgba(11,95,170,.28);
  opacity: 0;
  transform: scale(.86);
}
.voice-active .assistant-avatar::before {
  animation: avatarWave 1.75s ease-out infinite;
}
.voice-active .assistant-avatar::after {
  animation: avatarWave 1.75s ease-out infinite .55s;
}
.voice-listening .assistant-avatar {
  box-shadow: 0 0 0 8px rgba(35,211,138,.16), 0 18px 38px rgba(11,95,170,.24);
}
.voice-thinking .assistant-avatar {
  animation: thinkingFloat 1.2s ease-in-out infinite alternate;
}
.voice-speaking .assistant-avatar {
  animation: speakingBeat .64s ease-in-out infinite alternate;
}
.voice-hint {
  border: 1px solid #cfe1f5;
  background: linear-gradient(180deg, #fff, #f1f7ff);
  color: var(--blue-dark);
  border-radius: 16px;
  padding: 12px 14px;
  line-height: 1.4;
  font-weight: 800;
  font-size: 13px;
}
.voice-active .voice-hint {
  border-color: rgba(35,211,138,.45);
  box-shadow: 0 12px 30px rgba(11,95,170,.10);
}
.highlight-box {
  animation: highlightPulse 1.4s ease-in-out infinite alternate;
}
@keyframes micPulse {
  0% { box-shadow: 0 0 0 0 rgba(35,211,138,.55); }
  70% { box-shadow: 0 0 0 11px rgba(35,211,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(35,211,138,0); }
}
@keyframes voiceSweep {
  to { transform: rotate(360deg); }
}
@keyframes avatarWave {
  0% { opacity: .75; transform: scale(.86); }
  100% { opacity: 0; transform: scale(1.65); }
}
@keyframes thinkingFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-4px); }
}
@keyframes speakingBeat {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
@keyframes highlightPulse {
  from { box-shadow: 0 0 0 9999px rgba(0,0,0,.22), 0 0 0 0 rgba(35,211,138,.35); }
  to { box-shadow: 0 0 0 9999px rgba(0,0,0,.18), 0 0 0 10px rgba(35,211,138,0); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-voice::before,
  .btn-voice::after,
  .assistant-avatar,
  .assistant-avatar::before,
  .assistant-avatar::after,
  .highlight-box {
    animation: none !important;
  }
}


/* Patch: avvio videocall immediato + feedback visivo per evitare click ripetuti */
.call-launch-overlay {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 9999;
  background: rgba(6, 18, 42, .68);
  backdrop-filter: blur(8px);
  padding: 24px;
}
.call-launch-overlay.show { display: grid; }
.call-launch-card {
  width: min(520px, 92vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
  color: var(--ink);
}
.call-launch-card .loader {
  border-color: rgba(11, 95, 170, .20);
  border-top-color: var(--blue);
  margin-bottom: 14px;
}
.call-launch-card strong { display: block; font-size: 22px; color: var(--blue-dark); margin-bottom: 8px; }
.call-launch-card p { margin: 0 0 10px; color: var(--muted); line-height: 1.45; }
.call-launch-card small { color: var(--muted); }
.launching-call .lead-dialog button[type="submit"] { opacity: .7; pointer-events: none; }
#browserFrame { transition: opacity .18s ease, transform .18s ease; }
.voice-thinking #browserFrame, .is-busy #browserFrame { opacity: .92; transform: scale(.998); }

/* Update UX: focus mode, large 1980x1220 browser view, visual milestones only */
.browser-progress {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.browser-progress span {
  max-width: min(960px, 92%);
  background: rgba(255, 248, 231, .96);
  color: #593f00;
  border: 1px solid #ffebb4;
  box-shadow: 0 16px 42px rgba(0,0,0,.24);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}
body.in-call {
  overflow: hidden;
  background: #06182f;
}
body.in-call::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(3, 12, 29, .82);
  backdrop-filter: blur(10px);
}
body.in-call .page-shell {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  padding: 0;
}
body.in-call .topbar,
body.in-call .hero,
body.in-call .value-grid {
  display: none !important;
}
body.in-call main {
  min-height: 100vh;
}
body.in-call .call-app {
  position: fixed;
  z-index: 1001;
  inset: 18px;
  width: auto;
  height: auto;
  max-width: 1980px;
  max-height: 1220px;
  margin: auto;
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 38px 120px rgba(0,0,0,.55);
  background: #fff;
}
body.in-call .call-header {
  flex: 0 0 58px;
  min-height: 58px;
  padding: 8px 14px;
  background: rgba(255,255,255,.98);
}
body.in-call .call-title img {
  height: 34px;
  max-width: 250px;
}
body.in-call .call-title div { gap: 0; }
body.in-call .call-title strong { font-size: 15px; }
body.in-call .call-title span { font-size: 12px; }
body.in-call .call-controls .btn { padding: 9px 13px; }
body.in-call #callTimer { padding: 7px 10px; }
body.in-call .call-grid {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
}
body.in-call .portal-panel {
  min-width: 0;
  min-height: 0;
  border-right: 1px solid var(--line);
}
body.in-call .portal-panel-header {
  flex: 0 0 44px;
  min-height: 44px;
  padding: 7px 12px;
  background: #fbfdff;
}
body.in-call .portal-panel-header strong { font-size: 13px; }
body.in-call #browserStatus {
  font-size: 11px;
  max-width: 920px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.in-call .portal-panel-header .btn { padding: 7px 10px; font-size: 12px; }
body.in-call .browser-stage {
  flex: 1 1 auto;
  min-height: 0;
  background: #061b3e;
}
body.in-call #browserFrame {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
body.in-call .assistant-panel {
  min-height: 0;
  padding: 10px;
  gap: 10px;
  background: #f8fbff;
}
body.in-call .assistant-card {
  padding: 10px;
  border-radius: 16px;
}
body.in-call .assistant-avatar {
  width: 38px;
  height: 38px;
}
body.in-call .voice-hint {
  padding: 10px 11px;
  font-size: 12px;
}
body.in-call .messages {
  min-height: 0;
  gap: 9px;
}
body.in-call .message {
  font-size: 13px;
  line-height: 1.38;
  padding: 10px 12px;
  border-radius: 15px;
}
body.in-call .message.system {
  display: none;
}
body.in-call .chat-form {
  gap: 8px;
}
body.in-call .chat-form textarea {
  min-height: 48px;
  max-height: 88px;
  padding: 10px 12px;
}
body.in-call .quick-actions {
  gap: 6px;
}
body.in-call .quick-actions button {
  padding: 7px 9px;
  font-size: 11px;
}
@media (min-width: 1600px) {
  body.in-call .call-grid { grid-template-columns: minmax(0, 1fr) 380px; }
  body.in-call .call-app { inset: 20px; }
}
@media (min-width: 2100px) {
  body.in-call .call-app { width: 1980px; height: 1220px; inset: 0; }
}
@media (max-width: 1100px) {
  body.in-call { overflow: auto; }
  body.in-call::before { position: fixed; }
  body.in-call .call-app {
    position: relative;
    inset: auto;
    min-height: calc(100vh - 24px);
    margin: 12px;
  }
  body.in-call .call-grid { grid-template-columns: 1fr; }
  body.in-call .portal-panel { border-right: 0; border-bottom: 1px solid var(--line); }
  body.in-call .browser-stage { min-height: 58vw; }
  body.in-call .assistant-panel { min-height: 420px; }
}
@media (max-width: 720px) {
  body.in-call .call-app { border-radius: 18px; margin: 8px; }
  body.in-call .call-header, body.in-call .portal-panel-header { flex-direction: column; align-items: stretch; height: auto; min-height: auto; }
  body.in-call .call-grid { grid-template-columns: 1fr; }
  body.in-call .browser-stage { min-height: 64vw; }
}

/* Live CDP stream mode: the portal is no longer refreshed by periodic screenshots. */
body.browser-live-stream #browserFrame {
  transition: none;
  image-rendering: auto;
}
body.browser-live-stream .portal-panel-header strong::after {
  content: ' LIVE';
  display: inline-block;
  margin-left: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #23d38a;
  color: #062133;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .04em;
  vertical-align: middle;
}
body.browser-live-stream #refreshSnapshotBtn {
  opacity: .62;
}

/* Brain-sync update: stronger loading overlay while the remote browser executes actions. */
body.browser-action-loading .browser-stage::after {
  content: 'Caricamento risultati in corso';
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(6, 86, 167, .94);
  color: #fff;
  font-weight: 950;
  letter-spacing: .01em;
  box-shadow: 0 16px 40px rgba(0,0,0,.26);
}
body.browser-action-loading .browser-stage::before {
  content: '';
  position: absolute;
  left: calc(50% - 154px);
  top: 36px;
  width: 12px;
  height: 12px;
  z-index: 6;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.48);
  border-top-color: #fff;
  animation: spin .8s linear infinite;
}
body.browser-action-loading .browser-progress {
  bottom: auto;
  top: 72px;
}
body.browser-action-loading .browser-progress span {
  background: rgba(255,255,255,.98);
  color: #11315d;
  border-color: rgba(6,86,167,.22);
  border-radius: 18px;
  padding: 14px 18px;
  max-width: min(760px, 88%);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Unified /demo start page: single wow card, no menu/no extra copy */
body.start-only {
  background:
    radial-gradient(circle at 12% 10%, rgba(11,95,170,.32), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(35,211,138,.18), transparent 30%),
    linear-gradient(135deg, #06182f 0%, #0a1f4f 52%, #020617 100%);
  color: #fff;
}
body.start-only .page-shell {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  padding: 0;
}
.demo-start {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: hidden;
}
.demo-start-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}
.demo-start-card {
  position: relative;
  width: min(560px, 100%);
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 34px;
  padding: 32px;
  box-shadow: 0 38px 120px rgba(0,0,0,.42);
  backdrop-filter: blur(24px);
}
.demo-start-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 34px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(59,130,246,.65), rgba(35,211,138,.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.start-logo-wrap { text-align: center; margin-bottom: 14px; }
.start-logo { width: min(330px, 86%); height: auto; display: inline-block; }
.start-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eaf4ff;
  color: var(--blue-dark);
  border: 1px solid #cbdcf4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.demo-start-card h1 {
  color: var(--blue-deep);
  font-size: clamp(36px, 6vw, 58px);
  line-height: .98;
  margin: 16px 0 12px;
  letter-spacing: -.055em;
}
.start-subtitle {
  margin: 0 0 24px;
  color: #52627a;
  font-size: 16px;
  line-height: 1.55;
}
.start-form-grid { margin-top: 6px; }
.start-form-grid label { color: var(--blue-dark); font-size: 13px; }
.start-consents {
  display: grid;
  gap: 9px;
  margin: 17px 0 18px;
  color: #52627a;
  font-size: 12px;
  line-height: 1.4;
}
.start-consents label { display: flex; gap: 9px; align-items: flex-start; }
.start-consents input { margin-top: 2px; }
.start-cta { width: 100%; min-height: 62px; font-size: 18px; }
.start-note { text-align: center; margin: 13px 0 0; color: #697991; font-size: 13px; }

/* Microphone permission overlay */
.mic-permission-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 6, 23, .88);
  backdrop-filter: blur(18px);
}
.mic-permission-card {
  width: min(560px, 100%);
  background: #fff;
  color: var(--ink);
  border-radius: 32px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 35px 100px rgba(0,0,0,.42);
}
.mic-logo { width: min(270px, 82%); height: auto; margin-bottom: 18px; }
.mic-pulse {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 0 0 rgba(11,95,170,.38);
  animation: micPermissionPulse 1.7s infinite;
}
@keyframes micPermissionPulse {
  0% { box-shadow: 0 0 0 0 rgba(11,95,170,.38); }
  72% { box-shadow: 0 0 0 18px rgba(11,95,170,0); }
  100% { box-shadow: 0 0 0 0 rgba(11,95,170,0); }
}
.mic-permission-card h2 { margin: 0 0 10px; color: var(--blue-dark); font-size: 30px; }
.mic-permission-card p { margin: 0; color: #52627a; line-height: 1.6; }
.mic-steps { display: grid; gap: 10px; margin: 22px 0; text-align: left; }
.mic-steps div {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  background: #f8fbff;
  border-radius: 16px;
  padding: 12px;
  color: #334155;
}
.mic-steps strong {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
}
.mic-permission-card .btn { width: 100%; margin-top: 10px; }
.mic-permission-card small { display: block; margin-top: 14px; color: #697991; line-height: 1.45; }

/* Stronger loading perception during browser actions */
.browser-progress span {
  background: linear-gradient(135deg, rgba(6,24,47,.96), rgba(11,95,170,.96));
  color: #fff;
  border-color: rgba(255,255,255,.25);
  padding: 13px 20px;
  box-shadow: 0 20px 55px rgba(0,0,0,.34);
}
.browser-progress span::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
  background: #23d38a;
  box-shadow: 0 0 0 6px rgba(35,211,138,.18);
}

@media (max-width: 720px) {
  .demo-start { padding: 16px; }
  .demo-start-card { padding: 24px; border-radius: 26px; }
  .demo-start-card h1 { font-size: 38px; }
  .mic-permission-card { padding: 24px; border-radius: 26px; }
}


/* AI Business Room: landing lead ad alto impatto */
body.start-only .demo-start.ai-room {
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.ai-room::before,
.ai-room::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: .72;
  pointer-events: none;
}
.ai-room::before {
  width: 540px;
  height: 540px;
  left: -170px;
  top: -160px;
  background: radial-gradient(circle, rgba(35,211,138,.30), transparent 68%);
  animation: roomGlow 9s ease-in-out infinite alternate;
}
.ai-room::after {
  width: 620px;
  height: 620px;
  right: -210px;
  bottom: -210px;
  background: radial-gradient(circle, rgba(6,86,167,.48), transparent 70%);
  animation: roomGlow 11s ease-in-out infinite alternate-reverse;
}
.ai-room-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.ai-room-grid span {
  position: absolute;
  width: 1px;
  height: 180vh;
  top: -40vh;
  background: linear-gradient(transparent, rgba(255,255,255,.16), transparent);
  transform: rotate(28deg);
  animation: scanLine 8s linear infinite;
}
.ai-room-grid span:nth-child(1) { left: 18%; animation-delay: 0s; }
.ai-room-grid span:nth-child(2) { left: 38%; animation-delay: 1.8s; }
.ai-room-grid span:nth-child(3) { left: 62%; animation-delay: 3.4s; }
.ai-room-grid span:nth-child(4) { left: 84%; animation-delay: 5.2s; }
.ai-room-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .74fr);
  gap: 34px;
  align-items: center;
}
.ai-room-copy {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}
.enhanced-logo { text-align: left; margin-bottom: 20px; }
.enhanced-logo .start-logo { width: min(390px, 94%); filter: drop-shadow(0 20px 45px rgba(0,0,0,.26)); }
.ai-room-copy .start-badge {
  width: fit-content;
  background: rgba(255,255,255,.12);
  color: #dff7ff;
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(16px);
}
.ai-room-copy h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .88;
  letter-spacing: -.07em;
  color: #fff;
  text-shadow: 0 22px 70px rgba(0,0,0,.42);
}
.ai-room-copy .start-subtitle {
  max-width: 690px;
  color: rgba(235,246,255,.84);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.52;
  margin-bottom: 26px;
}
.ai-room-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
}
.ai-room-steps div {
  min-height: 92px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 16px;
  display: grid;
  gap: 7px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
}
.ai-room-steps strong {
  color: #23d38a;
  font-size: 13px;
  letter-spacing: .16em;
}
.ai-room-steps span {
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
}
.ai-orb-wrap {
  position: absolute;
  z-index: 1;
  left: min(45vw, 680px);
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: .65;
  pointer-events: none;
}
.ai-orb {
  position: relative;
  width: min(38vw, 470px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.orb-ring, .orb-core {
  position: absolute;
  border-radius: 50%;
}
.ring-a {
  inset: 8%;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: inset 0 0 80px rgba(35,211,138,.14), 0 0 90px rgba(11,95,170,.26);
  animation: orbRotate 13s linear infinite;
}
.ring-b {
  inset: 20%;
  border: 1px dashed rgba(35,211,138,.58);
  animation: orbRotate 8s linear infinite reverse;
}
.orb-core {
  width: 38%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 35% 30%, #fff, #23d38a 20%, #0b5faa 58%, rgba(11,95,170,.18));
  box-shadow: 0 0 90px rgba(35,211,138,.55), 0 0 160px rgba(11,95,170,.46);
  animation: orbBreath 2.6s ease-in-out infinite alternate;
}
.ai-orb-caption {
  text-align: center;
  color: rgba(255,255,255,.76);
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  margin-top: -34px;
}
.ai-lead-card {
  width: 100%;
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.62);
  box-shadow: 0 40px 140px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.86);
}
.lead-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  background: #eaf4ff;
  border: 1px solid #cbdcf4;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ai-lead-card h2 {
  margin: 16px 0 8px;
  color: var(--blue-deep);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.lead-card-subtitle {
  margin: 0 0 20px;
  color: #52627a;
  line-height: 1.5;
}
.call-ended-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 6, 23, .84);
  backdrop-filter: blur(18px);
}
.call-ended-card {
  width: min(560px, 92vw);
  background: #fff;
  color: var(--ink);
  border-radius: 30px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0,0,0,.48);
}
.call-ended-card strong {
  display: block;
  color: var(--blue-deep);
  font-size: 28px;
  margin-bottom: 10px;
}
.call-ended-card p { color: #52627a; line-height: 1.55; margin: 0; }
@keyframes roomGlow { to { transform: scale(1.08) translateY(24px); opacity: .9; } }
@keyframes scanLine { from { transform: translateX(-12vw) rotate(28deg); } to { transform: translateX(18vw) rotate(28deg); } }
@keyframes orbRotate { to { transform: rotate(360deg); } }
@keyframes orbBreath { to { transform: scale(1.08); filter: saturate(1.28); } }
@media (max-width: 1080px) {
  .ai-room-content { grid-template-columns: 1fr; gap: 18px; }
  .ai-room-copy { min-height: auto; padding: 12px; }
  .ai-room-copy h1 { font-size: clamp(44px, 12vw, 76px); }
  .ai-orb-wrap { left: 70%; top: 22%; opacity: .32; }
  .ai-lead-card { max-width: 680px; justify-self: center; }
}
@media (max-width: 720px) {
  .ai-room-steps { grid-template-columns: 1fr; }
  .enhanced-logo { text-align: center; }
  .ai-room-copy { text-align: center; align-items: center; }
  .ai-room-copy .start-badge { margin: 0 auto; }
  .ai-orb-wrap { display: none; }
  .ai-lead-card h2 { font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .ai-room::before, .ai-room::after, .ai-room-grid span, .orb-ring, .orb-core { animation: none !important; }
}

/* Mobile app-like videocall UX */
.mobile-ai-note,
.mobile-call-nav { display: none; }
.ai-subpanel,
.chat-subpanel {
  display: contents;
}
.delivery-status {
  margin: 16px 0 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #eff6ff;
  color: #0b5faa;
  font-weight: 900;
  text-align: center;
}
.delivery-status.is-ok {
  background: #ecfdf3;
  color: #047857;
}
.delivery-status.is-warning {
  background: #fff7ed;
  color: #c2410c;
}
.delivery-status.is-error {
  background: #fff1f2;
  color: #be123c;
}
.delivery-log {
  margin: -6px 0 18px;
  display: grid;
  gap: 8px;
  text-align: left;
}
.delivery-log.hidden { display: none; }
.delivery-log-row {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.35;
}
.delivery-log-row b {
  display: block;
  margin: 0 0 3px;
  font-size: 12px;
  color: #0f172a;
}
.delivery-log-row span {
  color: #475569;
  word-break: break-word;
}
.delivery-log-row.ok { border-color: #bbf7d0; background: #f0fdf4; }
.delivery-log-row.ko { border-color: #fecdd3; background: #fff1f2; }
.delivery-log-row.ko span { color: #be123c; }
.call-ended-card .btn {
  width: 100%;
}

@media (max-width: 820px) {
  html, body {
    min-height: 100%;
    overscroll-behavior: none;
  }
  body.in-call {
    overflow: hidden;
    background: #06182f;
  }
  body.in-call::before {
    display: none;
  }
  body.in-call .call-app {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    margin: 0;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background: #06182f;
    padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
  }
  body.in-call .call-header {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 12px 8px;
    background: #ffffff;
    border-bottom: 1px solid rgba(219,230,244,.9);
  }
  body.in-call .call-title {
    align-items: center;
    gap: 10px;
    min-width: 0;
  }
  body.in-call .call-title img {
    height: 30px;
    max-width: 170px;
  }
  body.in-call .call-title strong {
    font-size: 14px;
  }
  body.in-call .call-title span {
    display: block;
    max-width: 92vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  body.in-call .call-controls {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    align-items: center;
  }
  body.in-call #callTimer {
    justify-self: start;
    min-width: 58px;
    padding: 9px 10px;
  }
  body.in-call #voiceBtn {
    width: 100%;
    min-height: 42px;
    font-size: 13px;
    padding: 10px 12px;
  }
  body.in-call #endDemoBtn {
    min-height: 42px;
    padding: 10px 13px;
  }
  body.in-call .call-grid {
    flex: 1 1 auto;
    min-height: 0;
    display: block;
    position: relative;
    background: #06182f;
    padding-bottom: 74px;
  }
  body.in-call .app-panel {
    display: none !important;
  }
  body.in-call .app-panel.is-active {
    display: flex !important;
  }
  body.in-call .portal-panel.app-panel.is-active {
    position: absolute;
    inset: 0 0 74px 0;
    flex-direction: column;
    min-height: 0;
    border: 0;
    background: #06182f;
  }
  body.in-call .assistant-panel {
    position: absolute;
    inset: 0 0 74px 0;
    display: block;
    padding: 12px;
    min-height: 0;
    background: #f6f9fd;
    overflow: hidden;
  }
  body.in-call .assistant-panel .ai-subpanel.app-panel.is-active,
  body.in-call .assistant-panel .chat-subpanel.app-panel.is-active {
    height: 100%;
    min-height: 0;
    flex-direction: column;
    gap: 12px;
  }
  body.in-call.mobile-panel-portal .assistant-panel {
    display: none;
  }
  body.in-call.mobile-panel-ai .chat-subpanel,
  body.in-call.mobile-panel-chat .ai-subpanel {
    display: none !important;
  }
  body.in-call.mobile-panel-chat .quick-actions {
    display: none;
  }
  body.in-call.mobile-panel-ai .quick-actions {
    display: flex;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 86px;
    max-height: 35vh;
    overflow: auto;
    padding-bottom: 4px;
  }
  body.in-call .mobile-ai-note {
    display: block;
    padding: 12px 14px;
    border-radius: 18px;
    background: #eef6ff;
    color: #0b376f;
    border: 1px solid #cfe0f6;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
  }
  body.in-call .portal-panel-header {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 9px 11px;
    border-radius: 0;
  }
  body.in-call .portal-panel-header .btn {
    font-size: 11px;
    padding: 8px 9px;
  }
  body.in-call .browser-stage {
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
    background: #020617;
  }
  body.in-call #browserFrame {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  body.browser-action-loading .browser-stage::after {
    top: 12px;
    max-width: calc(100vw - 28px);
    white-space: normal;
    text-align: center;
    border-radius: 18px;
    padding: 10px 14px;
    font-size: 12px;
  }
  body.browser-action-loading .browser-stage::before {
    display: none;
  }
  body.browser-action-loading .browser-progress {
    top: 62px;
  }
  body.in-call .assistant-card {
    flex: 0 0 auto;
    padding: 16px;
    border-radius: 22px;
    box-shadow: 0 14px 38px rgba(15,38,75,.10);
  }
  body.in-call .assistant-avatar {
    width: 52px;
    height: 52px;
  }
  body.in-call .voice-hint {
    flex: 0 0 auto;
    padding: 14px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.42;
  }
  body.in-call .messages {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    padding: 4px 2px 10px;
  }
  body.in-call .message {
    font-size: 14px;
    line-height: 1.45;
    padding: 12px 14px;
    border-radius: 18px;
  }
  body.in-call .chat-form {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 8px 0 0;
  }
  body.in-call .chat-form textarea {
    min-height: 48px;
    max-height: 108px;
    border-radius: 18px;
    font-size: 16px;
  }
  body.in-call .chat-form .btn {
    border-radius: 18px;
    padding: 12px 14px;
  }
  .mobile-call-nav {
    position: fixed;
    z-index: 1005;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    height: 58px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 7px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(6,24,47,.92);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
  }
  .mobile-call-nav button {
    position: relative;
    border: 0;
    border-radius: 18px;
    background: rgba(255,255,255,.09);
    color: rgba(255,255,255,.78);
    font-weight: 950;
    letter-spacing: .01em;
  }
  .mobile-call-nav button.is-active {
    background: #ffffff;
    color: #0b5faa;
  }
  .mobile-call-nav button.has-update::after {
    content: '';
    position: absolute;
    right: 13px;
    top: 9px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #23d38a;
    box-shadow: 0 0 0 5px rgba(35,211,138,.18);
  }
  .call-ended-overlay {
    z-index: 2000;
  }
  .call-ended-card {
    width: min(420px, calc(100vw - 28px));
    padding: 24px;
    border-radius: 26px;
  }
}

@media (max-width: 560px) {
  .demo-start {
    min-height: 100dvh;
    padding: 18px 12px;
  }
  .ai-room-content {
    gap: 16px;
  }
  .ai-room-copy h1 {
    font-size: clamp(30px, 10vw, 46px);
    line-height: 1.02;
  }
  .start-subtitle {
    font-size: 15px;
  }
  .ai-room-steps {
    grid-template-columns: 1fr;
  }
  .demo-start-card {
    padding: 22px 18px;
    border-radius: 26px;
  }
  .start-form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .start-cta {
    width: 100%;
    min-height: 54px;
  }
}

/* Preview approvata /demo: spiegazione demo e attivazione voce senza coupon in home */
.start-voice-panel {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 700px;
  margin-top: 20px;
  border: 1px solid rgba(255,209,102,.36);
  background: linear-gradient(135deg, rgba(255,209,102,.14), rgba(255,255,255,.07));
  border-radius: 22px;
  padding: 17px 18px;
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0,0,0,.16);
}
.start-voice-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #ffd166;
  background: rgba(255,209,102,.16);
  border: 1px solid rgba(255,209,102,.26);
}
.start-voice-panel strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
}
.start-voice-panel p {
  margin: 0;
  color: rgba(235,246,255,.82);
  font-size: 14px;
  line-height: 1.52;
}
@media (max-width: 720px) {
  .start-voice-panel {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 560px) {
  .start-voice-panel {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
  }
}
