:root {
  --navy: #0b2340;
  --navy-2: #14395f;
  --blue: #1261e8;
  --red: #ea3342;
  --red-dark: #bd1f30;
  --gold: #c99a2e;
  --gold-soft: #fff5d8;
  --ink: #102943;
  --slate: #53677e;
  --muted: #7f8fa2;
  --line: #dce6ef;
  --powder: #f2f7fd;
  --powder-2: #e9f2fb;
  --white: #fff;
  --green: #18875c;
  --shadow: 0 26px 80px rgba(11, 35, 64, .14);
  --radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: var(--red);
  content: "";
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
button, input { font: inherit; }

.site-header {
  position: sticky;
  top: 3px;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(24px, 4vw, 70px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(213,225,237,.96);
  backdrop-filter: blur(16px);
}
.brand {
  position: relative;
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1;
}
.brand::after {
  position: absolute;
  left: 0;
  bottom: -29px;
  width: 72px;
  height: 4px;
  background: var(--red);
  content: "";
}
.brand span { color: var(--red); letter-spacing: 0; }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.7vw, 43px);
}
.desktop-nav a, .header-link {
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  transition: color .2s;
}
.desktop-nav a:hover, .header-link:hover { color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 21px; }
.lang-link { display: flex; align-items: center; gap: 7px; }
.lang-link img { width: 23px; border-radius: 2px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 43px; padding: 0 20px; font-size: 12px; }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #f04a47);
  box-shadow: 0 12px 28px rgba(234, 51, 66, .24);
}
.button-primary:hover { background: linear-gradient(135deg, var(--red-dark), var(--red)); box-shadow: 0 17px 36px rgba(234, 51, 66, .31); }
.button-secondary { color: var(--blue); background: #fff; border-color: var(--blue); }
.button-secondary:hover { background: #edf5ff; }
.button-navy { color: #fff; background: var(--navy); }
.button-white { color: var(--navy); background: #fff; }
.button-full { width: 100%; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 57fr) minmax(450px, 43fr);
  min-height: 640px;
  overflow: hidden;
  background: var(--powder);
}
.hero::before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 8;
  width: 17%;
  height: 6px;
  background: var(--red);
  content: "";
}
.hero::after {
  position: absolute;
  left: 17%;
  top: 0;
  z-index: 8;
  width: 10%;
  height: 6px;
  background: var(--navy);
  content: "";
}
.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 800px;
  padding: 64px clamp(32px, 6vw, 96px) 118px;
}
.eyebrow, .kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  color: var(--blue);
  background: rgba(255,255,255,.85);
  border: 1px solid #f2c8cb;
  border-radius: 999px;
  letter-spacing: 0;
  text-transform: none;
}
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--blue);
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
}
.eyebrow-star { color: var(--gold); font-size: 10px; }
.hero h1 {
  max-width: 720px;
  margin: 24px 0 21px;
  color: var(--navy);
  font-size: clamp(46px, 4.9vw, 72px);
  font-weight: 800;
  letter-spacing: -.052em;
  line-height: .99;
}
.hero-text {
  max-width: 635px;
  margin-bottom: 28px;
  color: #465d75;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; }
.play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding-left: 2px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 8px;
}
.microcopy { display: flex; flex-wrap: wrap; gap: 8px 17px; margin: 17px 0 0; color: #65798e; font-size: 11px; }
.microcopy b { color: var(--green); }
.hero-visual { position: relative; min-height: 580px; overflow: hidden; background: #dfe9ef; }
.hero-visual::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 15%;
  background: linear-gradient(90deg, var(--powder), rgba(242,247,253,0));
  content: "";
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; animation: portrait-in .7s ease both; }
.lead-card {
  position: absolute;
  right: clamp(18px, 3vw, 46px);
  bottom: 92px;
  z-index: 4;
  width: min(318px, calc(100% - 32px));
  padding: 19px;
  background: rgba(255,255,255,.97);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: var(--shadow);
  animation: card-in .65s .15s ease both;
}
.lead-card-top { display: flex; align-items: center; gap: 11px; padding-bottom: 13px; border-bottom: 1px solid var(--line); }
.lead-avatar { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 44px; height: 44px; color: #9c2630; background: #ffd9da; border-radius: 50%; font-size: 13px; font-weight: 800; }
.lead-card-top div { display: grid; gap: 2px; }
.lead-label { margin: 0; color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.lead-card-top strong { color: var(--navy); font-size: 15px; }
.lead-card-top small { color: var(--slate); font-size: 10px; }
.lead-line { display: grid; grid-template-columns: 68px 1fr 18px; align-items: center; padding: 8px 0; font-size: 11px; }
.lead-line span { color: var(--slate); }
.lead-line strong { color: var(--navy); text-align: right; }
.lead-line i { display: inline-flex; align-items: center; justify-content: center; width: 17px; height: 17px; margin-left: 5px; color: var(--green); background: #e8f7ee; border-radius: 50%; font-style: normal; }
.ready-pill { margin-top: 5px; padding: 9px 10px; color: var(--green); background: #eef9f3; border-radius: 8px; font-size: 10px; font-weight: 800; }

.quick-start {
  display: flex;
  width: min(640px, 100%);
  margin: 25px 0 0;
  padding: 5px;
  background: #fff;
  border: 1px solid #cddceb;
  border-radius: 11px;
  box-shadow: 0 14px 34px rgba(16, 50, 86, .09);
}
.quick-start input { min-width: 0; flex: 1; padding: 0 15px; color: var(--navy); background: transparent; border: 0; outline: 0; font-size: 13px; }
.quick-start button { min-height: 46px; padding: 0 19px; color: #fff; background: var(--red); border: 0; border-radius: 7px; font-size: 12px; font-weight: 800; cursor: pointer; }
.quick-start button:hover { background: var(--red-dark); }

.hero-proof {
  position: absolute;
  left: clamp(32px, 6vw, 96px);
  bottom: 24px;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(700px, calc(57% - 90px));
  padding: 12px 4px;
  background: rgba(255,255,255,.97);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 12px 40px rgba(11, 35, 64, .09);
}
.hero-proof div { display: flex; align-items: center; justify-content: center; gap: 11px; min-height: 42px; padding: 0 13px; }
.hero-proof div + div { border-left: 1px solid var(--line); }
.hero-proof b { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 35px; height: 35px; color: var(--blue); background: #eaf3ff; border-radius: 50%; font-size: 16px; }
.hero-proof div:nth-child(2) b { color: var(--gold); background: var(--gold-soft); }
.hero-proof div:nth-child(3) b { color: var(--red); background: #fff0f1; }
.hero-proof span { color: var(--navy); font-size: 11px; font-weight: 700; line-height: 1.35; }

.market-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; min-height: 61px; padding: 14px 24px; color: #fff; background: var(--navy); }
.market-strip strong { margin-right: 18px; color: #fff; font-size: 10px; letter-spacing: .13em; }
.market-strip span { color: #d5e2f0; font-size: 12px; font-weight: 700; }
.market-strip i { color: var(--gold); font-size: 8px; font-style: normal; }

.section { padding: 102px clamp(24px, 6vw, 96px); }
.section-soft { background: var(--powder); }
.section-navy { color: #fff; background: var(--navy); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.center { margin-right: auto; margin-left: auto; text-align: center; }
.kicker { margin-bottom: 14px; }
.kicker-gold { color: var(--gold); }
.section h2, .final-cta h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 800;
  letter-spacing: -.043em;
  line-height: 1.06;
}
.section-navy h2 { color: #fff; }
.section-heading > p:last-child, .section-copy { color: var(--slate); font-size: 17px; line-height: 1.72; }
.section-navy .section-heading > p:last-child, .section-navy .section-copy { color: #b9c9dc; }

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1240px; margin: 0 auto; }
.problem-grid article { position: relative; min-height: 275px; padding: 26px; background: #fff; border: 1px solid #e4ecf3; border-radius: var(--radius); }
.problem-grid article::after { position: absolute; right: -26px; top: 45%; z-index: 2; color: #c1ccd7; content: "→"; font-size: 26px; }
.problem-grid article:last-child::after { display: none; }
.problem-grid .problem-win { color: #fff; background: var(--navy); border-color: var(--navy); }
.problem-time { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.ghost-icon { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; margin: 31px 0 21px; color: var(--blue); background: var(--powder); border-radius: 14px; font-size: 22px; font-weight: 800; }
.problem-win .ghost-icon { color: #fff; background: var(--red); }
.problem-win .problem-time { color: #8fb8e6; }
.problem-grid h3 { margin-bottom: 10px; font-size: 20px; }
.problem-grid p { margin: 0; color: #687b8e; font-size: 14px; line-height: 1.65; }
.problem-win p { color: #c8d5e4; }

.demo-grid { display: grid; grid-template-columns: minmax(260px, .76fr) minmax(620px, 1.35fr); align-items: center; gap: 58px; }
.chat-demo { display: grid; grid-template-columns: minmax(360px, 1fr) minmax(240px, .72fr); align-items: center; }
.chat-window, .summary-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.chat-window { overflow: hidden; border-radius: 22px; }
/* Demo vivante : l'iframe prend la place exacte de l'ancienne maquette figee. */
.betty-live { display: block; width: 100%; height: 545px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.chat-header { display: flex; align-items: center; gap: 11px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.chat-header img { width: 42px; height: 42px; object-fit: cover; object-position: center top; border-radius: 50%; }
.chat-header div { display: grid; gap: 1px; }
.chat-header span { color: var(--green); font-size: 10px; }
.chat-header > b { margin-left: auto; color: #8a99a9; }
.messages { min-height: 360px; padding: 20px; background: linear-gradient(#fbfdff, #f2f7fc); }
.message { max-width: 83%; margin-bottom: 13px; padding: 11px 14px; border-radius: 14px; font-size: 13px; line-height: 1.5; }
.betty-message { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.visitor-message { margin-left: auto; color: #fff; background: var(--blue); border-bottom-right-radius: 4px; }
.chat-input { padding: 15px 18px; color: #9ba8b7; font-size: 12px; }
.chat-input span { float: right; display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; color: #fff; background: var(--red); border-radius: 50%; }
.summary-card { position: relative; z-index: 2; margin-left: -19px; padding: 23px; border-radius: 18px; }
.summary-status { color: var(--green); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.summary-card > p { margin: 12px 0 4px; color: var(--muted); font-size: 9px; text-transform: uppercase; }
.summary-card h3 { margin-bottom: 13px; color: var(--navy); font-size: 21px; }
.summary-card h3 small { margin-left: 6px; padding: 4px 7px; color: var(--blue); background: #e9f2ff; border-radius: 99px; font-size: 9px; text-transform: uppercase; vertical-align: middle; }
.summary-card dl { margin: 0; padding: 8px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.summary-card dl div { display: flex; justify-content: space-between; gap: 10px; padding: 6px 0; font-size: 10px; }
.summary-card dt { color: var(--muted); }
.summary-card dd { margin: 0; color: var(--navy); font-weight: 700; text-align: right; }
.summary-footer { padding-top: 14px; color: var(--red); font-size: 10px; font-weight: 800; }
.summary-footer span { float: right; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-grid article { padding: 24px 9px 5px 0; border-top: 1px solid var(--line); }
.feature-grid article > span { display: block; margin-bottom: 34px; color: var(--red); font-size: 11px; font-weight: 800; }
.feature-grid article:nth-child(even) > span { color: var(--gold); }
.feature-grid h3 { margin-bottom: 10px; color: var(--navy); font-size: 19px; }
.feature-grid p { color: var(--slate); font-size: 14px; line-height: 1.65; }

.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.industry-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 34px rgba(11,35,64,.06); transition: transform .22s, box-shadow .22s; }
.industry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.industry-card img { display: block; width: 100%; height: 240px; object-fit: cover; object-position: center top; }
.industry-card div { padding: 18px; }
.industry-card small { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.industry-card h3 { margin: 7px 0 6px; color: var(--navy); font-size: 19px; }
.industry-card p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.55; }

.steps-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 85px; }
.steps-list article { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid #315070; }
.steps-list article:last-child { border-bottom: 1px solid #315070; }
.steps-list article > span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; color: #fff; background: var(--blue); border-radius: 50%; font-weight: 800; }
.steps-list article:nth-child(2) > span { background: var(--red); }
.steps-list article:nth-child(3) > span { color: var(--navy); background: var(--gold); }
.steps-list h3 { margin: 3px 0 6px; color: #fff; font-size: 19px; }
.steps-list p { margin: 0; color: #b7c7d9; font-size: 14px; line-height: 1.6; }

.comparison-table { overflow: hidden; max-width: 1040px; margin: 0 auto; border: 1px solid var(--line); border-radius: 18px; }
.comparison-row { display: grid; grid-template-columns: 1.15fr .9fr 1.05fr; align-items: center; min-height: 62px; border-top: 1px solid var(--line); }
.comparison-row > * { padding: 14px 22px; }
.comparison-row > span + span { border-left: 1px solid var(--line); }
.comparison-head { color: #fff; background: var(--navy); border: 0; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.comparison-row strong { color: var(--navy); font-size: 13px; }
.form-answer { color: #8998a8; }
.betty-answer { color: var(--blue); background: #f2f7fd; font-weight: 700; }

.pricing-layout { display: grid; grid-template-columns: 1fr 420px; align-items: center; gap: 82px; }
.price-card { position: relative; padding: 34px; background: #fff; border: 1px solid var(--line); border-top: 7px solid var(--red); border-radius: 22px; box-shadow: var(--shadow); }
.popular { position: absolute; top: 22px; right: 22px; padding: 7px 11px; color: var(--navy); background: var(--gold); border-radius: 99px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.price-card > p { color: var(--slate); font-weight: 700; }
.price { display: flex; align-items: baseline; gap: 6px; }
.price strong { color: var(--navy); font-size: 54px; letter-spacing: -.05em; }
.price span { color: var(--slate); }
.price-card ul { display: grid; gap: 12px; margin: 22px 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.price-card li { color: #425a70; font-size: 13px; }
.price-card > small { display: block; margin-top: 11px; color: var(--muted); font-size: 10px; text-align: center; }

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.resource-card { position: relative; min-height: 190px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 17px; }
.resource-card small { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.resource-card h3 { margin: 11px 0 8px; color: var(--navy); font-size: 18px; }
.resource-card p { color: var(--slate); font-size: 13px; line-height: 1.55; }
.resource-card b { position: absolute; right: 22px; bottom: 18px; color: var(--gold); font-size: 20px; }

.roi-card { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; max-width: 940px; margin: 0 auto; padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 18px 55px rgba(11,35,64,.08); }
.roi-field { margin-bottom: 17px; }
.roi-field label { display: block; margin-bottom: 7px; color: var(--slate); font-size: 11px; font-weight: 700; }
.roi-field input { width: 100%; padding: 13px 14px; color: var(--navy); background: var(--powder); border: 1px solid var(--line); border-radius: 9px; font-weight: 800; }
.roi-result { height: 100%; padding: 25px; color: #fff; background: var(--navy); border-radius: 15px; }
.roi-result small { color: #9fb6ce; }
.roi-result strong { display: block; margin: 10px 0; color: var(--gold); font-size: 49px; letter-spacing: -.04em; }
.roi-result p { margin: 0; color: #c4d3e2; font-size: 12px; line-height: 1.6; }

.faq-list { max-width: 860px; margin: 0 auto; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 45px 22px 0; color: var(--navy); cursor: pointer; font-size: 16px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; right: 0; top: 17px; display: flex; align-items: center; justify-content: center; width: 29px; height: 29px; border: 1px solid #c9d7e4; border-radius: 50%; font-size: 18px; font-weight: 400; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; padding: 0 42px 21px 0; color: var(--slate); font-size: 14px; line-height: 1.7; }

.seo-copy { max-width: 950px; margin: 0 auto; }
.seo-copy h2 { font-size: clamp(29px, 3vw, 43px); }
.seo-copy h3 { margin-top: 32px; color: var(--navy); font-size: 22px; }
.seo-copy p, .seo-copy li { color: var(--slate); font-size: 15px; line-height: 1.75; }
.seo-copy a { color: var(--blue); font-weight: 700; }
.seo-copy ul { padding-left: 20px; }

.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.city-grid a { display: flex; justify-content: space-between; padding: 15px 17px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 11px; font-size: 13px; font-weight: 700; }
.city-grid a span { color: var(--gold); }

.qualify-layout { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 64px; }
.qualify-card { padding: 31px; color: #fff; background: var(--navy); border-radius: 20px; box-shadow: var(--shadow); }
.qualify-card h3 { margin-bottom: 21px; color: #fff; font-size: 21px; }
.qualify-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.qualify-list li { position: relative; padding: 12px 14px 12px 40px; color: #d6e2ef; background: #143b62; border: 1px solid #285176; border-radius: 9px; font-size: 13px; }
.qualify-list li::before { position: absolute; left: 14px; color: var(--gold); content: "✓"; font-weight: 800; }
.qualify-result { margin: 20px 0 0; color: #c0d1e2; font-size: 13px; line-height: 1.65; }

.live-demo-frame { overflow: hidden; max-width: 960px; margin: 34px auto 0; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.live-demo-frame iframe { display: block; width: 100%; height: 620px; border: 0; }

.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.check-item { position: relative; padding: 17px 17px 17px 47px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 12px; font-size: 13px; font-weight: 700; }
.check-item::before { position: absolute; left: 17px; top: 15px; display: flex; align-items: center; justify-content: center; width: 21px; height: 21px; color: var(--green); background: #e9f7ef; border-radius: 50%; content: "✓"; font-size: 11px; }

.seo-callout { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 46px; padding: 34px; color: #fff; background: var(--navy); border-left: 7px solid var(--red); border-radius: 16px; }
.seo-callout h3 { margin: 0 0 8px; color: #fff; font-size: 26px; }
.seo-callout p { margin: 0; color: #bfd0e1; font-size: 14px; }

.final-cta { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 48px; margin: 0 clamp(18px, 3vw, 45px); padding: 64px clamp(28px, 5vw, 74px); overflow: hidden; color: #fff; background: linear-gradient(130deg, var(--navy), #174d82); }
.final-cta::after { position: absolute; right: -65px; top: -55%; width: 135px; height: 220%; background: var(--red); content: ""; transform: rotate(18deg); }
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { max-width: 735px; margin: 0; color: #fff; }
.final-cta > div:last-child { display: grid; flex: 0 0 auto; gap: 10px; }
.final-cta small { color: #c8dced; font-size: 10px; text-align: center; }

.site-footer { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 58px clamp(24px, 6vw, 96px) 32px; }
.site-footer .brand { font-size: 21px; }
.site-footer .brand::after { display: none; }
.site-footer > p { grid-column: 1; margin: 0; color: var(--slate); font-size: 13px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 22px; grid-column: 2; grid-row: 1 / span 2; }
.site-footer nav a { color: var(--slate); font-size: 12px; }
.site-footer > small { grid-column: 1 / -1; padding-top: 22px; color: var(--muted); border-top: 1px solid var(--line); }

.floating-betty { position: fixed; right: 18px; bottom: 18px; z-index: 45; display: flex; align-items: center; gap: 9px; padding: 5px 13px 5px 5px; background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 13px 38px rgba(11,35,64,.18); }
.floating-betty img { width: 42px; height: 42px; object-fit: cover; object-position: center top; border-radius: 50%; }
.floating-betty > span { display: grid; gap: 1px; font-size: 11px; }
.floating-betty small { color: var(--slate); }
.floating-betty i { color: var(--green); font-size: 10px; font-style: normal; }

@keyframes portrait-in { from { opacity: 0; transform: scale(1.025); } to { opacity: 1; transform: scale(1); } }
@keyframes card-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1.03fr .97fr; }
  .hero-copy { padding-left: 38px; padding-right: 26px; }
  .hero-proof { left: 38px; width: calc(52% - 60px); }
  .demo-grid { grid-template-columns: 1fr; }
  .demo-grid > .section-heading { margin-right: auto; margin-left: auto; text-align: center; }
  .pricing-layout { gap: 50px; }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 70px; }
  .brand::after { bottom: -26px; }
  .header-link { display: none; }
  .hero { display: flex; flex-direction: column; min-height: 0; }
  .hero-copy { max-width: none; padding: 52px 24px 34px; }
  .hero h1 { font-size: clamp(43px, 11vw, 64px); }
  .hero-visual { min-height: 570px; }
  .hero-proof { position: relative; left: auto; bottom: auto; order: 3; width: auto; margin: 17px 20px 23px; }
  .section { padding: 82px 24px; }
  .problem-grid, .industry-grid, .resource-grid { grid-template-columns: 1fr; }
  .problem-grid article { min-height: 0; }
  .problem-grid article::after { right: auto; left: 49%; top: auto; bottom: -31px; transform: rotate(90deg); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-layout, .pricing-layout { grid-template-columns: 1fr; }
  .qualify-layout { grid-template-columns: 1fr; }
  .price-card { width: 100%; max-width: 480px; margin: 0 auto; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { grid-column: 1; grid-row: auto; }
}

@media (max-width: 600px) {
  .site-header { padding: 0 15px; }
  .brand { font-size: 19px; }
  .lang-link { display: none; }
  .button-small { min-height: 40px; padding: 0 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 475px; }
  .hero-image { object-position: 56% top; }
  .lead-card { right: 14px; bottom: 20px; }
  .hero-proof { grid-template-columns: 1fr; padding: 3px 15px; }
  .hero-proof div { justify-content: flex-start; padding: 10px 0; }
  .hero-proof div + div { border-top: 1px solid var(--line); border-left: 0; }
  .hero-proof span br { display: none; }
  .quick-start { align-items: stretch; flex-direction: column; gap: 5px; }
  .quick-start input { min-height: 46px; }
  .market-strip { justify-content: flex-start; gap: 8px 11px; }
  .market-strip strong { flex: 0 0 100%; margin: 0 0 3px; }
  .chat-demo { display: block; }
  .betty-live { height: 460px; }
  .summary-card { margin: -16px 11px 0; }
  .messages { min-height: 330px; padding: 15px; }
  .message { max-width: 92%; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article > span { margin-bottom: 21px; }
  .comparison-row { grid-template-columns: .9fr .82fr 1fr; font-size: 10px; }
  .comparison-row > * { padding: 11px 8px; }
  .comparison-row strong { font-size: 10px; }
  .roi-card { grid-template-columns: 1fr; padding: 21px; }
  .check-grid { grid-template-columns: 1fr; }
  .seo-callout { align-items: flex-start; flex-direction: column; }
  .seo-callout .button { width: 100%; }
  .live-demo-frame iframe { height: 540px; }
  .city-grid { grid-template-columns: 1fr; }
  .final-cta { margin: 0; padding: 53px 24px; }
  .final-cta > div:last-child, .final-cta .button { width: 100%; }
  .site-footer { padding-bottom: 92px; }
  .floating-betty span { display: none; }
  .floating-betty { padding: 4px; border-radius: 50%; }
  .floating-betty i { position: absolute; right: 4px; bottom: 4px; width: 10px; height: 10px; font-size: 0; background: var(--green); border: 2px solid #fff; border-radius: 50%; }
}

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