:root {
  --blue: #1687ff;
  --blue-bright: #3d9aff;
  --purple: #7c5cff;
  --green: #22c982;
  --orange: #ff9f43;
  --ink: #f5f8fc;
  --muted: #9ba8ba;
  --body: #0a0e14;
  --surface: #111720;
  --surface-2: #171e29;
  --surface-3: #1c2531;
  --border: rgba(154, 176, 207, .16);
  --shadow: 0 24px 70px rgba(0, 0, 0, .35);
  --radius: 20px;
  --shell: 1180px;
  color-scheme: dark;
}

html[data-theme="light"] {
  --ink: #162031;
  --muted: #607089;
  --body: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #f0f4f9;
  --surface-3: #e8eef6;
  --border: rgba(35, 58, 89, .14);
  --shadow: 0 24px 70px rgba(31, 59, 95, .14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--body);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 60%);
  content: "";
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

svg {
  display: block;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

/* #main-content is only used by builder pages that load this file as a
   static wrapper (e.g. /cmsagent-contact-us); the landing page itself never
   uses this id. Just clear the fixed .site-header and center the content in
   the same column width as the header/footer .shell - NOT the landing hero's
   168px+168px offset, which left ~336px of empty space above the blocks. */
#main-content {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
  padding: 112px 0 80px;
}

#main-content>#container-main {
  min-width: 0;
}

#main-content>#container-announcements:empty,
#main-content>#container-comments:empty {
  display: none;
}

@media (max-width: 600px) {
  #main-content {
    padding-top: 96px;
  }
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  background: color-mix(in srgb, var(--body) 80%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color .2s ease, background-color .2s ease;
}

.site-header.scrolled {
  background: color-mix(in srgb, var(--body) 94%, transparent);
  border-color: var(--border);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand>span:last-child>span,
.window-brand span,
.hub strong span {
  color: var(--blue);
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #005ac8);
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(22, 135, 255, .28);
}

.brand-mark svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linejoin: round;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.primary-nav a,
.text-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color .15s ease;
}

.primary-nav a:hover,
.text-link:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.theme-toggle,
.nav-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.theme-icon {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon-moon {
  display: none;
}

html[data-theme="light"] .theme-icon-sun {
  display: none;
}

html[data-theme="light"] .theme-icon-moon {
  display: block;
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
}

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

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  border-radius: 10px;
  font-size: 13px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-bright), #066ee0);
  box-shadow: 0 12px 28px rgba(22, 135, 255, .24);
}

.button-primary:hover {
  box-shadow: 0 16px 36px rgba(22, 135, 255, .34);
}

.button-secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--border);
}

.button-secondary:hover {
  border-color: color-mix(in srgb, var(--blue) 45%, var(--border));
}

.button-light {
  color: #0754ad;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
}

.play-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--blue);
  background: rgba(22, 135, 255, .12);
  border-radius: 50%;
  font-size: 9px;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 168px 0 96px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--body));
  pointer-events: none;
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -280px;
  right: -180px;
  width: 780px;
  height: 780px;
  background: radial-gradient(circle, rgba(22, 135, 255, .17), transparent 68%);
}

.hero-glow-two {
  bottom: -350px;
  left: -300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124, 92, 255, .1), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow>span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.connected-copy h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 780;
  letter-spacing: -.055em;
  line-height: .99;
}

h1 em,
h2 em {
  color: var(--blue-bright);
  font-family: Georgia, serif;
  font-weight: 500;
}

.hero-lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 12px;
}

.hero-proof li {
  display: flex;
  gap: 7px;
  align-items: center;
}

.hero-proof span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--green);
  background: rgba(34, 201, 130, .12);
  border-radius: 50%;
  font-size: 10px;
}

.product-stage {
  position: relative;
  min-width: 0;
  perspective: 1200px;
}

.app-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #111720;
  border: 1px solid rgba(166, 188, 220, .22);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .48), 0 0 0 1px rgba(255, 255, 255, .03) inset;
  transform: rotateY(-3deg) rotateX(1deg);
  transform-origin: center;
}

