@font-face {
  font-family: "MezaCall";
  src: local("Avenir Next"), local("Avenir");
  font-weight: 400;
  font-display: swap;
}

:root {
  --paper: #f7f7f4;
  --paper-2: #efefe9;
  --white: #ffffff;
  --ink: #0b1638;
  --text: #2f3853;
  --muted: #72798b;
  --line: #d9dbd7;
  --line-soft: #e8e9e4;
  --blue: #2879f6;
  --violet: #6744df;
  --violet-soft: #ebe8fb;
  --blue-soft: #e8f0fe;
  --mint: #e3f3ec;
  --mint-ink: #28775b;
  --rose: #f6e8eb;
  --rose-ink: #9d4c5d;
  --sand: #efe9da;
  --font: "MezaCall", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --radius: 22px;
  --shadow: 0 28px 70px rgba(22, 28, 50, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
input, select { color: var(--ink); }
.wrap { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.skip-link { position: fixed; left: 14px; top: -60px; z-index: 1000; padding: 10px 14px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { top: 14px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 247, 244, .94);
  border-bottom: 1px solid rgba(217, 219, 215, .86);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 72px; display: flex; align-items: center; gap: 30px; }
.brand img { width: 168px; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.main-nav a, .login-link { color: #4f576d; font-size: 13px; font-weight: 600; }
.main-nav a:hover, .login-link:hover { color: var(--violet); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 16px; border-radius: 999px; background: var(--ink); color: white; font-size: 12px; font-weight: 700; }
.header-cta:hover { background: #14244f; }
.menu-button, .mobile-nav { display: none; }

/* Shared typography */
.kicker, .eyebrow, .lead-kicker {
  margin: 0 0 18px;
  color: #6f7484;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2 { letter-spacing: -.05em; }
.section { padding: 118px 0; }
.section-heading h2, .problem-intro h2, .usecases-copy h2, .comparison-copy h2, .trust-title h2, .faq-copy h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 69px);
  line-height: .99;
  font-weight: 600;
}
.section-heading > p:last-child, .usecases-copy > p, .comparison-copy > p, .faq-copy > p, .final-cta-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { background: #152650; }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid #bbbdb7; }
.btn-secondary:hover { background: white; }
.btn-light { background: white; color: var(--ink); }
.btn-full { width: 100%; }
.text-link, .mini-cta { display: inline-flex; align-items: center; gap: 8px; width: fit-content; font-size: 13px; font-weight: 800; border-bottom: 1px solid #adb0b8; padding-bottom: 3px; }
.mini-cta { color: var(--violet); border-bottom-color: #c5bce9; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 0;
  background: var(--paper);
}
.hero-signal {
  position: absolute;
  top: -210px;
  left: -110px;
  width: 760px;
  opacity: .045;
  pointer-events: none;
  transform: rotate(-8deg);
  filter: grayscale(1);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .78fr;
  gap: 90px;
  align-items: center;
}
.hero-copy { padding: 20px 0 68px; }
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow > span { width: 8px; height: 8px; border-radius: 50%; background: #3bb987; box-shadow: 0 0 0 5px rgba(59, 185, 135, .11); }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(61px, 6.1vw, 94px);
  line-height: .92;
  font-weight: 600;
}
.hero h1 em { display: inline; font-style: normal; color: var(--violet); }
.hero-text { max-width: 690px; margin: 28px 0 0; color: var(--text); font-size: 18px; line-height: 1.68; }
.hero-benefits { margin-top: 28px; display: grid; gap: 10px; }
.hero-benefits span { display: flex; align-items: center; gap: 10px; color: #51596f; font-size: 13px; font-weight: 600; }
.hero-benefits i { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--violet-soft); color: var(--violet); font-size: 10px; font-style: normal; font-weight: 900; }
.hero-secondary { margin-top: 34px; display: flex; align-items: center; gap: 26px; }
.hero-secondary p { margin: 0; max-width: 330px; color: #8a8f9d; font-size: 10px; line-height: 1.5; }

/* Lead card */
.lead-card {
  position: relative;
  margin-bottom: 54px;
  padding: 28px;
  border: 1px solid #d6d8d4;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}
.lead-card::before { content: ""; position: absolute; inset: 10px -10px -10px 10px; z-index: -1; border-radius: 26px; background: #eae9f5; }
.lead-card-head { padding-bottom: 20px; border-bottom: 1px solid #ecece8; }
.lead-kicker { margin-bottom: 10px; color: var(--violet); }
.lead-card h2 { max-width: 440px; margin: 0; font-size: 31px; line-height: 1.03; letter-spacing: -.035em; font-weight: 600; }
.lead-card-head > p:last-child { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.lead-form { display: grid; gap: 13px; margin-top: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lead-form label, .bottom-form label { display: grid; gap: 6px; }
.lead-form label > span, .bottom-form label > span { color: #5e6577; font-size: 10px; font-weight: 800; letter-spacing: .035em; }
.lead-form input, .lead-form select, .bottom-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #dedfdb;
  border-radius: 11px;
  background: #fbfbf9;
  padding: 0 13px;
  outline: none;
  font-size: 13px;
}
.lead-form input:focus, .lead-form select:focus, .bottom-form input:focus { border-color: #9d90db; box-shadow: 0 0 0 3px rgba(103, 68, 223, .08); }
.lead-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #777d8c 50%), linear-gradient(135deg, #777d8c 50%, transparent 50%); background-position: calc(100% - 17px) 19px, calc(100% - 12px) 19px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.form-note { margin: -2px 5px 0; color: #979ba6; font-size: 9px; line-height: 1.45; }
.form-success { padding: 12px 14px; border-radius: 10px; background: var(--mint); color: var(--mint-ink); font-size: 11px; font-weight: 700; }
.hero-proofline { min-height: 84px; display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: 40px; border-top: 1px solid var(--line); }
.hero-proofline > span { color: #8a8f9d; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.proofline-items { display: grid; grid-template-columns: repeat(4, 1fr); }
.proofline-items b { padding-left: 20px; border-left: 1px solid var(--line); color: #535b70; font-size: 12px; font-weight: 600; }

/* Problem */
.problem-section { padding: 90px 0; background: #eeeee9; border-block: 1px solid var(--line); }
.problem-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 105px; }
.problem-intro h2 { max-width: 540px; }
.problem-list { border-top: 1px solid #ced0ca; }
.problem-list article { display: grid; grid-template-columns: 55px 1fr; column-gap: 20px; padding: 25px 0; border-bottom: 1px solid #ced0ca; }
.problem-list article > span { grid-row: 1 / 3; color: #a1a49f; font-size: 10px; letter-spacing: .1em; }
.problem-list h3 { margin: 0; font-size: 18px; letter-spacing: -.02em; }
.problem-list p { margin: 6px 0 0; color: #73798a; font-size: 12px; }

/* Product */
.product-section { background: #fff; }
.marketing-heading { display: grid; grid-template-columns: 1.12fr .88fr; align-items: end; gap: 90px; margin-bottom: 64px; }
.marketing-heading h2 { max-width: 760px; }
.heading-side > p { margin: 0 0 22px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.product-layout { display: grid; grid-template-columns: 345px 1fr; min-height: 590px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-nav { display: flex; flex-direction: column; padding: 18px 34px 18px 0; border-right: 1px solid var(--line); }
.product-tab { position: relative; display: grid; grid-template-columns: 34px 1fr; gap: 14px; text-align: left; padding: 21px 0; border: 0; border-bottom: 1px solid #ecece8; background: transparent; color: #7e8494; }
.product-tab:last-child { border-bottom: 0; }
.product-tab > span { padding-top: 3px; color: #a5a9b2; font-size: 9px; letter-spacing: .1em; }
.product-tab strong { display: block; color: inherit; font-size: 16px; }
.product-tab small { display: block; margin-top: 5px; color: #9a9ea9; font-size: 10px; line-height: 1.45; }
.product-tab.is-active { color: var(--ink); }
.product-tab.is-active::after { content: ""; position: absolute; right: -35px; top: 50%; width: 3px; height: 34px; transform: translateY(-50%); border-radius: 9px; background: var(--violet); }
.product-preview { align-self: center; margin: 36px 0 36px 38px; overflow: hidden; border: 1px solid #dfe0dc; border-radius: 22px; background: var(--white); box-shadow: 0 20px 55px rgba(18, 27, 55, .06); }
.preview-topbar { height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid #ecece8; background: #fafaf8; }
.preview-brand { display: flex; align-items: center; gap: 9px; font-size: 11px; }
.preview-brand > span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 8px; background: var(--ink); color: white; font-size: 9px; }
.preview-status { display: flex; align-items: center; gap: 7px; color: #747b8c; font-size: 10px; }
.preview-status i { width: 7px; height: 7px; border-radius: 50%; background: #3db982; }
.preview-panel { display: none; min-height: 455px; padding: 28px; }
.preview-panel.is-active { display: block; animation: panel-in .24s ease; }
@keyframes panel-in { from { opacity: .2; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.panel-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.panel-head small { color: #9297a4; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.panel-head h3 { margin: 3px 0 0; font-size: 21px; letter-spacing: -.025em; }
.line-chip { padding: 7px 10px; border: 1px solid #e0e1dc; border-radius: 999px; color: #73798b; font-size: 9px; white-space: nowrap; }
.softphone-card { max-width: 630px; padding: 22px; border: 1px solid #e5e5e0; border-radius: 16px; background: #fbfbf9; }
.softphone-card > label { color: #9397a3; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.dial-field { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 53px; margin-top: 7px; padding: 8px 9px 8px 14px; border: 1px solid #dedfda; border-radius: 11px; background: white; font-size: 14px; }
.dial-field button { border: 0; border-radius: 999px; background: var(--ink); color: white; padding: 9px 14px; font-size: 10px; font-weight: 700; }
.recent-title { margin: 22px 0 7px; color: #9297a3; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.recent-call { display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: center; min-height: 57px; border-top: 1px solid #e9e9e5; }
.recent-call strong, .recent-call small { display: block; }
.recent-call strong { font-size: 11px; }
.recent-call small, .recent-call time { color: #9297a3; font-size: 9px; }
.avatar.small { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%; font-size: 8px; font-weight: 800; font-style: normal; }
.avatar.violet { background: var(--violet-soft); color: var(--violet); }
.avatar.blue { background: var(--blue-soft); color: var(--blue); }
.avatar.neutral { background: #ecece7; color: #6a7080; }
.avatar.sand { background: var(--sand); color: #7d6742; }
.history-list { border-top: 1px solid #e7e8e3; }
.history-line { display: grid; grid-template-columns: 1.25fr .8fr .5fr .7fr; gap: 14px; align-items: center; min-height: 62px; border-bottom: 1px solid #ebebe7; font-size: 10px; }
.history-line.head { min-height: 38px; color: #969aa5; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.history-line b, .history-line small { display: block; }
.history-line small { color: #9a9ea9; margin-top: 2px; font-size: 8px; }
.status-badge { width: fit-content; padding: 5px 7px; border-radius: 999px; font-size: 8px; }
.status-badge.ok { background: var(--mint); color: var(--mint-ink); }
.status-badge.missed { background: var(--rose); color: var(--rose-ink); }
.team-preview { border-top: 1px solid #e7e8e3; }
.team-preview > div { display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: center; min-height: 67px; border-bottom: 1px solid #ebebe7; font-size: 11px; }
.team-preview em { display: flex; align-items: center; gap: 7px; color: #5e896f; font-size: 9px; font-style: normal; }
.team-preview em i { width: 7px; height: 7px; border-radius: 50%; background: #3db982; }
.team-preview em.busy { color: var(--violet); }
.team-preview em.busy i { background: var(--violet); }
.team-preview em.off { color: #999da6; }
.team-preview em.off i { background: #b7bac2; }
.numbers-preview { border-top: 1px solid #e7e8e3; }
.numbers-preview > div { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 72px; border-bottom: 1px solid #ebebe7; }
.numbers-preview b, .numbers-preview small { display: block; }
.numbers-preview b { font-size: 12px; }
.numbers-preview small { margin-top: 2px; color: #999da7; font-size: 8px; }
.numbers-preview strong { padding: 7px 10px; border: 1px solid #dedfda; border-radius: 999px; color: #62697b; font-size: 8px; font-weight: 700; }

/* Use cases */
.usecases { background: #ecece7; }
.usecases-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.usecases-copy { position: sticky; top: 120px; align-self: start; }
.usecases-copy > p { max-width: 470px; margin: 22px 0 28px; }
.usecase-list { border-top: 1px solid #cccec8; }
.usecase-list article { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: start; padding: 29px 0; border-bottom: 1px solid #cccec8; }
.usecase-no { display: none; }
.usecase-list h3 { margin: 0; font-size: 20px; letter-spacing: -.025em; }
.usecase-list p { margin: 7px 0 0; color: #73798a; font-size: 12px; line-height: 1.6; }
.usecase-tag { margin-top: 2px; padding: 6px 8px; border: 1px solid #c7c9c2; border-radius: 999px; color: #777d8b; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }

/* Feature lines */
.feature-section { background: var(--paper); }
.compact-heading { max-width: 820px; margin-bottom: 60px; }
.compact-heading > p:last-child { max-width: 660px; margin-top: 20px; }
.feature-lines { border-top: 1px solid var(--line); }
.feature-lines article { display: grid; grid-template-columns: 70px 1fr 160px; gap: 28px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); }
.feature-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid #d0d2cd; color: #8b8f99; font-size: 9px; }
.feature-lines h3 { margin: 0; font-size: 19px; letter-spacing: -.02em; }
.feature-lines p { max-width: 650px; margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.feature-lines article > strong { justify-self: end; color: #9397a1; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }


/* MezaCall + Normdesk */
.ai-section {
  background: #f3f2ed;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ai-intro {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 58px;
}
.ai-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: .99;
  letter-spacing: -.052em;
  font-weight: 600;
}
.ai-intro h2 em {
  color: var(--violet);
  font-style: normal;
}
.ai-intro-copy p {
  max-width: 510px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.ai-readable-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 68px;
  align-items: start;
}
.ai-roles {
  border-top: 1px solid #d0d1cb;
}
.ai-roles article {
  padding: 28px 0 30px;
  border-bottom: 1px solid #d0d1cb;
}
.ai-role-label {
  display: block;
  margin-bottom: 15px;
  color: #91958f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.ai-roles h3 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -.035em;
}
.ai-roles p {
  max-width: 460px;
  margin: 8px 0 18px;
  color: #777d8c;
  font-size: 12px;
  line-height: 1.6;
}
.ai-roles ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ai-roles li {
  position: relative;
  padding: 8px 0 8px 15px;
  border-top: 1px solid #e0e0da;
  color: #555d70;
  font-size: 10px;
}
.ai-roles li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
}
.ai-flow-card {
  overflow: hidden;
  border: 1px solid #d7d8d2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(18, 27, 55, .05);
}
.ai-flow-head {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 22px 24px;
  border-bottom: 1px solid #e7e7e2;
  background: #fafaf8;
}
.ai-flow-head span {
  color: #90949f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ai-flow-head strong {
  font-size: 14px;
  font-weight: 700;
}
.ai-flow-list {
  margin: 0;
  padding: 0 24px;
  list-style: none;
  counter-reset: none;
}
.ai-flow-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #ecece7;
}
.ai-flow-list li > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #d6d7d1;
  border-radius: 50%;
  color: #777d88;
  font-size: 9px;
  font-weight: 800;
}
.ai-flow-list strong {
  display: block;
  margin-top: 2px;
  font-size: 13px;
}
.ai-flow-list p {
  margin: 5px 0 0;
  color: #7b8190;
  font-size: 11px;
  line-height: 1.55;
}
.ai-simple-note {
  margin: 0;
  padding: 18px 24px 20px;
  color: #6f7686;
  background: #f7f7f3;
  font-size: 10px;
  line-height: 1.65;
}
.ai-simple-note strong { color: var(--ink); }

/* Comparison */
.comparison-section { background: #fff; }
.comparison-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.comparison-copy > p { max-width: 500px; margin-top: 24px; }
.comparison-table { border-top: 1px solid var(--line); }
.comparison-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; align-items: center; min-height: 68px; padding: 0 4px; border-bottom: 1px solid var(--line); font-size: 11px; }
.comparison-row.head { min-height: 45px; color: #9297a3; font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.comparison-row strong { font-size: 11px; }
.comparison-row > span:not(.positive) { color: #818697; }
.comparison-row .positive { width: fit-content; padding: 7px 9px; border-radius: 999px; background: var(--mint); color: var(--mint-ink); font-weight: 700; }

/* Trust */
.trust-section { background: var(--ink); color: white; }
.trust-section .kicker { color: #9ea6bf; }
.trust-title h2 { color: white; max-width: 740px; }
.trust-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.trust-list { border-top: 1px solid #303a5f; }
.trust-list article { display: grid; grid-template-columns: 55px 1fr; gap: 16px; padding: 25px 0; border-bottom: 1px solid #303a5f; }
.trust-list article > span { color: #7883a4; font-size: 9px; letter-spacing: .1em; }
.trust-list h3 { margin: 0; color: white; font-size: 17px; }
.trust-list p { margin: 6px 0 0; color: #b7bed0; font-size: 12px; }

/* Onboarding */
.onboarding-section { background: #efefe9; }
.center-heading { max-width: 820px; margin: 0 auto 60px; text-align: center; }
.center-heading > p:last-child { max-width: 680px; margin: 20px auto 0; }
.onboarding-steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d2d3ce; border-bottom: 1px solid #d2d3ce; }
.onboarding-steps article { min-height: 260px; padding: 28px 28px 30px; border-right: 1px solid #d2d3ce; }
.onboarding-steps article:last-child { border-right: 0; }
.onboarding-steps article > span { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid #c7c9c3; border-radius: 50%; color: #83888d; font-size: 10px; }
.onboarding-steps h3 { max-width: 280px; margin: 55px 0 10px; font-size: 18px; letter-spacing: -.02em; }
.onboarding-steps p { margin: 0; color: var(--muted); font-size: 12px; }

/* FAQ */
.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-copy { position: sticky; top: 110px; align-self: start; }
.faq-copy > p { max-width: 440px; margin: 22px 0 25px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 15px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--violet); font-size: 20px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: 14px 42px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

/* Final CTA */
.final-cta { padding: 100px 0; background: #e8e5f6; }
.final-cta-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.final-cta-copy > p { max-width: 660px; margin: 22px 0 0; color: #626a80; }
.bottom-form { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; padding: 24px; border: 1px solid #d1cee2; border-radius: 20px; background: rgba(255, 255, 255, .55); }
.bottom-form .btn { grid-column: 1 / -1; }
.bottom-form .form-success { grid-column: 1 / -1; }
.bottom-form input { background: white; }

/* Footer */
.site-footer { padding: 64px 0 26px; border-top: 1px solid var(--line); background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr .8fr; gap: 55px; }
.footer-brand img { width: 160px; }
.footer-brand p { max-width: 390px; margin: 16px 0 0; color: #7d8392; font-size: 11px; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-col strong { margin-bottom: 3px; font-size: 11px; }
.footer-col a { color: #6f7688; font-size: 10px; }
.footer-col a:hover { color: var(--violet); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 48px; padding-top: 18px; border-top: 1px solid var(--line); color: #979ba3; font-size: 9px; }
.mobile-conversion { display: none; }

/* Responsive */
@media (max-width: 1020px) {
  .main-nav, .header-actions { display: none; }
  .menu-button { margin-left: auto; display: flex; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
  .menu-button span { width: 16px; height: 1px; background: var(--ink); }
  .mobile-nav { padding: 16px 22px 22px; background: var(--paper); border-bottom: 1px solid var(--line); }
  .mobile-nav.is-open { display: grid; gap: 12px; }
  .mobile-nav a { font-size: 13px; }
  .mobile-nav-cta { margin-top: 5px; padding: 11px 14px; border-radius: 999px; background: var(--ink); color: white; text-align: center; font-weight: 700; }
  .hero-grid, .problem-grid, .marketing-heading, .usecases-grid, .comparison-grid, .trust-grid, .faq-grid, .final-cta-grid { grid-template-columns: 1fr; }
  .ai-intro, .ai-readable-grid { grid-template-columns: 1fr; }
  .ai-intro { gap: 28px; }
  .ai-readable-grid { gap: 46px; }
  .hero-grid { gap: 15px; }
  .hero-copy { padding-bottom: 36px; text-align: center; }
  .eyebrow, .hero-benefits span, .hero-secondary { justify-content: center; }
  .hero-text { margin-inline: auto; }
  .hero-benefits { width: fit-content; margin-inline: auto; text-align: left; }
  .hero-secondary { flex-direction: column; gap: 14px; }
  .lead-card { width: min(650px, 100%); margin: 0 auto 55px; }
  .hero-proofline { grid-template-columns: 1fr; gap: 15px; padding: 20px 0; }
  .hero-proofline > span { text-align: center; }
  .proofline-items b:first-child { border-left: 0; }
  .problem-grid, .marketing-heading, .usecases-grid, .comparison-grid, .trust-grid, .faq-grid, .final-cta-grid { gap: 52px; }
  .product-layout { grid-template-columns: 1fr; }
  .product-nav { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-tab { grid-template-columns: 1fr; gap: 4px; padding: 15px 12px; border-right: 1px solid #ecece8; border-bottom: 0; }
  .product-tab:last-child { border-right: 0; }
  .product-tab > span, .product-tab small { display: none; }
  .product-tab strong { font-size: 12px; }
  .product-tab.is-active::after { left: 10px; right: auto; top: auto; bottom: -1px; width: calc(100% - 20px); height: 2px; transform: none; }
  .product-preview { margin: 26px 0 0; }
  .usecases-copy, .faq-copy { position: static; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / 4; }
}

@media (max-width: 700px) {
  body { padding-bottom: 67px; }
  .wrap { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 66px; }
  .brand img { width: 148px; }
  .hero { padding-top: 62px; }
  .hero h1 { font-size: clamp(49px, 14vw, 68px); }
  .hero-text { font-size: 16px; }
  .hero-secondary p { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .lead-card { padding: 21px; border-radius: 20px; }
  .lead-card h2 { font-size: 27px; }
  .proofline-items { grid-template-columns: 1fr 1fr; gap: 0; }
  .proofline-items b { min-height: 47px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
  .proofline-items b:nth-child(odd) { border-left: 0; }
  .section { padding: 82px 0; }
  .section-heading h2, .problem-intro h2, .usecases-copy h2, .comparison-copy h2, .trust-title h2, .faq-copy h2, .final-cta h2 { font-size: 40px; }
  .problem-section { padding: 72px 0; }
  .problem-list article { grid-template-columns: 40px 1fr; }
  .product-nav { grid-template-columns: 1fr 1fr; }
  .product-tab:nth-child(2) { border-right: 0; }
  .product-tab:nth-child(3), .product-tab:nth-child(4) { border-top: 1px solid #ecece8; }
  .preview-panel { padding: 19px; min-height: 420px; }
  .panel-head { display: grid; }
  .line-chip { justify-self: start; }
  .history-line { grid-template-columns: 1.2fr .8fr; }
  .history-line > span:nth-child(3), .history-line > span:nth-child(4) { display: none; }
  .history-line.head > span:nth-child(3), .history-line.head > span:nth-child(4) { display: none; }
  .numbers-preview > div { align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; }
  .usecase-list article { grid-template-columns: 1fr; }
  .usecase-tag { display: none; }
  .ai-intro h2 { font-size: 40px; }
  .ai-roles ul { grid-template-columns: 1fr; }
  .ai-flow-head { grid-template-columns: 1fr; gap: 5px; }
  .feature-lines article { grid-template-columns: 52px 1fr; gap: 15px; align-items: start; }
  .feature-lines article > strong { display: none; }
  .comparison-row { grid-template-columns: .8fr 1fr 1fr; font-size: 9px; }
  .comparison-row .positive { padding: 5px 7px; }
  .onboarding-steps { grid-template-columns: 1fr; }
  .onboarding-steps article { min-height: auto; border-right: 0; border-bottom: 1px solid #d2d3ce; }
  .onboarding-steps article:last-child { border-bottom: 0; }
  .onboarding-steps h3 { margin-top: 28px; }
  .bottom-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 5px; }
  .mobile-conversion { position: fixed; z-index: 90; left: 12px; right: 12px; bottom: 12px; min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; background: var(--ink); color: white; box-shadow: 0 13px 30px rgba(11, 22, 56, .24); font-size: 12px; font-weight: 800; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* =========================================================
   READABILITY PASS V2
   Minimum comfortable type sizes across marketing content.
   The product mockup stays compact, but no essential copy is tiny.
   ========================================================= */
body { font-size: 17px; }

/* Header / navigation */
.main-nav a,
.login-link { font-size: 14px; }
.header-cta { font-size: 13px; min-height: 42px; }
.kicker,
.eyebrow,
.lead-kicker { font-size: 12px; letter-spacing: .085em; }
.btn { font-size: 14px; }
.text-link,
.mini-cta { font-size: 14px; }

/* Hero + lead form */
.hero-benefits span { font-size: 14px; }
.hero-benefits i { font-size: 11px; }
.hero-secondary p { font-size: 12px; line-height: 1.6; }
.lead-card-head > p:last-child { font-size: 14px; line-height: 1.6; }
.lead-form label > span,
.bottom-form label > span { font-size: 12px; letter-spacing: .02em; }
.lead-form input,
.lead-form select,
.bottom-form input { font-size: 14px; min-height: 48px; }
.form-note { font-size: 11px; line-height: 1.55; }
.form-success { font-size: 13px; }
.hero-proofline > span { font-size: 11px; }
.proofline-items b { font-size: 13px; }

/* Marketing body copy */
.problem-list article > span { font-size: 11px; }
.problem-list p { font-size: 14px; line-height: 1.65; }
.heading-side > p { font-size: 16px; }
.usecase-no { font-size: 11px; }
.usecase-list p { font-size: 14px; line-height: 1.65; }
.usecase-tag { font-size: 11px; }
.feature-icon { font-size: 11px; }
.feature-lines p { font-size: 14px; line-height: 1.65; }
.feature-lines article > strong { font-size: 11px; }

/* Product preview: compact, but readable */
.product-tab > span { font-size: 11px; }
.product-tab small { font-size: 12px; line-height: 1.5; }
.preview-brand { font-size: 13px; }
.preview-brand > span { font-size: 11px; }
.preview-status { font-size: 12px; }
.panel-head small { font-size: 11px; }
.line-chip { font-size: 11px; }
.softphone-card > label { font-size: 11px; }
.dial-field button { font-size: 12px; }
.recent-title { font-size: 11px; }
.recent-call strong { font-size: 13px; }
.recent-call small,
.recent-call time { font-size: 11px; }
.avatar.small { font-size: 10px; }
.history-line { font-size: 12px; }
.history-line.head { font-size: 10px; }
.history-line small { font-size: 10px; }
.status-badge { font-size: 10px; }
.team-preview > div { font-size: 13px; }
.team-preview em { font-size: 11px; }
.numbers-preview b { font-size: 14px; }
.numbers-preview small { font-size: 11px; }
.numbers-preview strong { font-size: 11px; }

/* AI / Normdesk: intentionally conversational and easy to scan */
.ai-intro-copy p { font-size: 16px; line-height: 1.72; }
.ai-role-label { font-size: 12px; letter-spacing: .085em; }
.ai-roles p { font-size: 14px; line-height: 1.68; }
.ai-roles li { font-size: 13px; line-height: 1.5; padding-top: 10px; padding-bottom: 10px; }
.ai-roles li::before { top: 17px; }
.ai-flow-head span { font-size: 11px; }
.ai-flow-head strong { font-size: 15px; }
.ai-flow-list li > span { font-size: 11px; }
.ai-flow-list strong { font-size: 15px; }
.ai-flow-list p { font-size: 13px; line-height: 1.65; }
.ai-simple-note { font-size: 13px; line-height: 1.65; }

/* Comparison / trust / onboarding / FAQ */
.comparison-row { font-size: 13px; min-height: 72px; }
.comparison-row.head { font-size: 11px; }
.comparison-row strong { font-size: 13px; }
.trust-list article > span { font-size: 11px; }
.trust-list p { font-size: 14px; line-height: 1.65; }
.onboarding-steps article > span { font-size: 12px; }
.onboarding-steps p { font-size: 14px; line-height: 1.65; }
.faq-list details p { font-size: 14px; line-height: 1.75; }

/* Footer */
.footer-brand p { font-size: 13px; line-height: 1.65; }
.footer-col strong { font-size: 13px; }
.footer-col a { font-size: 12px; }
.footer-bottom { font-size: 11px; }

@media (max-width: 1020px) {
  .mobile-nav a { font-size: 14px; }
  .product-tab strong { font-size: 13px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .kicker,
  .eyebrow,
  .lead-kicker { font-size: 11px; }
  .hero-benefits span { font-size: 13px; }
  .comparison-row { font-size: 11px; }
  .comparison-row.head { font-size: 10px; }
  .comparison-row strong { font-size: 11px; }
  .mobile-conversion { font-size: 13px; }
  .faq-list summary { font-size: 16px; }
  .faq-list details p { font-size: 14px; }
}


/* =========================================================
   CRM / REST API INTEGRATION
   Editorial, readable, and intentionally non-technical.
   ========================================================= */
.integration-section {
  background: #f4f4ef;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.integration-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 92px;
  align-items: start;
}
.integration-copy {
  position: sticky;
  top: 116px;
  align-self: start;
}
.integration-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: .99;
  letter-spacing: -.05em;
  font-weight: 600;
}
.integration-copy > p:not(.kicker) {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.integration-copy > p strong { color: var(--ink); }
.integration-points {
  margin: 36px 0 28px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d2d4ce;
}
.integration-points li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid #d2d4ce;
}
.integration-points li > span {
  padding-top: 3px;
  color: #9a9e9a;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 700;
}
.integration-points strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.integration-points p {
  margin: 6px 0 0;
  color: #666d7f;
  font-size: 15px;
  line-height: 1.6;
}
.integration-stack {
  margin: 28px 0 30px;
  padding-top: 22px;
  border-top: 1px solid #d2d4ce;
}
.integration-stack-label {
  margin: 0 0 10px;
  color: #6f7484;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.integration-stack-list {
  margin: 0;
  color: #4f576b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}
.integration-stack-note {
  margin: 10px 0 0;
  color: #8a8f9d;
  font-size: 13px;
  line-height: 1.5;
}
.integration-stage {
  overflow: hidden;
  border: 1px solid #d4d6d0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(22, 28, 50, .055);
}
.integration-stage-head {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 25px;
  border-bottom: 1px solid #e4e5e0;
  background: #fbfbf8;
}
.integration-stage-head span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--violet-soft);
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
}
.integration-stage-head strong {
  color: #555d72;
  font-size: 14px;
  font-weight: 600;
}
.integration-bridge {
  display: grid;
  grid-template-columns: 1fr 82px 1fr;
  align-items: stretch;
  min-height: 260px;
  border-bottom: 1px solid #e4e5e0;
}
.integration-system {
  padding: 34px 30px;
}
.integration-system small {
  display: block;
  margin-bottom: 30px;
  color: #8d929d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.integration-system h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.integration-system p {
  max-width: 300px;
  margin: 13px 0 0;
  color: #747b8d;
  font-size: 14px;
  line-height: 1.65;
}
.integration-system-mezacall { background: #faf9ff; }
.integration-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.integration-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #cfd1cc;
}
.integration-link span {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 1px #c4bfdc;
}
.integration-link b {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #c9c5dc;
  border-radius: 50%;
  background: #fff;
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
}
.integration-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.integration-data > div {
  min-height: 116px;
  padding: 22px 24px;
  border-right: 1px solid #e4e5e0;
  border-bottom: 1px solid #e4e5e0;
}
.integration-data > div:nth-child(2n) { border-right: 0; }
.integration-data > div:nth-last-child(-n+2) { border-bottom: 0; }
.integration-data span {
  display: block;
  margin-bottom: 7px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
}
.integration-data strong {
  display: block;
  max-width: 290px;
  color: #4f576b;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}
.integration-note {
  margin: 0;
  padding: 17px 24px;
  border-top: 1px solid #e4e5e0;
  background: #fbfbf8;
  color: #71788a;
  font-size: 13px;
  line-height: 1.6;
}
.integration-note strong { color: var(--ink); }

@media (max-width: 1020px) {
  .integration-grid { grid-template-columns: 1fr; gap: 52px; }
  .integration-copy { position: static; }
}

@media (max-width: 700px) {
  .integration-copy h2 { font-size: 40px; }
  .integration-stage-head { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 20px; }
  .integration-bridge { grid-template-columns: 1fr; min-height: auto; }
  .integration-system { padding: 28px 22px; }
  .integration-system small { margin-bottom: 18px; }
  .integration-link { min-height: 62px; }
  .integration-link::before { top: 0; bottom: 0; left: 50%; right: auto; width: 1px; height: auto; }
  .integration-data { grid-template-columns: 1fr; }
  .integration-data > div,
  .integration-data > div:nth-child(2n),
  .integration-data > div:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid #e4e5e0; }
  .integration-data > div:last-child { border-bottom: 0; }
}

/* =========================================================
   PRODUCTION PASS — typo, forms, a11y, new sections
   ========================================================= */

:focus-visible {
  outline: 3px solid rgba(103, 68, 223, .45);
  outline-offset: 3px;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 4px;
}
.form-status strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}
.form-status p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}
.form-status-success {
  background: var(--mint);
  color: var(--mint-ink);
}
.form-status-error {
  background: var(--rose);
  color: var(--rose-ink);
  grid-template-columns: 1fr;
}
.form-status-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  font-size: 14px;
  font-weight: 800;
}
.form-dev-note {
  margin: 0;
  color: #8a8f9d;
  font-size: 13px;
}
.cf-turnstile {
  margin: 2px 0 4px;
  min-height: 65px;
}
.form-note a,
.form-note-bottom a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-note,
.form-note-bottom {
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: #6f7688 !important;
}
.lead-form label > span,
.bottom-form label > span {
  font-size: 13px !important;
}
.lead-form input,
.lead-form select,
.bottom-form input {
  min-height: 48px !important;
  font-size: 15px !important;
}
.btn {
  font-size: 15px !important;
}
.header-cta {
  font-size: 14px !important;
  min-height: 44px;
}
.hero-benefits span {
  font-size: 15px !important;
}
.hero-secondary p {
  font-size: 13px !important;
}
.faq-list details p {
  font-size: 15px !important;
}
.feature-lines p,
.usecase-list p,
.problem-list p,
.trust-list p,
.onboarding-steps p,
.ai-roles p,
.ai-flow-list p,
.heading-side > p,
.integration-copy > p:not(.kicker),
.callcenter-copy > p {
  font-size: 15px !important;
  line-height: 1.68 !important;
}
.footer-brand p,
.footer-col a {
  font-size: 13px !important;
}
.footer-col strong {
  font-size: 14px !important;
}
.footer-bottom {
  font-size: 12px !important;
}
.softphone-label {
  margin: 0;
  color: #9397a3;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.dial-action {
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
}
.preview-panel[hidden] {
  display: none !important;
}

/* Scale / TPE-PME editorial */
.scale-section {
  background: #fff;
  border-top: 1px solid var(--line);
}
.scale-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.scale-editorial article {
  padding: 56px 48px 64px;
  border-right: 1px solid var(--line);
}
.scale-editorial article:last-child {
  border-right: 0;
}
.scale-editorial article:first-child {
  padding-left: 0;
}
.scale-editorial article:last-child {
  padding-right: 0;
}
.scale-editorial h3 {
  margin: 0 0 18px;
  font-size: 24px;
  letter-spacing: -.03em;
}
.scale-editorial p {
  margin: 0;
  max-width: 360px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

/* Call center */
.callcenter-section {
  background: #efefe9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.callcenter-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: start;
}
.callcenter-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: .99;
  letter-spacing: -.05em;
  font-weight: 600;
}
.callcenter-copy > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
}
.callcenter-points {
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d0d2cc;
}
.callcenter-points li {
  padding: 14px 0 14px 18px;
  border-bottom: 1px solid #d0d2cc;
  color: #555d70;
  font-size: 15px;
  position: relative;
}
.callcenter-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}
.callcenter-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #d4d6d0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}
.callcenter-aside > div {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid #e4e5e0;
  border-bottom: 1px solid #e4e5e0;
}
.callcenter-aside > div:nth-child(2n) { border-right: 0; }
.callcenter-aside > div:nth-last-child(-n+2) { border-bottom: 0; }
.callcenter-aside span {
  display: block;
  margin-bottom: 28px;
  color: #9a9e9a;
  font-size: 11px;
  letter-spacing: .1em;
}
.callcenter-aside strong {
  display: block;
  font-size: 20px;
  letter-spacing: -.02em;
}
.callcenter-aside p {
  margin: 8px 0 0;
  color: #747b8d;
  font-size: 14px;
}

/* Legal pages */
.legal-page {
  padding: 72px 0 100px;
}
.legal-wrap {
  max-width: 760px;
}
.legal-wrap h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 54px);
  letter-spacing: -.04em;
  line-height: 1.05;
}
.legal-intro,
.legal-wrap p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.legal-wrap h2 {
  margin: 36px 0 12px;
  font-size: 22px;
  letter-spacing: -.02em;
}
.legal-wrap a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bottom-form .form-note-bottom {
  grid-column: 1 / -1;
  margin: 0;
}
.bottom-form .cf-turnstile,
.bottom-form .form-status,
.bottom-form .form-dev-note {
  grid-column: 1 / -1;
}

@media (max-width: 1020px) {
  .scale-editorial,
  .callcenter-grid {
    grid-template-columns: 1fr;
  }
  .scale-editorial article {
    padding: 40px 0 44px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .scale-editorial article:last-child { border-bottom: 0; padding-bottom: 8px; }
  .scale-editorial article:first-child { padding-top: 28px; }
  .callcenter-copy h2 { font-size: 40px; }
}

@media (max-width: 700px) {
  .callcenter-aside { grid-template-columns: 1fr; }
  .callcenter-aside > div,
  .callcenter-aside > div:nth-child(2n),
  .callcenter-aside > div:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid #e4e5e0;
  }
  .callcenter-aside > div:last-child { border-bottom: 0; }
  .comparison-row { font-size: 12px !important; }
  .comparison-row.head,
  .comparison-row strong { font-size: 12px !important; }
  .mobile-conversion { font-size: 14px !important; min-height: 52px; }
  .hero-benefits span { font-size: 14px !important; }
}

.ai-roles-simple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #d0d1cb;
}
.ai-roles-simple article {
  padding: 36px 40px 40px 0;
  border-bottom: 0;
  border-right: 1px solid #d0d1cb;
}
.ai-roles-simple article:last-child {
  border-right: 0;
  padding-left: 40px;
  padding-right: 0;
}
.ai-roles-simple p {
  max-width: 420px;
  margin: 10px 0 0;
  font-size: 15px !important;
  line-height: 1.7 !important;
}
@media (max-width: 700px) {
  .ai-roles-simple { grid-template-columns: 1fr; }
  .ai-roles-simple article,
  .ai-roles-simple article:last-child {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid #d0d1cb;
  }
  .ai-roles-simple article:last-child { border-bottom: 0; }
}

/* =========================================================
   MOTION — présence légère, pas de bruit
   ========================================================= */
:root {
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --motion: .7s var(--ease-out);
}

.site-header {
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 247, 244, .98);
  border-bottom-color: rgba(217, 219, 215, 1);
  box-shadow: 0 10px 30px rgba(22, 28, 50, .04);
}

.hero-signal img {
  animation: signal-drift 18s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes signal-drift {
  from { transform: rotate(-8deg) translate3d(0, 0, 0) scale(1); }
  to { transform: rotate(-4deg) translate3d(24px, 18px, 0) scale(1.04); }
}

.hero-copy {
  animation: rise-in .75s var(--ease-out) both;
  animation-delay: .06s;
}
.lead-card {
  animation: rise-in .75s var(--ease-out) both;
  animation-delay: .18s;
  transition: box-shadow .35s ease, border-color .35s ease;
}
.hero-benefits span {
  animation: rise-in-left .55s var(--ease-out) both;
}
.hero-benefits span:nth-child(1) { animation-delay: .28s; }
.hero-benefits span:nth-child(2) { animation-delay: .36s; }
.hero-benefits span:nth-child(3) { animation-delay: .44s; }
.hero-benefits span:nth-child(4) { animation-delay: .52s; }

@keyframes rise-in {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes rise-in-left {
  from { opacity: 0; transform: translate3d(-8px, 0, 0); }
  to { opacity: 1; transform: none; }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

.lead-card:hover {
  box-shadow: 0 32px 80px rgba(22, 28, 50, .11);
}

.btn,
.header-cta,
.mini-cta,
.text-link,
.mobile-conversion {
  transition: transform .25s var(--ease-out), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover,
.header-cta:hover,
.mobile-conversion:hover {
  transform: translateY(-2px);
}
.btn:active,
.header-cta:active {
  transform: translateY(0);
}

.product-tab {
  transition: color .25s ease, background .25s ease;
}
.product-tab:hover {
  color: var(--ink);
}
.product-preview {
  transition: box-shadow .35s ease, transform .35s var(--ease-out);
}
.product-section .product-preview:hover {
  box-shadow: 0 26px 65px rgba(18, 27, 55, .09);
}
.preview-panel.is-active {
  animation: panel-in .32s var(--ease-out);
}

.scale-editorial article,
.usecase-list article,
.integration-points li,
.callcenter-aside > div {
  transition: transform .3s var(--ease-out), background .3s ease;
}
.scale-editorial article:hover,
.usecase-list article:hover {
  transform: translateX(4px);
}
.faq-list details {
  transition: background .25s ease;
}
.faq-list details[open] {
  background: rgba(255, 255, 255, .35);
}
.faq-list summary span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  transition: transform .28s var(--ease-out), background .25s ease;
}

.preview-status i {
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-signal img,
  .preview-status i,
  .hero-copy,
  .lead-card,
  .hero-benefits span {
    animation: none !important;
  }
  .hero-copy,
  .lead-card,
  .hero-benefits span,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .btn:hover,
  .header-cta:hover,
  .mobile-conversion:hover,
  .scale-editorial article:hover,
  .usecase-list article:hover {
    transform: none !important;
  }
}

.legal-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.legal-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.legal-list strong {
  color: var(--ink);
  font-weight: 700;
}
