:root {
  --ink: #171a17;
  --ink-soft: #343832;
  --paper: #f4f1e9;
  --paper-2: #ebe7dc;
  --white: #fffdf8;
  --line: rgba(23, 26, 23, 0.15);
  --accent: #ffd400;
  --accent-dark: #eabb00;
  --coral: #ff7657;
  --violet: #9f8cff;
  --green: #24a865;
  --muted: #6e736c;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 24px 80px rgba(21, 25, 20, 0.12);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  scrollbar-gutter: stable;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.menu-open .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: #f4f1e9;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section-shell {
  position: relative;
  overflow: clip;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: #f4f1e9;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 35px rgba(25, 29, 24, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.cadt-logo {
  display: block;
  width: 82px;
  height: auto;
  flex: 0 0 auto;
  mix-blend-mode: multiply;
}

.brand-divider {
  width: 1px;
  height: 25px;
  background: var(--line);
}

.brand-project {
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.brand-mark {
  position: relative;
  width: 29px;
  height: 29px;
}

.brand-mark span {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.brand-mark span:nth-child(1) {
  left: 0;
  top: 8px;
  background: var(--accent);
}

.brand-mark span:nth-child(2) {
  right: 1px;
  top: 0;
  background: var(--coral);
}

.brand-mark span:nth-child(3) {
  right: 0;
  bottom: 0;
  background: var(--violet);
}

.brand-name {
  font-size: 23px;
  line-height: 1;
}

.brand-name > span {
  font-weight: 500;
}

.brand-name small {
  margin-left: 1px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.homepage-nav {
  gap: 24px;
}

.desktop-nav .nav-separator {
  width: 1px;
  height: 24px;
  margin-inline: 3px;
  background: var(--line);
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: width 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker { display: none; }

.nav-dropdown summary::after {
  content: "↓";
  font-family: "DM Mono", monospace;
  font-size: 10px;
  transition: transform 0.2s ease;
}

.nav-dropdown[open] summary::after { transform: rotate(180deg); }

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 120;
  display: grid;
  width: 270px;
  padding: 10px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(23, 26, 23, 0.15);
}

.nav-dropdown-panel a {
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 13px;
}

.nav-dropdown-panel a::after { display: none; }
.nav-dropdown-panel a:hover { background: var(--paper-2); }

.mobile-menu-label {
  margin-top: 12px;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mobile-menu-separator {
  width: 100%;
  height: 1px;
  margin: 11px 0 5px;
  background: var(--line);
}

.header-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 14px;
}

.language-switcher {
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-btn {
  width: 33px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-btn.is-active {
  color: white;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: white;
  background: var(--ink);
}

.button-dark:hover {
  box-shadow: 0 10px 25px rgba(23, 26, 23, 0.2);
}

.button-accent {
  color: var(--ink);
  background: var(--accent);
}

.button-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 12px 28px rgba(183, 223, 64, 0.28);
}

.header-whatsapp {
  min-height: 42px;
  padding-inline: 16px;
  gap: 8px;
}

.header-whatsapp svg {
  width: 17px;
  fill: var(--accent);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  min-height: 720px;
  padding: 82px 0 72px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.48;
  background-image: linear-gradient(rgba(23, 26, 23, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 26, 23, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb-one {
  top: 30px;
  right: -110px;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle at 35% 30%, rgba(217, 255, 99, 0.65), rgba(217, 255, 99, 0));
}

.hero-orb-two {
  bottom: 20px;
  left: -170px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle at 60% 40%, rgba(159, 140, 255, 0.28), rgba(159, 140, 255, 0));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 74px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 34px;
  height: 2px;
  background: var(--coral);
}

.hero h1 {
  max-width: 690px;
  margin: 26px 0 24px;
  font-size: clamp(58px, 6.3vw, 92px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 36px;
}

.hero-actions .button {
  min-height: 58px;
  padding-inline: 26px;
  gap: 16px;
}

.hero-actions .button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero-trust li > span:first-child {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--accent);
  font-size: 10px;
}

.hero-product {
  position: relative;
}

.product-window {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  border: 1px solid rgba(23, 26, 23, 0.16);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.window-bar {
  display: flex;
  align-items: center;
  height: 55px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: #eeece5;
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8c6bf;
}

.window-title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: auto;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(36, 168, 101, 0.12);
}

.product-body {
  display: grid;
  grid-template-columns: 66px 1fr;
  min-height: 455px;
}

.product-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  border-right: 1px solid var(--line);
  background: #f7f5ef;
}

.mini-brand {
  display: grid;
  width: 31px;
  height: 31px;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
}

.mini-brand span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 7px -5px 0 var(--coral), 7px 5px 0 var(--violet);
}

.side-item {
  width: 22px;
  height: 22px;
  border: 1px solid #d4d2ca;
  border-radius: 7px;
}

.side-item.active {
  border-color: var(--ink);
  background: var(--accent);
  box-shadow: inset 0 0 0 6px var(--ink);
}

.activity-panel {
  padding: 34px 30px 27px;
}

.panel-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.panel-topline > div:first-child {
  display: flex;
  flex-direction: column;
}

.micro-label {
  margin-bottom: 4px;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.panel-topline strong {
  font-size: 23px;
  letter-spacing: -0.04em;
}

.status-pill,
.agent-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  white-space: nowrap;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.status-pill {
  padding: 6px 9px;
  color: #157144;
  background: #e4f4ea;
}

.status-pill > span:first-child,
.agent-state > span:first-child {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.agent-row {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.agent-avatar {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border-radius: 13px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
}

.agent-avatar.coral {
  background: #ffd6cb;
}

.agent-avatar.lime {
  background: #e9ff9f;
}

.agent-avatar.violet {
  background: #ddd6ff;
}

.agent-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.agent-info strong {
  font-size: 14px;
}

.agent-info span {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-state {
  padding: 5px 8px;
  color: var(--muted);
  background: #f0eee8;
}

.agent-state.approval {
  color: #765f19;
  background: #fff3c8;
}

.agent-state.approval > span:first-child {
  background: #c89a09;
}

.activity-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 18px;
  padding: 20px;
  border-radius: 16px;
  color: white;
  background: var(--ink);
}

.activity-footer > div:first-child {
  display: flex;
  flex-direction: column;
}

.activity-footer span {
  color: #a9aea6;
  font-size: 10px;
}

.activity-footer strong {
  font-size: 28px;
  letter-spacing: -0.04em;
}

.sparkline {
  display: flex;
  align-items: flex-end;
  height: 34px;
  gap: 4px;
}

.sparkline i {
  width: 5px;
  border-radius: 2px;
  background: var(--accent);
}

.sparkline i:nth-child(1) { height: 20%; }
.sparkline i:nth-child(2) { height: 45%; }
.sparkline i:nth-child(3) { height: 35%; }
.sparkline i:nth-child(4) { height: 65%; }
.sparkline i:nth-child(5) { height: 52%; }
.sparkline i:nth-child(6) { height: 78%; }
.sparkline i:nth-child(7) { height: 100%; }

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 185px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 15px 36px rgba(21, 25, 20, 0.13);
  backdrop-filter: blur(8px);
}

.floating-note > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-note small {
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.floating-note strong {
  font-size: 12px;
}

.note-icon {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.note-icon.dark {
  color: white;
  background: var(--ink);
}

.note-top {
  top: 90px;
  right: -44px;
  animation: hoverNote 5s ease-in-out infinite;
}

.note-bottom {
  bottom: 44px;
  left: -38px;
  animation: hoverNote 5s 1.2s ease-in-out infinite;
}

@keyframes hoverNote {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  display: flex;
  min-height: 122px;
  align-items: center;
  padding: 25px 34px;
  border-left: 1px solid var(--line);
  gap: 16px;
}

.proof-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid strong {
  font-size: 28px;
  letter-spacing: -0.05em;
}

.proof-grid span {
  max-width: 145px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.intro-section,
.agents-section,
.integrations-section,
.trust-section,
.faq-section {
  padding: 108px 0;
}

.diagnosis-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 212, 0, 0.14), transparent 28%),
    radial-gradient(circle at 90% 84%, rgba(255, 212, 0, 0.08), transparent 30%),
    var(--ink);
}

.diagnosis-section.diagnosis-section-first {
  padding-top: 32px;
}

.diagnosis-section::before {
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.diagnosis-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(70px, 9vw, 145px);
  align-items: start;
}

.diagnosis-copy {
  position: sticky;
  top: 130px;
}

.diagnosis-copy .section-kicker {
  color: var(--accent);
}

.diagnosis-copy h2 {
  max-width: 600px;
  margin: 30px 0 25px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.diagnosis-copy > p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.65;
}

.diagnosis-points {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.diagnosis-points > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  align-items: center;
  min-height: 67px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.diagnosis-points > div > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(255, 212, 0, 0.48);
  border-radius: 50%;
  color: var(--accent);
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.diagnosis-points p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.diagnosis-points strong {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.diagnosis-points small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

.diagnosis-form {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.form-honey {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-heading {
  margin-bottom: 34px;
}

.form-heading span {
  color: var(--accent);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 12px 0 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.form-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.contact-page-section {
  min-height: calc(100vh - 80px);
}

.contact-page-section .diagnosis-copy h1 {
  max-width: 600px;
  margin: 30px 0 25px;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px 18px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  outline: none;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.5;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-field select {
  color-scheme: dark;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.12);
}

.privacy-check {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 11px;
  align-items: start;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.privacy-check input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.privacy-check a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.diagnosis-form .form-submit {
  width: 100%;
  min-height: 57px;
  border: 0;
  border-radius: 12px;
  gap: 12px;
  color: var(--ink);
  background: var(--accent);
  cursor: pointer;
}

.diagnosis-form .form-submit:hover {
  background: var(--accent-dark);
  box-shadow: 0 12px 28px rgba(255, 212, 0, 0.16);
}

.diagnosis-form .form-submit:disabled {
  transform: none;
  cursor: wait;
  opacity: 0.7;
}

.form-submit svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.form-note,
.form-status {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.form-status:not(:empty) {
  color: var(--accent);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.45fr 1.4fr 0.8fr;
  gap: 60px;
}

.section-kicker {
  align-items: flex-start;
  color: var(--muted);
}

.section-kicker > span:first-child {
  min-width: 28px;
  color: var(--coral);
}

.section-kicker.light {
  color: #9ea39c;
}

.intro-copy h2,
.section-heading h2,
.process-heading h2,
.integrations-copy h2,
.impact-copy h2,
.trust-copy h2,
.faq-heading h2,
.contact-copy h2 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.intro-copy h2 {
  max-width: 720px;
  font-size: clamp(38px, 4.4vw, 62px);
}

.intro-copy p {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.intro-contrast {
  align-self: end;
  border-top: 1px solid var(--line);
}

.intro-contrast > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 13px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contrast-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  font-size: 12px;
}

.contrast-icon.muted {
  color: #827f78;
  background: #ddd9cf;
}

.intro-contrast p {
  display: flex;
  margin: 0;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.45;
}

.intro-contrast p span {
  color: var(--muted);
}

.agents-section {
  border-top: 1px solid var(--line);
  background: #efebe2;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.4fr 0.8fr;
  align-items: start;
  gap: 60px;
  margin-bottom: 66px;
}

.section-heading h2 {
  max-width: 690px;
  font-size: clamp(42px, 4.5vw, 64px);
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.section-heading-aside {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
}

.section-heading-aside > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.voice-callout {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
}

.voice-orb {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  gap: 3px;
  background: var(--accent);
}

.voice-orb i {
  width: 2px;
  height: 10px;
  border-radius: 999px;
  background: var(--ink);
}

.voice-orb i:nth-child(2),
.voice-orb i:nth-child(4) { height: 19px; }

.voice-orb i:nth-child(3) { height: 27px; }

.voice-callout p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.voice-callout strong { font-size: 14px; }

.voice-callout p span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.button-outline {
  min-height: 46px;
  border-color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  color: white;
  background: var(--ink);
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.agent-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.agent-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 55px rgba(21, 25, 20, 0.09);
}

.card-featured {
  background: var(--accent);
}

.card-custom {
  color: white;
  background: var(--ink);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-number {
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 11px;
}

.card-custom .card-number {
  color: #939991;
}

.availability {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  gap: 6px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.availability i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.availability.custom {
  border-color: rgba(255, 255, 255, 0.2);
  color: #c6cbc4;
}

.card-symbol {
  position: absolute;
  top: 84px;
  right: 38px;
  width: 138px;
  height: 138px;
}

.card-symbol > span {
  position: absolute;
  display: block;
}

.symbol-support span {
  width: 62px;
  height: 62px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}

.symbol-support span:nth-child(1) { left: 0; top: 38px; background: var(--coral); }
.symbol-support span:nth-child(2) { right: 4px; top: 5px; background: var(--paper); }
.symbol-support span:nth-child(3) { right: 0; bottom: 0; background: var(--violet); }

.symbol-sales span:nth-child(1) {
  inset: 6px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}

.symbol-sales span:nth-child(2) {
  top: 38px;
  left: 38px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
}

.symbol-sales span:nth-child(3) {
  top: 66px;
  left: 68px;
  width: 77px;
  height: 1px;
  background: var(--ink);
  transform: rotate(-45deg);
  transform-origin: left;
}

.symbol-admin span:nth-child(1),
.symbol-admin span:nth-child(2),
.symbol-admin span:nth-child(3) {
  width: 68px;
  height: 86px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  background: var(--white);
}

.symbol-admin span:nth-child(1) { left: 5px; top: 28px; transform: rotate(-15deg); }
.symbol-admin span:nth-child(2) { right: 5px; top: 18px; transform: rotate(14deg); background: #ddd6ff; }
.symbol-admin span:nth-child(3) { left: 34px; top: 5px; background: #ffd5cb; }

.symbol-custom {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.symbol-custom::before,
.symbol-custom::after {
  position: absolute;
  width: 95px;
  height: 95px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.symbol-custom::after {
  width: 50px;
  height: 50px;
  background: var(--accent);
}

.symbol-custom span {
  position: relative;
  z-index: 2;
  color: var(--ink);
  font-size: 25px;
}

.agent-visual {
  position: absolute;
  top: 76px;
  right: 28px;
  width: 218px;
  height: 150px;
  overflow: hidden;
  border: 1px solid rgba(23, 26, 23, 0.18);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 32px rgba(23, 26, 23, 0.09);
}

.visual-toolbar {
  display: flex;
  height: 29px;
  align-items: center;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
  gap: 4px;
  background: #f0eee8;
}

.visual-toolbar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c7c4bb;
}

.visual-toolbar span {
  margin-left: auto;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.message-line {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 8px;
  width: 76%;
  padding: 7px 9px;
}

.message-line b {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 7px;
  font-family: "DM Mono", monospace;
  font-size: 6px;
}

.message-line > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.message-line > span i {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background: #cfccc4;
}

.message-line > span i:last-child {
  width: 66%;
}

.customer-message {
  margin: 9px 0 0 8px;
  border-radius: 9px 9px 9px 3px;
  background: #f0eee8;
}

.customer-message b {
  background: #ffd7cd;
}

.agent-message {
  margin: 6px 8px 0 auto;
  border-radius: 9px 9px 3px 9px;
  background: #fff2ad;
}

.agent-message b {
  background: var(--accent);
}

.visual-complete {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  width: 137px;
  padding: 5px 7px;
  border: 1px solid #cbe6d5;
  border-radius: 8px;
  gap: 6px;
  background: #ecf8f0;
}

.visual-complete b {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 8px;
}

.visual-complete > span {
  height: 4px;
  border-radius: 3px;
  background: #b6c8bc;
}

.visual-complete small {
  color: #27714a;
  font-family: "DM Mono", monospace;
  font-size: 6px;
}

.sales-visual {
  padding: 13px;
  background: #f8f6f0;
}

.pipeline-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "DM Mono", monospace;
  font-size: 7px;
}

.pipeline-label span {
  color: var(--muted);
  letter-spacing: 0.08em;
}

.pipeline-label strong {
  color: #167347;
}

.pipeline-track {
  display: flex;
  align-items: center;
  margin: 12px 3px;
}

.pipeline-node {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: white;
  font-family: "DM Mono", monospace;
  font-size: 6px;
}

.pipeline-node.active {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.2);
}

.pipeline-track > i {
  height: 1px;
  flex: 1;
  background: repeating-linear-gradient(90deg, #aaa 0 4px, transparent 4px 7px);
}

.lead-card {
  display: grid;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 9px;
  gap: 7px;
  background: white;
}

.lead-avatar {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: #ddd6ff;
  font-family: "DM Mono", monospace;
  font-size: 6px;
}

.lead-card > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lead-card > span:nth-child(2) i {
  width: 62px;
  height: 4px;
  border-radius: 2px;
  background: #c8c5bd;
}

.lead-card > span:nth-child(2) i:last-child {
  width: 40px;
}

.lead-card > b {
  color: #167347;
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.meeting-chip {
  position: absolute;
  right: 10px;
  bottom: 8px;
  display: flex;
  align-items: center;
  padding: 5px 7px;
  border-radius: 7px;
  gap: 5px;
  color: white;
  background: var(--ink);
}

.meeting-chip span {
  color: var(--accent);
  font-size: 8px;
}

.meeting-chip small {
  font-family: "DM Mono", monospace;
  font-size: 5px;
}

.admin-visual {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.document-sheet {
  position: absolute;
  width: 111px;
  height: 136px;
  border: 1px solid var(--ink);
  border-radius: 12px;
}

.document-back {
  top: 8px;
  right: 13px;
  background: #ddd6ff;
  transform: rotate(9deg);
}

.document-front {
  top: 2px;
  right: 42px;
  padding: 12px;
  background: white;
  transform: rotate(-4deg);
  box-shadow: 0 12px 22px rgba(23, 26, 23, 0.12);
}

.document-head {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 7px;
}

.document-head span {
  padding: 3px 5px;
  border-radius: 4px;
  color: #8f321f;
  background: #ffd7cd;
  font-family: "DM Mono", monospace;
  font-size: 6px;
}

.document-head i {
  width: 42px;
  height: 5px;
  border-radius: 3px;
  background: #c7c4bc;
}

.extracted-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #e4e1d9;
}

.extracted-field span {
  width: 55px;
  height: 4px;
  border-radius: 3px;
  background: #c7c4bc;
}

.extracted-field.short span {
  width: 37px;
}

.extracted-field b {
  display: grid;
  width: 13px;
  height: 13px;
  place-items: center;
  border-radius: 50%;
  color: #167347;
  background: #e2f4e8;
  font-size: 6px;
}

.data-export {
  position: absolute;
  right: 0;
  bottom: 5px;
  display: flex;
  align-items: center;
  padding: 7px 9px;
  border-radius: 9px;
  gap: 8px;
  color: white;
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(23, 26, 23, 0.18);
}

.data-export small {
  color: #b7bcb5;
  font-family: "DM Mono", monospace;
  font-size: 6px;
}

.data-export strong {
  color: var(--accent);
  font-size: 10px;
}

.custom-visual {
  overflow: visible;
  border-color: rgba(255, 255, 255, 0.14);
  background: #20241f;
  box-shadow: none;
}

.custom-core,
.custom-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.custom-core {
  top: 43px;
  left: 75px;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--ink);
  background: var(--accent);
}

.custom-core b {
  font-size: 22px;
  line-height: 1;
}

.custom-core small {
  font-family: "DM Mono", monospace;
  font-size: 5px;
}

.custom-node {
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  background: #343a32;
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.node-mail { top: 17px; left: 22px; }
.node-data { right: 20px; top: 18px; }
.node-app { right: 22px; bottom: 14px; }

.node-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.45) 0 4px, transparent 4px 8px);
  transform-origin: left;
}

.line-one { top: 45px; left: 48px; width: 53px; transform: rotate(24deg); }
.line-two { top: 48px; left: 137px; width: 49px; transform: rotate(-24deg); }
.line-three { top: 102px; left: 137px; width: 49px; transform: rotate(25deg); }

.custom-pulse {
  position: absolute;
  top: 30px;
  left: 62px;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(255, 212, 0, 0.18);
  border-radius: 50%;
  animation: customPulse 2.8s ease-in-out infinite;
}

@keyframes customPulse {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.08); }
}

.agent-card h3 {
  max-width: 310px;
  margin: 174px 0 12px;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.agent-card > p {
  max-width: 390px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

.card-custom > p {
  color: #aeb3ac;
}

.agent-card ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.agent-card li {
  display: flex;
  align-items: center;
  padding: 5px 0;
  gap: 9px;
  font-size: 13px;
}

.agent-card li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.card-custom li::before {
  background: var(--accent);
}

.agent-card > a {
  position: absolute;
  right: 30px;
  bottom: 27px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.card-custom > a {
  border-color: rgba(255, 255, 255, 0.16);
}

.process-section {
  padding: 108px 0;
  color: white;
  background: var(--ink);
}

.process-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.4fr 0.8fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 80px;
}

.process-heading h2 {
  max-width: 700px;
  font-size: clamp(42px, 4.5vw, 64px);
}

.process-heading > p {
  margin: 0;
  color: #aeb3ac;
  font-size: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  min-height: 280px;
  padding-right: 30px;
}

.step-number {
  color: #81867f;
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.step-line {
  position: relative;
  height: 1px;
  margin: 36px 0 40px;
  background: rgba(255, 255, 255, 0.17);
}

.step-line i {
  position: absolute;
  top: -5px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.process-step h3 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.process-step p {
  max-width: 245px;
  margin: 0;
  color: #aeb3ac;
  font-size: 14px;
}

.integrations-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.integrations-copy h2 {
  max-width: 590px;
  margin-top: 30px;
  font-size: clamp(42px, 4.4vw, 62px);
}

.integrations-copy > p {
  max-width: 540px;
  margin: 25px 0 36px;
  color: var(--muted);
  font-size: 16px;
}

.control-callout {
  display: flex;
  align-items: flex-start;
  max-width: 520px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  gap: 15px;
  background: var(--white);
}

.control-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  font-weight: 800;
}

.control-callout p {
  display: flex;
  margin: 0;
  flex-direction: column;
  font-size: 14px;
}

.control-callout p span {
  color: var(--muted);
}

.logo-cloud {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
}

.logo-cloud::before {
  position: absolute;
  inset: 16px;
  z-index: -1;
  border: 1px dashed rgba(23, 26, 23, 0.13);
  border-radius: 27px;
  content: "";
}

.integration-chip {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  gap: 8px;
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.integration-chip:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 10px 25px rgba(21, 25, 20, 0.08);
}

.app-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 10px;
  font-family: "DM Mono", monospace;
  font-size: 14px;
  font-weight: 600;
}

.gmail { color: #d44b3d; background: #fbe4df; }
.microsoft { color: #1473e6; background: #e4effe; }
.hubspot { color: #f47721; background: #ffeadc; }
.salesforce { color: #168ac0; background: #dcf2fc; }
.holded { color: #6d55d7; background: #eae4ff; }
.slack { color: #7b285e; background: #f4e1ed; }
.drive { color: #22905a; background: #dff3e8; }
.whatsapp { color: #178f50; background: #dcf5e7; }
.custom-app { color: white; background: var(--ink); }

.custom-chip {
  color: white;
  background: var(--ink);
}

.impact-section {
  padding: 0 0 108px;
}

.impact-card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 475px;
  padding: 70px;
  border-radius: var(--radius-lg);
  color: white;
  background: #705ce7;
}

.impact-card::before {
  position: absolute;
  right: -170px;
  bottom: -250px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.05), 0 0 0 140px rgba(255, 255, 255, 0.04);
  content: "";
}

.impact-copy {
  position: relative;
  z-index: 1;
}

.impact-copy h2 {
  max-width: 650px;
  margin-top: 30px;
  font-size: clamp(42px, 4.4vw, 61px);
}

.impact-copy p {
  max-width: 570px;
  margin: 24px 0 0;
  color: #ddd8ff;
  font-size: 15px;
}

.impact-metrics {
  position: relative;
  z-index: 1;
  align-self: end;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

.impact-metrics > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

.impact-metrics span {
  color: #d3ccff;
  font-size: 13px;
}

.impact-metrics strong {
  font-size: 15px;
}

.impact-metrics s {
  margin-right: 8px;
  color: #b6aae9;
  font-weight: 400;
}

.impact-metrics em {
  color: var(--accent);
  font-style: normal;
}

.trust-section {
  border-top: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
}

.trust-copy h2 {
  max-width: 520px;
  margin-top: 30px;
  font-size: clamp(42px, 4.2vw, 60px);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.trust-items article {
  min-height: 230px;
  padding: 26px 28px 26px 0;
  border-bottom: 1px solid var(--line);
}

.trust-items article:nth-child(odd) {
  padding-right: 35px;
  border-right: 1px solid var(--line);
}

.trust-items article:nth-child(even) {
  padding-left: 35px;
}

.trust-items article > span {
  color: var(--coral);
  font-family: "DM Mono", monospace;
  font-size: 11px;
}

.trust-items h3 {
  margin: 55px 0 10px;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.trust-items p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  background: var(--paper-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 120px;
}

.faq-heading h2 {
  max-width: 500px;
  margin-top: 30px;
  font-size: clamp(42px, 4.2vw, 60px);
}

.faq-heading p {
  max-width: 420px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.accordion {
  border-top: 1px solid var(--ink);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary i {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.accordion summary i::before,
.accordion summary i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1.5px;
  background: var(--ink);
  content: "";
  transition: transform 0.2s ease;
}

.accordion summary i::after {
  transform: rotate(90deg);
}

.accordion details[open] summary i::after {
  transform: rotate(0deg);
}

.accordion details p {
  max-width: 650px;
  margin: -5px 45px 26px 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-section {
  padding: 72px 0;
  background: var(--ink);
}

.contact-card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 470px;
  padding: 70px;
  border-radius: var(--radius-lg);
  background: var(--accent);
}

.contact-shape {
  position: absolute;
  top: -30px;
  right: 65px;
  width: 330px;
  height: 240px;
}

.contact-shape span {
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}

.contact-shape span:nth-child(1) { top: 45px; left: 0; background: var(--coral); }
.contact-shape span:nth-child(2) { top: 0; right: 5px; background: var(--white); }
.contact-shape span:nth-child(3) { right: 0; bottom: 0; background: var(--violet); }

.contact-copy {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.contact-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-copy h2 {
  margin-top: 20px;
  font-size: clamp(45px, 5vw, 70px);
}

.contact-copy p {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: 15px;
}

.button-whatsapp {
  position: relative;
  z-index: 2;
  min-width: 285px;
  min-height: 76px;
  justify-content: flex-start;
  padding: 0 20px;
  gap: 14px;
  color: white;
  background: var(--ink);
}

.button-whatsapp:hover {
  box-shadow: 0 13px 30px rgba(23, 26, 23, 0.23);
}

.button-whatsapp svg {
  width: 27px;
  flex: 0 0 auto;
  fill: var(--accent);
}

.button-whatsapp > span {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.button-whatsapp small {
  margin-bottom: 3px;
  color: #aeb3ac;
  font-size: 10px;
  font-weight: 500;
}

.button-whatsapp strong {
  font-size: 13px;
}

.button-whatsapp > i {
  margin-left: auto;
  font-style: normal;
}

.site-footer {
  padding: 75px 0 25px;
  color: white;
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 55px;
  padding-bottom: 70px;
}

.footer-top > div:first-child p {
  color: #999e97;
}

.brand-footer {
  gap: 13px;
}

.footer-logo-surface {
  display: grid;
  padding: 5px 8px;
  place-items: center;
  border-radius: 7px;
  background: white;
}

.brand-footer .cadt-logo {
  width: 86px;
  mix-blend-mode: normal;
}

.brand-footer .brand-divider {
  background: rgba(255, 255, 255, 0.2);
}

.brand-footer .brand-project {
  color: white;
}

.footer-top > div:first-child p {
  margin: 17px 0 0;
  font-size: 14px;
}

.footer-top > div:first-child .footer-parent {
  margin-top: 7px;
  font-size: 13px;
}

.footer-parent a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-links > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.footer-links strong {
  margin-bottom: 10px;
  color: #777d75;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: #d1d5cf;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #777d75;
  font-family: "DM Mono", monospace;
  font-size: 11px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 51px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  gap: 9px;
  color: white;
  background: #168d4c;
  box-shadow: 0 12px 34px rgba(18, 94, 52, 0.25);
  font-size: 11px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: #107b40;
}

.floating-whatsapp svg {
  width: 22px;
  fill: white;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(54px, 7vw, 76px);
  }

  .product-window {
    min-height: 460px;
  }

  .activity-panel {
    padding-inline: 22px;
  }

  .note-top {
    right: -12px;
  }

  .note-bottom {
    left: -12px;
  }

  .intro-grid,
  .section-heading,
  .process-heading {
    grid-template-columns: 0.35fr 1.25fr 0.7fr;
    gap: 36px;
  }

  .trust-grid,
  .faq-grid {
    gap: 70px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .button-whatsapp {
    width: max-content;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-whatsapp {
    display: inline-flex;
    min-height: 38px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    gap: 5px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 17px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: flex;
    visibility: hidden;
    align-items: flex-start;
    padding: 34px 28px;
    clip-path: inset(0 0 0 100%);
    flex-direction: column;
    gap: 7px;
    background-color: #f4f1e9;
    background-image: none;
    box-shadow: 0 24px 55px rgba(23, 26, 23, 0.14);
    isolation: isolate;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, clip-path 0.3s ease, visibility 0.3s;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  .mobile-menu.is-open {
    visibility: visible;
    clip-path: inset(0);
    opacity: 1;
    pointer-events: auto;
    background-color: #f4f1e9;
  }

  .mobile-menu > a:not(.button) {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.04em;
  }

  .mobile-menu > a.mobile-sub-link {
    padding-left: 18px;
    font-size: 17px;
    font-weight: 500;
  }

  .mobile-submenu {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .mobile-submenu summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    margin: 0;
    color: var(--ink-soft);
    font-family: "DM Sans", sans-serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.04em;
    cursor: pointer;
    list-style: none;
  }

  .mobile-submenu summary::-webkit-details-marker { display: none; }

  .mobile-submenu summary::after {
    content: "+";
    color: var(--accent-dark);
    font-family: "DM Mono", monospace;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
  }

  .mobile-submenu[open] summary::after { content: "−"; }

  .mobile-submenu-panel {
    display: grid;
    gap: 0;
    padding: 0 0 10px;
  }

  .mobile-submenu-panel .mobile-sub-link {
    width: 100%;
    padding: 10px 18px;
    color: var(--ink-soft);
    font-size: 17px;
    font-weight: 500;
  }

  .mobile-menu .button {
    width: 100%;
    margin-top: 25px;
  }

  .mobile-menu .mobile-whatsapp {
    margin-top: 8px;
  }

  .hero {
    padding: 68px 0 90px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    max-width: 730px;
  }

  .hero-product {
    width: min(100%, 660px);
    margin-inline: auto;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .proof-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .intro-section,
  .agents-section,
  .integrations-section,
  .trust-section,
  .faq-section,
  .process-section {
    padding: 82px 0;
  }

  .diagnosis-section {
    padding: 82px 0;
  }

  .diagnosis-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .diagnosis-copy {
    position: static;
  }

  .diagnosis-form {
    width: min(100%, 760px);
  }

  .intro-grid,
  .section-heading,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading-aside {
    max-width: 650px;
  }

  .section-heading,
  .process-heading {
    margin-bottom: 52px;
  }

  .intro-contrast {
    max-width: 480px;
    margin-top: 20px;
  }

  .agents-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .integrations-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .integrations-copy h2 {
    max-width: 680px;
  }

  .logo-cloud {
    max-width: 670px;
  }

  .impact-card {
    grid-template-columns: 1fr;
    gap: 70px;
    padding: 55px;
  }

  .contact-shape {
    right: 20px;
    opacity: 0.55;
    transform: scale(0.8);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    height: 70px;
    gap: 10px;
  }

  .brand-name {
    font-size: 20px;
  }

  .cadt-logo {
    width: 68px;
  }

  .brand-divider {
    height: 22px;
  }

  .brand-project {
    font-size: 10px;
  }

  .brand-divider,
  .brand-project {
    display: none;
  }

  .brand-mark {
    transform: scale(0.9);
  }

  .header-actions {
    gap: 8px;
  }

  .language-switcher {
    padding: 2px;
  }

  .lang-btn {
    width: 28px;
    height: 27px;
    font-size: 11px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .header-whatsapp {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .mobile-menu {
    top: 70px;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 64px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(48px, 15.3vw, 66px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-actions .button {
    width: 100%;
    padding-inline: 19px;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-product {
    margin-top: -5px;
  }

  .product-window {
    min-height: 407px;
    border-radius: 19px;
    transform: none;
  }

  .window-bar {
    height: 47px;
    padding: 0 12px;
  }

  .product-body {
    grid-template-columns: 45px 1fr;
    min-height: 360px;
  }

  .product-sidebar {
    gap: 16px;
  }

  .mini-brand {
    width: 25px;
    height: 25px;
  }

  .side-item {
    width: 17px;
    height: 17px;
  }

  .activity-panel {
    overflow: hidden;
    padding: 24px 15px 18px;
  }

  .panel-topline strong {
    font-size: 18px;
  }

  .status-pill {
    display: none;
  }

  .agent-row {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 9px;
    padding: 13px 0;
  }

  .agent-avatar {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .agent-state {
    display: none;
  }

  .agent-info strong {
    font-size: 11px;
  }

  .activity-footer {
    margin-top: 10px;
    padding: 14px;
  }

  .activity-footer strong {
    font-size: 22px;
  }

  .floating-note {
    min-width: 154px;
    padding: 9px 10px;
  }

  .note-top {
    top: 72px;
    right: -8px;
  }

  .note-bottom {
    bottom: 23px;
    left: -7px;
  }

  .note-icon {
    width: 26px;
    height: 26px;
  }

  .floating-note strong {
    font-size: 9px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid > div {
    min-height: 91px;
    padding: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .proof-grid > div:last-child {
    border-bottom: 0;
  }

  .proof-grid strong {
    min-width: 70px;
    font-size: 24px;
  }

  .intro-section,
  .agents-section,
  .integrations-section,
  .trust-section,
  .faq-section,
  .process-section {
    padding: 66px 0;
  }

  .diagnosis-section {
    padding: 66px 0;
  }

  .diagnosis-grid {
    gap: 45px;
  }

  .diagnosis-copy h2 {
    font-size: 39px;
    line-height: 1.02;
  }

  .diagnosis-copy > p {
    font-size: 15px;
  }

  .diagnosis-points {
    margin-top: 34px;
  }

  .diagnosis-form {
    padding: 25px 20px;
    border-radius: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .form-heading h3 {
    font-size: 28px;
  }

  .intro-copy h2,
  .section-heading h2,
  .process-heading h2,
  .integrations-copy h2,
  .impact-copy h2,
  .trust-copy h2,
  .faq-heading h2 {
    font-size: 39px;
  }

  .agents-grid {
    gap: 12px;
  }

  .agent-card {
    min-height: 600px;
    padding: 23px;
  }

  .agent-visual {
    top: 72px;
    right: 18px;
    transform: scale(0.82);
    transform-origin: right top;
  }

  .agent-card h3 {
    margin-top: 180px;
    font-size: 28px;
  }

  .agent-card > a {
    right: 23px;
    bottom: 23px;
    left: 23px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-step {
    min-height: auto;
    padding: 0;
  }

  .step-line {
    margin: 20px 0 24px;
  }

  .process-step p {
    max-width: 410px;
    margin-bottom: 30px;
  }

  .logo-cloud {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px;
    border-radius: 25px;
  }

  .integration-chip {
    min-height: 90px;
  }

  .custom-chip {
    grid-column: 1 / -1;
  }

  .impact-section {
    padding-bottom: 66px;
  }

  .impact-card {
    width: calc(100% - 20px);
    min-height: 560px;
    padding: 38px 28px;
    border-radius: 28px;
    gap: 50px;
  }

  .impact-card::before {
    opacity: 0.65;
  }

  .trust-items {
    grid-template-columns: 1fr;
  }

  .trust-items article,
  .trust-items article:nth-child(odd),
  .trust-items article:nth-child(even) {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
  }

  .trust-items h3 {
    margin-top: 28px;
  }

  .accordion summary {
    min-height: 76px;
    font-size: 15px;
  }

  .contact-section {
    padding: 52px 0;
  }

  .contact-card {
    width: calc(100% - 20px);
    min-height: 580px;
    align-items: end;
    padding: 36px 27px;
    border-radius: 28px;
  }

  .contact-shape {
    top: -35px;
    right: -30px;
    transform: scale(0.7);
  }

  .contact-copy h2 {
    font-size: 45px;
  }

  .button-whatsapp {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    padding-top: 55px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    min-height: 50px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 380px) {
  .header-inner { gap: 6px; }
  .cadt-logo { width: 62px; }
  .header-actions { gap: 5px; }
  .lang-btn { width: 25px; }
  .header-whatsapp { padding-inline: 8px; }
  .menu-toggle { width: 36px; height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Cookie consent */
.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 2000;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(23, 26, 23, 0.25));
}

.cookie-banner-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  color: #f8f5ed;
  background: #171a17;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
}

.cookie-banner-copy {
  max-width: 760px;
}

.cookie-banner-label {
  display: block;
  margin-bottom: 8px;
  color: #ffd20a;
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.cookie-banner h2 {
  margin: 0 0 8px;
  color: inherit;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.cookie-banner p {
  margin: 0 0 10px;
  color: rgba(248, 245, 237, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-button {
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid #ffd20a;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cookie-button-primary {
  color: #171a17;
  background: #ffd20a;
}

.cookie-button-secondary {
  color: #fff;
  background: transparent;
}

.cookie-button:focus-visible,
.cookie-settings-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.cookie-settings-button {
  width: fit-content;
  padding: 0;
  color: #d1d5cf;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.cookie-settings-button:hover {
  color: var(--accent);
}

@media (max-width: 760px) {
  .cookie-banner {
    padding: 10px;
  }

  .cookie-banner-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
  }

  .cookie-banner-label { margin-bottom: 6px; font-size: .65rem; }
  .cookie-banner h2 { margin-bottom: 6px; font-size: 1.2rem; }
  .cookie-banner p { margin-bottom: 7px; font-size: .82rem; line-height: 1.42; }
  .cookie-banner a { font-size: .8rem; }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .cookie-button {
    width: 100%;
    min-height: 44px;
    padding-inline: 10px;
    font-size: .8rem;
  }
}