.window-topbar {
  display: flex;
  height: 48px;
  padding: 0 15px;
  align-items: center;
  justify-content: space-between;
  color: #eef4fc;
  background: #0b1017;
  border-bottom: 1px solid rgba(166, 188, 220, .12);
}

.window-brand {
  font-size: 12px;
  font-weight: 800;
}

.mini-mark {
  margin-right: 5px;
  color: var(--blue);
}

.window-tools {
  display: flex;
  gap: 8px;
  align-items: center;
}

.window-tools>span:not(.avatar) {
  width: 6px;
  height: 6px;
  background: #4b586a;
  border-radius: 50%;
}

.avatar {
  display: grid;
  width: 24px;
  height: 24px;
  margin-left: 4px;
  place-items: center;
  color: #fff;
  background: #1d6ac5;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 800;
}

.window-body {
  display: grid;
  grid-template-columns: 116px 1fr;
  min-height: 414px;
}

.demo-sidebar {
  padding: 20px 10px;
  background: #0e141d;
  border-right: 1px solid rgba(166, 188, 220, .1);
}

.demo-nav-label {
  margin: 0 8px 10px;
  color: #58667a;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.demo-nav-item {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 3px;
  padding: 8px 9px;
  color: #718096;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 650;
}

.demo-nav-item i {
  width: 11px;
  color: #7f8da1;
  font-style: normal;
  text-align: center;
}

.demo-nav-item.active {
  color: #5aaaff;
  background: rgba(22, 135, 255, .12);
}

.demo-nav-item.active i {
  color: var(--blue);
}

.demo-content {
  min-width: 0;
  padding: 22px;
  background: #131a24;
}

.demo-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.demo-heading small,
.panel-heading small {
  display: block;
  margin-bottom: 3px;
  color: #438fe6;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .13em;
}

.demo-heading strong {
  color: #eef4fc;
  font-size: 14px;
}

.demo-heading button {
  padding: 7px 10px;
  color: #fff;
  background: #147fee;
  border: 0;
  border-radius: 6px;
  font-size: 7px;
  font-weight: 750;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 16px;
}

.metric-grid article {
  position: relative;
  padding: 12px;
  background: #19222e;
  border: 1px solid rgba(166, 188, 220, .1);
  border-radius: 9px;
}

.metric-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 6px;
  font-size: 9px;
  font-style: normal;
}

.metric-icon.blue {
  color: #43a0ff;
  background: rgba(22, 135, 255, .12);
}

.metric-icon.purple {
  color: #9b86ff;
  background: rgba(124, 92, 255, .12);
}

.metric-icon.green {
  color: #45d99c;
  background: rgba(34, 201, 130, .12);
}

.metric-grid small {
  display: block;
  color: #79879a;
  font-size: 7px;
}

.metric-grid strong {
  display: block;
  margin-top: 9px;
  color: #f5f8fc;
  font-size: 14px;
}

.metric-grid em {
  display: block;
  margin-top: 3px;
  color: #39ce91;
  font-size: 6px;
  font-style: normal;
}

.demo-panels {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 9px;
  margin-top: 9px;
}

.chart-panel,
.activity-panel {
  min-width: 0;
  padding: 12px;
  background: #19222e;
  border: 1px solid rgba(166, 188, 220, .1);
  border-radius: 9px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-heading strong {
  color: #eef4fc;
  font-size: 9px;
}

.panel-heading b {
  padding: 4px 6px;
  color: #7c8ba0;
  background: #121923;
  border-radius: 4px;
  font-size: 6px;
  font-weight: 600;
}

.chart {
  position: relative;
  height: 130px;
  margin-top: 15px;
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, rgba(166, 188, 220, .08) 0, rgba(166, 188, 220, .08) 1px, transparent 1px, transparent 32px);
}

.chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chart-area {
  fill: url(#area);
}

.chart-line {
  fill: none;
  stroke: #1687ff;
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}

.activity-panel ul {
  display: grid;
  gap: 0;
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}

.activity-panel li {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid rgba(166, 188, 220, .08);
}

.activity-panel li:last-child {
  border: 0;
}

.dot {
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  margin-top: 3px;
  border-radius: 50%;
}

.dot.green {
  background: var(--green);
}

.dot.blue {
  background: var(--blue);
}

.dot.purple {
  background: var(--purple);
}

.activity-panel strong,
.activity-panel small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-panel strong {
  color: #dbe5f2;
  font-size: 7px;
}

.activity-panel small {
  max-width: 105px;
  margin-top: 2px;
  color: #68778b;
  font-size: 6px;
}

.stage-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(22, 135, 255, .12);
  border-radius: 50%;
}

.orbit-one {
  inset: -55px -65px;
}

.orbit-two {
  inset: -115px -125px;
  opacity: .55;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 10px 13px;
  color: #eef4fc;
  background: rgba(20, 28, 39, .93);
  border: 1px solid rgba(166, 188, 220, .2);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .32);
  backdrop-filter: blur(10px);
}

.floating-card-booking {
  right: -25px;
  bottom: 48px;
}

.floating-card-growth {
  top: 78px;
  left: -35px;
}

.float-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  font-size: 11px;
}

.float-icon.green {
  color: #45d99c;
  background: rgba(34, 201, 130, .13);
}

.float-icon.blue {
  color: #49a4ff;
  background: rgba(22, 135, 255, .13);
}

.floating-card small,
.floating-card strong {
  display: block;
  white-space: nowrap;
}

.floating-card small {
  color: #7e8ca0;
  font-size: 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.floating-card strong {
  margin-top: 2px;
  font-size: 8px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}

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

.trust-inner>span {
  color: var(--muted);
  font-size: 12px;
}

.trust-inner div {
  display: flex;
  gap: 22px;
  align-items: center;
}

.trust-inner b {
  color: color-mix(in srgb, var(--ink) 65%, var(--muted));
  font-size: 10px;
  letter-spacing: .12em;
}

.trust-inner i {
  width: 3px;
  height: 3px;
  background: var(--blue);
  border-radius: 50%;
}

.section {
  padding: 112px 0;
  scroll-margin-top: 70px;
}

.section-heading {
  max-width: 690px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.connected-copy h2,
.cta-card h2 {
  font-size: clamp(38px, 4.3vw, 58px);
  line-height: 1.04;
}

.section-heading>p,
.connected-copy>p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.toolkit-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 34px auto 0;
}

.toolkit-index a {
  padding: 9px 13px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.toolkit-index a:hover {
  color: var(--blue-bright);
  background: var(--surface-2);
  border-color: color-mix(in srgb, var(--blue) 35%, var(--border));
}

.toolkit-group-heading {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 66px 0 19px;
  scroll-margin-top: 105px;
}

.toolkit-group-heading>span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-bright);
  background: rgba(22, 135, 255, .1);
  border: 1px solid rgba(22, 135, 255, .18);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
}

.toolkit-group-heading small {
  color: var(--blue-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.toolkit-group-heading h3 {
  margin: 3px 0 0;
  font-size: 23px;
  letter-spacing: -.03em;
}

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

.capability-card {
  position: relative;
  min-width: 0;
  min-height: 360px;
  padding: 30px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.capability-card::after {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, color-mix(in srgb, var(--blue) 10%, transparent), transparent 68%);
  border-radius: 50%;
  content: "";
}

.capability-card.featured {
  background: linear-gradient(145deg, color-mix(in srgb, var(--blue) 7%, var(--surface)), var(--surface) 54%);
}

.capability-card:hover {
  border-color: color-mix(in srgb, var(--blue) 35%, var(--border));
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.capability-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.capability-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
}

.capability-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-icon.blue {
  color: #51a8ff;
  background: rgba(22, 135, 255, .12);
}

.capability-icon.purple {
  color: #9d8aff;
  background: rgba(124, 92, 255, .12);
}

.capability-icon.green {
  color: #4bd99f;
  background: rgba(34, 201, 130, .12);
}

.capability-icon.orange {
  color: #ffb15e;
  background: rgba(255, 159, 67, .12);
}

.module-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.capability-card h3 {
  position: relative;
  z-index: 1;
  margin: 25px 0 0;
  font-size: 23px;
  letter-spacing: -.03em;
}

.capability-card p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.capability-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 17px 0 0;
  color: color-mix(in srgb, var(--ink) 78%, var(--muted));
  border-top: 1px solid var(--border);
  list-style: none;
  font-size: 11px;
}

.capability-card li {
  display: grid;
  grid-template-columns: 13px minmax(0, 1fr);
  gap: 7px;
}

.capability-card li::before {
  color: var(--green);
  content: "✓";
}

.toolkit-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 34px;
  padding: 24px 26px;
  background: color-mix(in srgb, var(--blue) 6%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--blue) 22%, var(--border));
  border-radius: var(--radius);
}

