:root {
  --ink: #111112;
  --ink-soft: #38383b;
  --cream: #f5f3ec;
  --paper: #fbfaf6;
  --line: #deddd6;
  --purple: #8a63f6;
  --purple-dark: #6342ce;
  --lavender: #d9ceff;
  --green: #8fd8b4;
  --green-dark: #397c60;
  --white: #fff;
  --shadow: 0 28px 80px rgba(32, 24, 56, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 5%, rgba(143,216,180,.17), transparent 24rem),
    radial-gradient(circle at 15% 16%, rgba(138,99,246,.10), transparent 27rem);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: .025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  width: min(1220px, calc(100% - 48px));
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(17,17,18,.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.05em;
}

.brand img { display: block; }
.site-header nav { display: flex; gap: 34px; }
.site-header nav a {
  color: #5b5a5d;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}
.site-header nav a:hover { color: var(--purple-dark); }

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 0;
  border-radius: 9px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 19px; font-size: 14px; }
.button-dark { color: #fff; background: var(--ink); }
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #7652e9, #6744d9);
  box-shadow: 0 12px 30px rgba(103,68,217,.22);
}
.button-primary:hover { box-shadow: 0 16px 34px rgba(103,68,217,.3); }
.button-light { background: var(--white); color: var(--ink); }

.section { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.hero {
  min-height: 740px;
  padding: 92px 0 88px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 78px;
  align-items: center;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 13px 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(103,68,217,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  color: #5d5869;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow strong { color: var(--purple-dark); }
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(143,216,180,.24);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 7px rgba(143,216,180,0); }
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
}
h1 {
  max-width: 660px;
  margin-bottom: 25px;
  font-size: clamp(52px, 5.15vw, 76px);
  letter-spacing: -.065em;
}
h1 em, h2 em {
  color: var(--purple-dark);
  font-style: normal;
}
.hero-subhead {
  max-width: 560px;
  margin-bottom: 32px;
  color: #545257;
  font-size: 19px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; }
.price-note { display: flex; flex-direction: column; font-size: 14px; }
.price-note span { color: #76747a; font-size: 12px; }
.micro-proof {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #77747b;
  font-size: 12px;
  font-weight: 600;
}
.avatar-stack { display: flex; padding-left: 8px; }
.avatar-stack i {
  width: 29px;
  height: 29px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 8px;
  font-style: normal;
}
.avatar-stack i:nth-child(2) { background: var(--purple); }
.avatar-stack i:nth-child(3) { background: var(--green-dark); }

.hero-visual { position: relative; }
.glow { position: absolute; border-radius: 50%; filter: blur(40px); opacity: .75; }
.glow-purple { width: 230px; height: 230px; top: -45px; right: -15px; background: rgba(174,147,255,.34); }
.glow-green { width: 220px; height: 220px; left: -30px; bottom: -30px; background: rgba(99,211,157,.26); }
.chat-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 535px;
  border: 1px solid rgba(17,17,18,.11);
  border-radius: 17px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.chat-topbar {
  height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e9e8e3;
  color: #6e6c72;
  font-size: 12px;
  font-weight: 700;
}
.chat-topbar button { border: 0; color: #8f8d91; background: transparent; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #ceccd0; }
.chat-body { padding: 29px 27px 18px; }
.message { display: grid; grid-template-columns: 28px 1fr; gap: 12px; margin-bottom: 27px; }
.message .avatar, .message > img {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #ece9e4;
  font-size: 11px;
  font-weight: 800;
}
.message > img { padding: 4px; background: #171719; }
.message span { display: block; margin-bottom: 5px; color: #78767a; font-size: 10px; font-weight: 700; }
.message p { margin-bottom: 12px; color: #38373a; font-size: 12px; line-height: 1.55; }
.sponsored-card {
  margin: 14px 0 12px;
  overflow: hidden;
  border: 1px solid #dedbe9;
  border-radius: 11px;
  background: linear-gradient(135deg, #fbfaff, #f3f0fc);
}
.sponsored-label {
  padding: 5px 10px;
  border-bottom: 1px solid #e5e1f0;
  color: #87828c;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sponsored-content {
  padding: 14px;
  display: grid;
  grid-template-columns: 35px 1fr 20px;
  gap: 11px;
  align-items: center;
}
.demo-logo {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--green-dark));
  font-size: 10px;
  font-weight: 800;
}
.sponsored-content strong { font-size: 12px; }
.sponsored-content p { margin: 2px 0 4px; color: #66626d; font-size: 10px; }
.sponsored-content small { color: var(--purple-dark); font-size: 9px; }
.sponsored-content .arrow { color: var(--purple-dark); font-size: 15px; }
.chat-input {
  height: 49px;
  margin: 0 27px 20px 67px;
  padding: 0 10px 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d7d5d1;
  border-radius: 12px;
  color: #aaa8aa;
  font-size: 11px;
}
.chat-input i {
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 8px; color: white; background: var(--ink); font-style: normal;
}
.mockup-caption {
  position: relative;
  z-index: 2;
  margin: 15px 10px 0;
  color: #858287;
  font-size: 10px;
  text-align: center;
}

.trust-strip {
  padding: 30px 20px 35px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.trust-strip > p {
  margin-bottom: 24px;
  color: #939096;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.logo-cloud {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px 38px;
  color: #7b797d;
  filter: grayscale(1);
}
.logo-cloud span { font-weight: 700; letter-spacing: -.03em; }
.toyota { font-family: Arial, sans-serif; letter-spacing: .12em !important; }
.accenture { font-size: 19px; }
.accenture i { color: var(--purple); font-style: normal; }
.lg { width: 36px; height: 36px; display: grid; place-items: center; border: 2px solid; border-radius: 50%; }
.sap { padding: 4px 9px; color: white; background: #777; transform: skew(-9deg); }
.four-seasons { font-family: Georgia, serif; font-size: 12px; letter-spacing: .1em !important; }
.hp { width: 34px; height: 34px; display: grid; place-items: center; border: 2px solid; border-radius: 50%; font-size: 17px; font-style: italic; }
.autodesk { letter-spacing: .05em !important; }
.more-brands { width: 100%; color: #a2a0a3; font-size: 10px; font-weight: 500 !important; letter-spacing: .03em !important; }

.intent { padding: 128px 0 90px; }
.section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4vw, 57px);
  letter-spacing: -.055em;
}
.kicker {
  margin-bottom: 14px;
  color: var(--purple-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 90px;
  align-items: end;
}
.split-heading > p {
  max-width: 440px;
  margin-bottom: 26px;
  color: #69666c;
  font-size: 16px;
}
.reason-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.reason-card {
  position: relative;
  min-height: 400px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.55);
}
.reason-card-featured { background: #171719; color: white; }
.card-number {
  position: absolute; top: 24px; left: 27px;
  color: #99969e; font-family: "Manrope"; font-size: 11px; font-weight: 700;
}
.reason-card h3 { margin-bottom: 13px; font-size: 22px; letter-spacing: -.03em; }
.reason-card p { margin: 0; color: #737077; font-size: 14px; }
.reason-card-featured p { color: #a8a4ad; }
.icon-box {
  position: absolute; top: 76px; left: 28px;
  width: 58px; height: 58px; display: grid; place-items: center;
  border-radius: 15px; background: #f0ecff; color: var(--purple-dark); font-size: 25px;
}
.reason-card:nth-child(3) .icon-box { color: var(--green-dark); background: #e2f4eb; }
.intent-orbit {
  position: absolute; top: 45px; left: 50%; width: 175px; height: 175px;
  transform: translateX(-50%); border: 1px solid #47434e; border-radius: 50%;
}
.intent-orbit::before, .intent-orbit::after {
  content: ""; position: absolute; inset: 22px; border: 1px solid #413d47; border-radius: 50%;
}
.intent-orbit::after { inset: 48px; background: radial-gradient(circle, rgba(138,99,246,.7), rgba(138,99,246,.07)); box-shadow: 0 0 35px rgba(138,99,246,.35); }
.intent-orbit b {
  position: absolute; z-index: 2; inset: 0; display: grid; place-items: center;
  font-size: 12px; line-height: 1.1; text-align: center;
}
.intent-orbit i {
  position: absolute; z-index: 3; width: 8px; height: 8px; border-radius: 50%; background: var(--green);
}
.intent-orbit i:nth-child(1) { top: 5px; left: 85px; }
.intent-orbit i:nth-child(2) { right: 16px; bottom: 34px; background: var(--lavender); }
.intent-orbit i:nth-child(3) { left: 12px; bottom: 52px; background: var(--purple); }

.comparison { padding: 50px 0 110px; }
.comparison-card {
  padding: 72px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 95% 0, rgba(138,99,246,.18), transparent 22rem),
    #141416;
}
.kicker-light { color: var(--green); }
.comparison-copy h2 { margin-bottom: 23px; font-size: 41px; letter-spacing: -.05em; }
.comparison-copy > p { color: #aaa7ae; font-size: 14px; }
.stat { margin-top: 48px; padding-top: 28px; display: flex; align-items: center; gap: 20px; border-top: 1px solid #353338; }
.stat strong { font-family: "Manrope"; color: var(--lavender); font-size: 34px; }
.stat span { max-width: 190px; color: #8d8992; font-size: 11px; }
.comparison-table { overflow: hidden; border: 1px solid #38353c; border-radius: 12px; }
.table-row {
  min-height: 65px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.3fr .65fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #353239;
  color: #aaa6ae;
  font-size: 12px;
}
.table-row:last-child { border: 0; }
.table-head { min-height: 42px; color: #706d74; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.table-row.active { color: white; background: linear-gradient(90deg, rgba(138,99,246,.17), rgba(143,216,180,.07)); }
.table-row.active span:first-child { color: var(--green); font-weight: 800; }
.intent-level { display: flex; gap: 4px; }
.intent-level i { width: 18px; height: 5px; border-radius: 3px; background: #454248; }
.intent-level i.on { background: #77727e; }
.table-row.active .intent-level i.on { background: linear-gradient(90deg, var(--purple), var(--green)); }

.process { padding: 105px 0 120px; }
.centered { max-width: 760px; margin: auto; text-align: center; }
.centered > p:last-child { max-width: 600px; margin: auto; color: #747177; }
.steps { margin: 70px auto 100px; display: grid; grid-template-columns: 1fr 80px 1fr 80px 1fr; align-items: start; }
.steps article { text-align: center; }
.steps article > span {
  width: 42px; height: 42px; margin: 0 auto 22px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--purple-dark);
  font-family: "Manrope"; font-size: 12px; font-weight: 800;
}
.steps h3 { margin-bottom: 10px; font-size: 19px; }
.steps p { margin: 0; color: #757278; font-size: 13px; }
.step-line { height: 1px; margin-top: 21px; background: var(--line); }
.offer {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
}
.offer > div:first-child { padding: 60px; }
.offer h2 { max-width: 470px; margin-bottom: 32px; font-size: 41px; letter-spacing: -.05em; }
.offer ul { padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 15px 30px; list-style: none; }
.offer li { position: relative; padding-left: 25px; color: #5f5c62; font-size: 13px; }
.offer li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 17px; height: 17px;
  display: grid; place-items: center; border-radius: 50%; color: var(--green-dark); background: #def2e8; font-size: 9px; font-weight: 900;
}
.price-card {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(138,99,246,.32), transparent 11rem),
    #171719;
}
.price-card p { margin-bottom: 0; color: #aaa6ae; font-size: 12px; }
.price-card > strong { margin: 8px 0 -4px; font-family: "Manrope"; font-size: 74px; line-height: 1; letter-spacing: -.07em; }
.price-card sup { font-size: 25px; vertical-align: top; }
.price-card > span { margin-bottom: 28px; color: var(--green); font-size: 11px; }
.price-card .button { width: 100%; }
.price-card small { margin-top: 15px; color: #7e7a83; font-size: 10px; text-align: center; }

.application {
  width: 100%;
  max-width: none;
  padding: 110px max(24px, calc((100% - 1100px) / 2));
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  align-items: center;
  background: #e8e1fa;
}
.eyebrow-dark { background: rgba(255,255,255,.45); }
.application-copy h2 { margin-bottom: 22px; font-size: clamp(40px,4vw,56px); letter-spacing: -.06em; }
.application-copy > p { color: #5f5869; }
.response-time { margin-top: 33px; display: flex; gap: 15px; align-items: center; }
.response-time > span {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 10px; color: white; background: var(--purple-dark);
}
.response-time div { display: flex; flex-direction: column; }
.response-time small { color: #706979; }
.lead-form { padding: 38px; border-radius: 16px; background: white; box-shadow: 0 24px 70px rgba(71,50,120,.14); }
.form-heading { display: flex; justify-content: space-between; align-items: flex-start; }
.form-heading p { margin-bottom: 3px; color: var(--purple-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-heading h3 { margin-bottom: 14px; font-size: 26px; letter-spacing: -.04em; }
.form-heading > span { padding: 5px 9px; border-radius: 20px; color: #77727d; background: #f1eef5; font-size: 9px; }
.priority-note { margin-bottom: 24px; padding: 10px 12px; border-left: 3px solid var(--purple); color: #69636f; background: #f6f3fb; font-size: 11px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; margin-bottom: 15px; }
label > span { display: block; margin-bottom: 6px; color: #4d4951; font-size: 11px; font-weight: 700; }
label b { color: var(--purple-dark); }
input, textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #dbd8df;
  border-radius: 8px;
  outline: none;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  transition: border-color .2s, box-shadow .2s;
}
input { height: 44px; }
textarea { resize: vertical; min-height: 105px; }
input:focus, textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(138,99,246,.12); }
.consent { display: flex; gap: 9px; align-items: flex-start; }
.consent input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--purple-dark); }
.consent span { font-weight: 500; }
.submit-button { width: 100%; justify-content: space-between; }
.submit-button i { font-style: normal; font-size: 18px; }
.form-fineprint { display: block; margin-top: 12px; color: #9b989e; font-size: 9px; text-align: center; }
.form-status { display: none; margin: 14px 0 0; padding: 10px; border-radius: 7px; font-size: 12px; }
.form-status.error { display: block; color: #9e3131; background: #fff0f0; }
.form-status.success { display: block; color: #28674b; background: #eaf8f1; }

.faq { padding: 120px 0; }
.faq-list { max-width: 800px; margin: 55px auto 0; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  padding: 23px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: "Manrope";
  font-weight: 700;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary span { color: var(--purple-dark); font-size: 22px; transition: transform .2s; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 690px; padding: 0 35px 22px 4px; margin: 0; color: #6f6c72; font-size: 14px; }

.final-cta {
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 50% 40%, rgba(138,99,246,.28), transparent 24rem),
    #111113;
  text-align: center;
}
.final-cta img { margin-bottom: 25px; filter: drop-shadow(0 0 25px rgba(143,216,180,.2)); }
.final-cta h2 { margin-bottom: 15px; font-size: clamp(42px,5vw,64px); letter-spacing: -.06em; }
.final-cta > p:not(.kicker) { margin-bottom: 31px; color: #aaa6ae; }

footer {
  min-height: 120px;
  padding: 30px max(24px, calc((100% - 1160px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #2c2a2f;
  color: #77737d;
  background: #111113;
  font-size: 11px;
}
footer .brand { color: white; }
footer > p { margin: 0; }
footer > div { display: flex; gap: 22px; }
footer a:hover { color: white; }

@media (max-width: 960px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { max-width: 650px; width: 100%; margin: auto; }
  .split-heading { grid-template-columns: 1fr; gap: 10px; }
  .reason-grid { grid-template-columns: 1fr 1fr; }
  .reason-card-featured { grid-column: 1 / -1; }
  .comparison-card { padding: 50px; grid-template-columns: 1fr; gap: 50px; }
  .offer { grid-template-columns: 1fr; }
  .application { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 680px) {
  .site-header { width: calc(100% - 30px); }
  .site-header .button { padding: 0 14px; }
  .section { width: calc(100% - 32px); }
  .hero { gap: 55px; padding: 62px 0 70px; }
  h1 { font-size: 48px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .chat-window { min-height: 0; transform: none; }
  .chat-body { padding: 22px 16px 10px; }
  .chat-input { margin-left: 55px; margin-right: 16px; }
  .trust-strip { padding-left: 15px; padding-right: 15px; }
  .logo-cloud { gap: 20px; }
  .intent, .faq { padding: 85px 0; }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-card-featured { grid-column: auto; }
  .comparison { padding-bottom: 70px; }
  .comparison-card { padding: 36px 22px; }
  .comparison-copy h2 { font-size: 34px; }
  .table-row { padding: 0 12px; grid-template-columns: .9fr 1.2fr .55fr; gap: 8px; font-size: 10px; }
  .intent-level { gap: 2px; }
  .intent-level i { width: 10px; }
  .process { padding: 70px 0 85px; }
  .steps { margin: 50px 0 70px; grid-template-columns: 1fr; gap: 34px; }
  .step-line { display: none; }
  .steps p { max-width: 300px; margin: auto; }
  .offer > div:first-child, .price-card { padding: 38px 25px; }
  .offer h2 { font-size: 34px; }
  .offer ul { grid-template-columns: 1fr; }
  .application { padding: 78px 16px; }
  .lead-form { padding: 26px 18px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  footer { padding: 38px 20px; flex-direction: column; gap: 20px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