.toolkit-note-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--blue-bright);
  background: rgba(22, 135, 255, .12);
  border-radius: 10px;
}

.toolkit-note strong {
  font-size: 15px;
}

.toolkit-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.connected-section {
  overflow: hidden;
  background: color-mix(in srgb, var(--surface) 45%, var(--body));
  border-block: 1px solid var(--border);
}

.connected-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: 80px;
  align-items: center;
}

.connected-visual {
  position: relative;
  width: min(100%, 580px);
  aspect-ratio: 1 / 1;
  margin: 28px auto;
  isolation: isolate;
}

.connected-visual::before {
  position: absolute;
  z-index: -2;
  inset: 12%;
  background: radial-gradient(circle, rgba(22, 135, 255, .14), rgba(22, 135, 255, .035) 43%, transparent 68%);
  border-radius: 50%;
  content: "";
}

.workflow-ring {
  position: absolute;
  z-index: -1;
  inset: 13%;
  aspect-ratio: 1 / 1;
  border: 1px dashed color-mix(in srgb, var(--blue) 36%, var(--border));
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(22, 135, 255, .018), 0 0 0 68px rgba(22, 135, 255, .012);
}

.workflow-ring::before,
.workflow-ring::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.workflow-ring::before {
  inset: 17%;
  border: 1px solid color-mix(in srgb, var(--blue) 13%, transparent);
}

.workflow-ring::after {
  inset: -1px;
  background: conic-gradient(from -30deg, rgba(22, 135, 255, .28), transparent 14%, rgba(124, 92, 255, .24) 28%, transparent 45%, rgba(34, 201, 130, .22) 60%, transparent 76%, rgba(255, 159, 67, .2) 88%, transparent);
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
}

.workflow-direction {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--blue-bright);
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--blue) 30%, var(--border));
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.direction-1 {
  top: 3%;
  right: 22%;
  transform: rotate(50deg);
}

.direction-2 {
  top: 43%;
  right: -3%;
  transform: rotate(110deg);
}

.direction-3 {
  right: 20%;
  bottom: 2%;
  transform: rotate(170deg);
}

.direction-4 {
  bottom: 2%;
  left: 20%;
  transform: rotate(230deg);
}

.direction-5 {
  top: 43%;
  left: -3%;
  transform: rotate(290deg);
}

.direction-6 {
  top: 3%;
  left: 22%;
  transform: rotate(350deg);
}

.hub {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 31%;
  aspect-ratio: 1 / 1;
  place-items: center;
  align-content: center;
  padding: 16px;
  text-align: center;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--blue) 45%, var(--border));
  border-radius: 50%;
  box-shadow: 0 0 0 10px color-mix(in srgb, var(--surface) 80%, transparent), 0 0 60px rgba(22, 135, 255, .2);
  transform: translate(-50%, -50%);
}

.hub-mark {
  color: var(--blue);
  font-size: 27px;
}

.hub strong {
  margin-top: 7px;
  font-size: 15px;
}

.hub small {
  max-width: 105px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 7px;
  line-height: 1.35;
}

.orbit-card {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  width: 39%;
  min-width: 0;
  padding: 10px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
}

.orbit-card>b {
  align-self: start;
  color: var(--blue-bright);
  font-size: 7px;
}

.orbit-card i {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--blue);
  background: rgba(22, 135, 255, .1);
  border-radius: 8px;
  font-style: normal;
}

.orbit-card span {
  min-width: 0;
}

.orbit-card strong,
.orbit-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.orbit-card strong {
  font-size: 9px;
}

.orbit-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 6.5px;
}

.workflow-discover {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.workflow-engage {
  top: 24%;
  right: 0;
}

.workflow-customer {
  right: 3%;
  bottom: 14%;
}

.workflow-serve {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.workflow-followup {
  bottom: 14%;
  left: 3%;
}

.workflow-learn {
  top: 24%;
  left: 0;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-width: 0;
  padding: 14px;
  background: color-mix(in srgb, var(--surface) 68%, transparent);
  border: 1px solid var(--border);
  border-radius: 11px;
}

.benefit-list article>span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--blue-bright);
  background: rgba(22, 135, 255, .1);
  border-radius: 7px;
  font-size: 8px;
  font-weight: 800;
}

.benefit-list h3 {
  margin: 2px 0 0;
  font-size: 13px;
}

.benefit-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.built-section {
  overflow: hidden;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  counter-reset: reasons;
}

/* reason cards */
.reason-card {
  position: relative;
  min-height: 255px;
  padding: 30px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;

  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* Number badge */
.reason-card > span:first-child {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 3.5rem;

  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;

  color: #79baff;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .12em;

  border: 1px solid rgba(59, 145, 255, .45);
  border-radius: .75rem;
  background:
    linear-gradient(
      145deg,
      rgba(43, 139, 255, .18),
      rgba(86, 92, 255, .08)
    ),
    rgba(17, 29, 47, .8);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .07),
    0 .5rem 1.1rem rgba(0, 0, 0, .16);

  transition:
    color .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

/* Card heading */
.reason-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;

  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -.02em;
}

/* Card description */
.reason-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;

  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Optional oversized background number.
   Requires data-number="03" on the article. */
.reason-card::after {
  content: attr(data-number);

  position: absolute;
  top: 18px;
  right: 24px;

  color: color-mix(in srgb, var(--ink) 4%, transparent);
  font-family: Georgia, serif;
  font-size: 90px;
  font-weight: 700;
  line-height: 1;

  pointer-events: none;
  user-select: none;
}

/* Number badge interaction */
.reason-card:hover > span:first-child {
  color: #fff;
  border-color: rgba(80, 165, 255, .75);
  background: linear-gradient(145deg, #2798ff, #655cff);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .2),
    0 .75rem 1.5rem rgba(25, 113, 255, .24);

  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .reason-card {
    min-height: auto;
    padding: 26px;
  }

  .reason-card > span:first-child {
    margin-bottom: 2.5rem;
  }

  .reason-card::after {
    right: 18px;
    font-size: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reason-card > span:first-child {
    transition: none;
  }

  .reason-card:hover > span:first-child {
    transform: none;
  }
}


.cta-section {
  padding-top: 50px;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  padding: 65px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0d76e8, #0056ba);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(10, 103, 207, .28);
}

.cta-card::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, black, transparent);
  content: "";
}

.cta-card>* {
  position: relative;
  z-index: 2;
}

.eyebrow.light {
  color: rgba(255, 255, 255, .78);
}

.cta-card h2 {
  max-width: 740px;
}

.cta-card h2 em {
  color: #fff;
}

.cta-card p {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  line-height: 1.7;
}

.cta-actions {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.cta-actions small {
  max-width: 220px;
  color: rgba(255, 255, 255, .65);
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}

.cta-orb {
  position: absolute;
  z-index: 0;
  right: -150px;
  bottom: -200px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .03), 0 0 0 140px rgba(255, 255, 255, .02);
}

.site-footer {
  padding: 55px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  padding-bottom: 42px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-grid>div:first-child p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 110px;
}

.footer-links strong {
  margin-bottom: 4px;
  font-size: 11px;
}

.footer-links a {
  color: var(--muted);
  font-size: 11px;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.reveal-delay {
  transition-delay: .12s;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .product-stage {
    width: min(100%, 760px);
    margin: 20px auto 0;
  }

  .hero {
    padding-top: 145px;
  }

  .connected-grid {
    gap: 40px;
  }

  .connected-visual {
    width: min(100%, 620px);
  }

  .cta-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cta-actions {
    justify-items: start;
  }

  .cta-actions small {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .nav-toggle span:not(.visually-hidden) {
    display: block;
    width: 17px;
    height: 1.5px;
    margin: 2px 0;
    background: currentColor;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    padding: 12px;
    flex-direction: column;
    gap: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 13px;
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    padding: 10px;
    border-radius: 7px;
  }

  .primary-nav a:hover {
    background: var(--surface-2);
  }

  .login-link {
    display: none;
  }

  .nav-actions {
    justify-self: end;
  }

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

  .connected-visual {
    order: 2;
    width: min(100%, 600px);
    margin: 24px auto;
  }

  .connected-copy {
    order: 1;
  }

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

  .trust-inner {
    padding-block: 20px;
    flex-direction: column;
    justify-content: center;
  }

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

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

  .floating-card-growth {
    left: -10px;
  }

  .floating-card-booking {
    right: -10px;
  }
}

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

  .nav-shell {
    min-height: 68px;
  }

  .nav-actions .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 75px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .product-stage {
    margin-top: 35px;
  }

  .app-window {
    transform: none;
  }

  .window-body {
    grid-template-columns: 72px 1fr;
    min-height: 330px;
  }

  .demo-sidebar {
    padding-inline: 6px;
  }

  .demo-nav-label,
  .demo-nav-item span {
    display: none;
  }

  .demo-nav-item {
    justify-content: center;
  }

  .demo-content {
    padding: 12px;
  }

  .metric-grid {
    gap: 5px;
  }

  .metric-grid article {
    padding: 9px 7px;
  }

  .metric-icon {
    display: none;
  }

  .metric-grid strong {
    font-size: 10px;
  }

  .demo-panels {
    grid-template-columns: 1fr;
  }

  .activity-panel {
    display: none;
  }

  .chart {
    height: 90px;
  }

  .floating-card {
    display: none;
  }

  .stage-orbit {
    display: none;
  }

  .trust-inner div {
    gap: 9px;
  }

  .trust-inner b {
    font-size: 7px;
  }

  .section {
    padding: 78px 0;
  }

  .toolkit-index {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .toolkit-index a {
    display: grid;
    place-items: center;
    text-align: center;
  }

  .toolkit-group-heading {
    margin-top: 48px;
  }

  .toolkit-group-heading h3 {
    font-size: 19px;
  }

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

  .capability-card {
    min-height: 0;
    padding: 27px;
  }

  .toolkit-note {
    grid-template-columns: 1fr;
  }

  .connected-visual {
    width: min(112%, 520px);
    margin-block: 5px;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .orbit-card {
    width: 42%;
    padding: 7px;
    gap: 5px;
  }

  .orbit-card>b {
    display: none;
  }

  .orbit-card i {
    width: 25px;
    height: 25px;
    font-size: 9px;
  }

  .orbit-card strong {
    font-size: 8px;
  }

  .orbit-card small {
    font-size: 5.5px;
  }

  .hub {
    width: 32%;
    padding: 10px;
  }

  .hub-mark {
    font-size: 21px;
  }

  .hub strong {
    font-size: 12px;
  }

  .hub small {
    font-size: 6px;
  }

  .workflow-direction {
    width: 18px;
    height: 18px;
    font-size: 7px;
  }

  .cta-section {
    padding-top: 20px;
  }

  .cta-card {
    gap: 35px;
    padding: 38px 25px;
    border-radius: 20px;
  }

  .cta-card h2 {
    font-size: 38px;
  }

  .cta-actions,
  .cta-actions .button {
    width: 100%;
  }

  .cta-actions {
    justify-items: stretch;
  }

  .cta-actions small {
    max-width: none;
    text-align: center;
  }

  .footer-grid {
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom span:last-child {
    display: none;
  }
}

@media (max-width: 420px) {
  .benefit-list {
    grid-template-columns: 1fr;
  }
}

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

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

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

/*
 * CMSAgent contact form
 * Scoped to #cmsagent-contact-us so it can be appended safely to an existing stylesheet.
 * Uses the CMSAgent theme variables: --ink, --muted, --body, --surface,
 * --surface-2, --border, --blue, --blue-bright, --purple, --green,
 * --shadow, and --radius.
 */

#cmsagent-contact-us {
  position: relative;
  width: min(calc(100% - 2rem), 920px);
  margin: clamp(2rem, 5vw, 4.5rem) auto !important;
  padding: clamp(1.25rem, 3.5vw, 2.35rem) !important;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0, rgba(22, 135, 255, .12), transparent 35%),
    linear-gradient(145deg,
      color-mix(in srgb, var(--surface-2) 58%, var(--surface)),
      var(--surface) 54%);
  border: 1px solid color-mix(in srgb, var(--blue) 22%, var(--border)) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow);
}

#cmsagent-contact-us::before {
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--purple), transparent);
  content: "";
}

#cmsagent-contact-us .cms-form {
  position: relative;
  z-index: 1;
}

#cmsagent-contact-us .row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

#cmsagent-contact-us .row.mb-3 {
  margin-bottom: 1rem !important;
}

#cmsagent-contact-us .form-label {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: .5rem;
  color: color-mix(in srgb, var(--ink) 88%, var(--muted));
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .015em;
}

#cmsagent-contact-us .form-label .text-danger {
  color: #ff6f7d !important;
  font-size: .9em;
}

#cmsagent-contact-us .form-control {
  min-height: 3.15rem;
  padding: .78rem .9rem;
  color: var(--ink);
  caret-color: var(--blue-bright);
  background: color-mix(in srgb, var(--body) 52%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--ink) 14%, var(--border));
  border-radius: 11px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
  font-size: .9rem;
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background-color .18s ease;
}

#cmsagent-contact-us .form-control:hover {
  border-color: color-mix(in srgb, var(--blue) 30%, var(--border));
}

#cmsagent-contact-us .form-control:focus {
  color: var(--ink);
  background: color-mix(in srgb, var(--body) 34%, var(--surface));
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 .22rem rgba(22, 135, 255, .14);
}

#cmsagent-contact-us textarea.form-control {
  min-height: 9.5rem;
  resize: vertical;
  line-height: 1.6;
}

#cmsagent-contact-us .invalid-feedback {
  margin-top: .42rem;
  color: #ff7d89;
  font-size: .72rem;
  line-height: 1.4;
}

#cmsagent-contact-us .was-validated .form-control:invalid,
#cmsagent-contact-us .form-control.is-invalid {
  background-image: none;
  border-color: #e95b69;
  box-shadow: 0 0 0 .18rem rgba(233, 91, 105, .09);
}

#cmsagent-contact-us .was-validated .form-control:valid,
#cmsagent-contact-us .form-control.is-valid {
  background-image: none;
  border-color: color-mix(in srgb, var(--green) 72%, var(--border));
}

#cmsagent-contact-us .cms-form>.d-flex.gap-2 {
  align-items: center;
  gap: .65rem !important;
  margin-top: 1.65rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--border);
}

#cmsagent-contact-us .btn {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.15rem;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 750;
  transition:
    transform .18s ease,
    border-color .18s ease,
    background-color .18s ease,
    box-shadow .18s ease;
}

#cmsagent-contact-us .btn:hover {
  transform: translateY(-1px);
}

#cmsagent-contact-us .btn-primary {
  min-width: 8.5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-bright), #0871dc);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(22, 135, 255, .2);
}

#cmsagent-contact-us .btn-primary:hover,
#cmsagent-contact-us .btn-primary:focus-visible {
  background: linear-gradient(135deg, #51a5ff, var(--blue));
  box-shadow: 0 12px 28px rgba(22, 135, 255, .28);
}

#cmsagent-contact-us .btn-outline-secondary {
  color: var(--muted);
  background: transparent;
  border-color: var(--border);
}

#cmsagent-contact-us .btn-outline-secondary:hover,
#cmsagent-contact-us .btn-outline-secondary:focus-visible {
  color: var(--ink);
  background: var(--surface-2);
  border-color: color-mix(in srgb, var(--ink) 28%, var(--border));
}

@media (max-width: 575.98px) {
  #cmsagent-contact-us {
    width: min(calc(100% - 1rem), 920px);
    padding: 1.15rem !important;
  }

  #cmsagent-contact-us .cms-form>.d-flex.gap-2 {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  #cmsagent-contact-us .btn-primary {
    width: 100%;
  }
}

/*
 * CMSAgent contact introduction and privacy note
 */

#start-a-conversation,
#your-information-stays-private {
  position: relative;
  width: min(calc(100% - 2rem), 920px);
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0, rgba(22, 135, 255, .1), transparent 38%),
    linear-gradient(145deg,
      color-mix(in srgb, var(--surface-2) 58%, var(--surface)),
      var(--surface) 54%);
  border-color: color-mix(in srgb, var(--blue) 22%, var(--border));
}

#start-a-conversation {
  margin: clamp(2rem, 5vw, 4.5rem) auto 0 !important;
  padding: clamp(1.4rem, 3.5vw, 2.35rem) !important;
  border: 1px solid color-mix(in srgb, var(--blue) 22%, var(--border));
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

#start-a-conversation::before {
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--purple), transparent);
  content: "";
}

/* Join the generated form block to the introduction and privacy blocks. */
#start-a-conversation+#cmsagent-contact-us,
#cmsagent-contact-us {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
  box-shadow: none;
}

#start-a-conversation .cms-ice-content-target,
#your-information-stays-private .cms-ice-content-target {
  position: relative;
  z-index: 1;
}

#start-a-conversation .cmsagent-contact-intro {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin: 0;
}

#start-a-conversation .cmsagent-contact-intro-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--blue-bright);
  background: rgba(22, 135, 255, .11);
  border: 1px solid rgba(22, 135, 255, .18);
  border-radius: .8rem;
  font-size: 1.15rem;
}

#start-a-conversation .cmsagent-contact-eyebrow {
  display: block;
  margin-bottom: .35rem;
  color: var(--blue-bright);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

#start-a-conversation .cmsagent-contact-intro h2 {
  max-width: 26ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.12;
}

#start-a-conversation .cmsagent-contact-intro p {
  max-width: 68ch;
  margin: .75rem 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

#your-information-stays-private {
  margin: 0 auto clamp(2rem, 5vw, 4.5rem) !important;
  padding: 0 clamp(1.25rem, 3.5vw, 2.35rem) clamp(1.25rem, 3.5vw, 2rem) !important;
  border: 1px solid color-mix(in srgb, var(--blue) 22%, var(--border));
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

#your-information-stays-private .cmsagent-contact-privacy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .75rem;
  align-items: start;
  margin: 1rem 0 0;
  padding: .85rem 1rem;
  color: var(--muted);
  background: color-mix(in srgb, var(--green) 5%, var(--surface-2));
  border: 1px solid color-mix(in srgb, var(--green) 20%, var(--border));
  border-radius: .75rem;
}

#your-information-stays-private .cmsagent-contact-privacy>span {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  color: var(--green);
  background: color-mix(in srgb, var(--green) 10%, transparent);
  border-radius: .5rem;
  font-size: .85rem;
}

#your-information-stays-private .cmsagent-contact-privacy p {
  margin: .12rem 0 0;
  font-size: .75rem;
  line-height: 1.55;
}

#your-information-stays-private .cmsagent-contact-privacy strong {
  color: color-mix(in srgb, var(--ink) 88%, var(--muted));
}

@media (max-width: 575.98px) {

  #start-a-conversation,
  #your-information-stays-private {
    width: min(calc(100% - 1rem), 920px);
  }

  #start-a-conversation {
    padding: 1.15rem !important;
  }

  #your-information-stays-private {
    padding: 0 1.15rem 1.15rem !important;
  }

  #start-a-conversation .cmsagent-contact-intro {
    grid-template-columns: 1fr;
  }

  #start-a-conversation .cmsagent-contact-intro-icon {
    width: 2.65rem;
    height: 2.65rem;
  }

  #start-a-conversation .cmsagent-contact-intro h2 {
    font-size: 1.45rem;
  }
}