:root {
  --ink: #102337;
  --muted: #596b7f;
  --soft: #eef7f7;
  --surface: #ffffff;
  --line: #d8e6e8;
  --blue: #216eb8;
  --blue-dark: #185187;
  --green: #39a867;
  --green-dark: #25804d;
  --lime: #b8d65d;
  --focus: #113d66;
  --shadow: 0 20px 50px rgba(16, 35, 55, 0.12);
  --shadow-soft: 0 12px 30px rgba(16, 35, 55, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8fbfb;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  background: var(--ink);
  color: #ffffff;
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-pad {
  padding: 72px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 230, 232, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: min(220px, 56vw);
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(33, 110, 184, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 16px 32px rgba(33, 110, 184, 0.26);
}

.button-secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--blue-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(33, 110, 184, 0.32);
  box-shadow: var(--shadow-soft);
}

:focus-visible {
  outline: 3px solid rgba(17, 61, 102, 0.4);
  outline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(57, 168, 103, 0.11), rgba(33, 110, 184, 0.13)),
    #ffffff;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 700;
}

h1 {
  max-width: 760px;
  font-size: 2.55rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 680px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.product-visual {
  overflow: hidden;
  border: 1px solid rgba(216, 230, 232, 0.92);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  gap: 0.42rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  background: #f3f7f8;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9d7d9;
}

.browser-bar span:nth-child(1) {
  background: #3fa96b;
}

.browser-bar span:nth-child(2) {
  background: #b8d65d;
}

.browser-bar span:nth-child(3) {
  background: #3c87c8;
}

.assistant-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.visual-label {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.assistant-topline h2 {
  font-size: 1.25rem;
}

.status-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.62rem;
  border: 1px solid rgba(57, 168, 103, 0.24);
  border-radius: 999px;
  background: rgba(57, 168, 103, 0.1);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.assistant-layout {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  background:
    linear-gradient(180deg, rgba(238, 247, 247, 0.65), rgba(255, 255, 255, 0.95)),
    #ffffff;
}

.conversation-panel {
  display: grid;
  gap: 0.75rem;
}

.chat-message {
  width: min(92%, 410px);
  padding: 0.78rem 0.9rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.chat-message p {
  margin: 0;
}

.chat-message.visitor {
  justify-self: end;
  background: #eaf2fb;
  color: #173a5d;
}

.chat-message.assistant {
  justify-self: start;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(16, 35, 55, 0.06);
}

.lead-panel {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 1rem;
}

.lead-panel-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.lead-icon,
.icon-box {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(57, 168, 103, 0.14), rgba(33, 110, 184, 0.14));
  color: var(--blue-dark);
}

.lead-icon svg,
.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-panel h3 {
  font-size: 1rem;
}

.mini-field {
  display: grid;
  gap: 0.08rem;
  padding: 0.62rem 0;
  border-top: 1px solid var(--line);
}

.mini-field span {
  color: var(--muted);
  font-size: 0.76rem;
}

.mini-field strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.lead-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  padding: 0.72rem 0.78rem;
  border-radius: 8px;
  background: rgba(57, 168, 103, 0.1);
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.lead-status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.value-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.value-strip ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 1rem 0;
  list-style: none;
}

.value-strip li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-weight: 700;
}

.value-strip li span,
.feature-list li::before {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--green), var(--blue));
}

.value-strip li span::after,
.feature-list li::after {
  content: "";
  display: block;
  width: 7px;
  height: 4px;
  margin: 6px 0 0 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow),
.results-grid p,
.demo-copy p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card,
.step-card,
.compare-card,
.pricing-card,
.demo-form,
details,
.demo-note,
.results-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.benefit-card {
  padding: 1.2rem;
}

.benefit-card h3 {
  margin-top: 1rem;
}

.benefit-card p,
.step-card p,
.compare-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.tinted-section {
  background:
    linear-gradient(135deg, rgba(57, 168, 103, 0.08), rgba(33, 110, 184, 0.08)),
    #ffffff;
}

.steps {
  display: grid;
  gap: 1rem;
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding: 1.35rem;
}

.step-card > span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-weight: 700;
}

.results-section {
  background: #f8fbfb;
}

.results-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.results-grid h2,
.demo-copy h2 {
  margin-bottom: 1rem;
}

.results-list {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.results-list div {
  display: grid;
  gap: 0.25rem;
  padding: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.results-list div:last-child {
  border-bottom: 0;
}

.results-list strong {
  font-size: 1rem;
}

.results-list span {
  color: var(--muted);
}

.compare-section {
  background: #ffffff;
}

.compare-grid {
  display: grid;
  gap: 1rem;
}

.compare-card {
  padding: 1.35rem;
}

.compare-card.highlight {
  border-color: rgba(57, 168, 103, 0.35);
  background:
    linear-gradient(135deg, rgba(57, 168, 103, 0.08), rgba(33, 110, 184, 0.08)),
    #ffffff;
}

.feature-list {
  display: grid;
  gap: 0.72rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--ink);
}

.feature-list li::before {
  content: "";
  grid-column: 1;
  grid-row: 1;
}

.feature-list li::after {
  grid-column: 1;
  grid-row: 1;
}

.feature-list.muted li::before {
  background: #dbe5e6;
}

.feature-list.muted li::after {
  width: 8px;
  height: 8px;
  margin: 6px 0 0 6px;
  border: 0;
  border-radius: 50%;
  background: #7b8c99;
  transform: none;
}

.pricing-section {
  background:
    linear-gradient(135deg, var(--green), var(--blue));
  color: #ffffff;
}

.pricing-section h2,
.pricing-section .eyebrow {
  color: #ffffff;
}

.pricing-section .eyebrow {
  opacity: 0.88;
}

.pricing-heading {
  max-width: 760px;
}

.price-copy {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.pricing-cards {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  color: var(--ink);
}

.pricing-card.standard-card {
  border-color: rgba(184, 214, 93, 0.75);
  box-shadow: 0 24px 54px rgba(16, 35, 55, 0.18);
}

.pricing-card.bespoke-card {
  background:
    linear-gradient(180deg, rgba(238, 247, 247, 0.9), #ffffff 42%),
    #ffffff;
}

.pricing-card-head {
  display: grid;
  gap: 0.65rem;
}

.pricing-card-head h3 {
  font-size: 1.55rem;
}

.pricing-card-head p {
  margin: 0;
  color: var(--muted);
}

.tier-label {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  background: rgba(57, 168, 103, 0.12);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
}

.bespoke-card .tier-label {
  background: rgba(33, 110, 184, 0.12);
  color: var(--blue-dark);
}

.allowance-field {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.25rem;
}

.price-display {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 8px;
  background: #f8fbfb;
}

.bespoke-price {
  margin-top: 1.25rem;
}

.tier-price {
  margin: 0;
  color: var(--ink);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.12;
}

.usage-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.pricing-card .feature-list {
  margin-bottom: 1.2rem;
}

.pricing-card .button {
  margin-top: 1.2rem;
  width: 100%;
}

.pricing-card .feature-list + .button {
  margin-top: auto;
}

.pricing-reassurance {
  max-width: 780px;
  margin: 1.4rem auto 0;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.demo-section {
  background: #ffffff;
}

.demo-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.demo-note {
  margin-top: 1.4rem;
  padding: 1rem;
  color: var(--muted);
}

.demo-note strong {
  color: var(--ink);
}

.demo-form {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

label,
legend {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  width: 100%;
  border: 1px solid #cddde0;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

input:not([type="checkbox"]):not([type="radio"]),
select {
  min-height: 46px;
  padding: 0.68rem 0.78rem;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue-dark) 50%),
    linear-gradient(135deg, var(--blue-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 13px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
  padding-right: 2.35rem;
}

textarea {
  resize: vertical;
  min-height: 118px;
  padding: 0.78rem;
}

input:not([type="checkbox"]):not([type="radio"]):focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(33, 110, 184, 0.18);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkbox-grid {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.55rem;
}

.checkbox-grid label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.55rem;
  align-items: start;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfb;
  color: var(--ink);
  font-weight: 700;
}

.checkbox-grid input {
  width: 18px;
  min-height: 18px;
  margin: 0.15rem 0 0;
  accent-color: var(--green);
}

.form-submit {
  width: 100%;
  border: 0;
}

.faq-section {
  background: #f8fbfb;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

details p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.site-footer {
  background: var(--ink);
  color: #ffffff;
  padding: 2rem 0;
}

.footer-inner {
  display: grid;
  gap: 1.3rem;
}

.footer-brand {
  width: fit-content;
  padding: 0.45rem 0.55rem;
  border-radius: 6px;
  background: #ffffff;
}

.site-footer p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer .footer-inner > p {
  margin: 0;
}

@media (min-width: 560px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .value-strip ul,
  .card-grid,
  .steps,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-form {
    padding: 1.35rem;
  }

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

@media (min-width: 760px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .assistant-layout {
    grid-template-columns: 1.35fr 0.85fr;
  }

  .value-strip ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .results-grid,
  .demo-grid,
  .faq-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 980px) {
  .section-pad {
    padding: 92px 0;
  }

  .header-inner {
    align-items: center;
    flex-direction: row;
  }

  .site-nav {
    flex-wrap: nowrap;
    gap: 1.1rem;
  }

  .hero-grid {
    grid-template-columns: 0.98fr 1.02fr;
    gap: 3rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .section-pad {
    padding: 56px 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .button {
    width: 100%;
  }

  .assistant-topline {
    flex-direction: column;
  }

  .status-pill {
    align-self: flex-start;
  }
}

.chatbot-visual {
  background: linear-gradient(145deg, #e8f7f4, #eff8ff);
  border-radius: 28px;
  min-height: 520px;
  padding: 2rem;
}

.chatbot-preview-card {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  min-height: 480px;
  position: relative;
}

.chatbot-popover {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(18, 58, 82, 0.16);
  left: 0;
  max-width: 340px;
  padding: 1rem;
  position: absolute;
  top: 0;
}

.chatbot-window {
  background: #f3f5f8;
  border-radius: 10px;
  box-shadow: 0 22px 60px rgba(18, 58, 82, 0.18);
  max-width: 430px;
  overflow: hidden;
  width: 100%;
}

.chatbot-header {
  align-items: center;
  background: #214a67;
  color: #fff;
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
}

.chatbot-avatar {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  color: #80c45b;
  display: flex;
  font-size: 1.8rem;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.chatbot-header h2,
.chatbot-header p {
  color: #fff;
  margin: 0;
}

.chatbot-body {
  min-height: 300px;
  padding: 12rem 1rem 1rem;
}

.chat-bubble {
  background: #fff;
  border-radius: 8px;
  color: #17304f;
  display: table;
  margin-bottom: 0.85rem;
  max-width: 88%;
  padding: 0.85rem 1rem;
}

.chatbot-input-row {
  background: #fff;
  border-top: 1px solid rgba(23, 76, 105, 0.14);
  display: flex;
  gap: 0.65rem;
  padding: 0.55rem;
}

.chatbot-input-row input {
  border: 1px solid rgba(23, 76, 105, 0.18);
  border-radius: 8px;
  flex: 1;
  padding: 0.75rem;
}

.chatbot-input-row button {
  background: #80c45b;
  border: 0;
  border-radius: 8px;
  color: #fff;
  width: 54px;
}

.chatbot-powered {
  background: #fff;
  color: #a3a8af;
  font-size: 0.78rem;
  margin: 0;
  padding-bottom: 0.65rem;
  text-align: center;
}

.chatbot-launch-button {
  align-items: center;
  background: #80c45b;
  border-radius: 999px;
  bottom: -0.25rem;
  color: #fff;
  display: flex;
  font-size: 1.8rem;
  height: 72px;
  justify-content: center;
  position: absolute;
  right: 1.25rem;
  width: 72px;
}

@media (max-width: 560px) {
  .chatbot-visual {
    padding: 0.85rem;
  }

  .chatbot-body {
    min-height: 250px;
    padding-top: 10.5rem;
  }
}

.faq-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  text-align: center;
}

.faq-list-wide {
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
  width: 100%;
}
/**
 * Form Builder overrides for the home page demo form.
 * Inlined in home.php after Form Builder CSS.
 */

body.page-home {
  font-weight: 400;
}

body.page-home #content h1,
body.page-home #content #hero-title {
  font-weight: 700 !important;
}

body.page-home #content h2,
body.page-home #content h3 {
  font-weight: 700 !important;
}

body.page-home #content p:not(.tier-price),
body.page-home #content .hero-copy,
body.page-home #content .section-heading p:not(.eyebrow),
body.page-home #content .demo-copy p,
body.page-home #content .results-grid p,
body.page-home #content details p {
  font-weight: 400 !important;
}

body.page-home #content .tier-price {
  font-weight: 800 !important;
}

#demo .demo-form .FormBuilder,
#demo .demo-form .FormBuilder.InputfieldForm,
#demo .demo-form .Inputfields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

#demo .demo-form .Inputfield {
  margin: 0 !important;
  padding: 0;
  border: 0;
  background: transparent;
  float: none !important;
  width: 100% !important;
  clear: both !important;
}

#demo .demo-form .InputfieldContent {
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
}

#demo .demo-form .InputfieldHeader {
  display: block !important;
  width: 100% !important;
  margin: 0 0 0.35rem !important;
  padding: 0 !important;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  float: none !important;
}

#demo .demo-form .FormBuilder.InputfieldForm input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="range"]),
#demo .demo-form .FormBuilder.InputfieldForm textarea {
  width: 100% !important;
  height: auto !important;
  min-height: 46px;
  margin: 0 !important;
  padding: 0.68rem 0.78rem !important;
  border: 1px solid #cddde0 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: var(--ink) !important;
  font-size: inherit;
  line-height: inherit;
  display: block !important;
}

#demo .demo-form .FormBuilder.InputfieldForm textarea {
  min-height: 118px;
  padding: 0.78rem !important;
  resize: vertical;
}

#demo .demo-form .FormBuilder.InputfieldForm input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="range"]):focus,
#demo .demo-form .FormBuilder.InputfieldForm textarea:focus {
  border-color: var(--blue) !important;
  outline: 3px solid rgba(33, 110, 184, 0.18) !important;
  background: #ffffff !important;
}

#demo .demo-form .InputfieldCheckboxes > .InputfieldHeader {
  margin-bottom: 0.25rem !important;
}

#demo .demo-form .InputfieldCheckboxes > .InputfieldContent,
#demo .demo-form .InputfieldRadios > .InputfieldContent {
  padding-top: 0 !important;
  margin-top: 0 !important;
  min-height: 0 !important;
}

#demo .demo-form .InputfieldCheckboxes > .InputfieldContent::before,
#demo .demo-form .InputfieldCheckboxes > .InputfieldContent::after {
  display: none !important;
  content: none !important;
}

#demo .demo-form .InputfieldCheckboxes ul,
#demo .demo-form .InputfieldRadios ul,
#demo .demo-form ul.InputfieldCheckboxesStacked,
#demo .demo-form ul.InputfieldRadiosStacked,
#demo .demo-form ul.InputfieldCheckboxesColumns,
#demo .demo-form ul.InputfieldRadiosColumns {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: stretch;
  gap: 0.35rem 0.6rem;
  min-height: 0 !important;
}

#demo .demo-form .InputfieldCheckboxes ul li,
#demo .demo-form .InputfieldRadios ul li,
#demo .demo-form ul.InputfieldCheckboxesStacked li,
#demo .demo-form ul.InputfieldRadiosStacked li,
#demo .demo-form ul.InputfieldCheckboxesColumns li,
#demo .demo-form ul.InputfieldRadiosColumns li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: contents;
}

#demo .demo-form .InputfieldCheckboxes ul li::marker,
#demo .demo-form ul.InputfieldCheckboxesStacked li::marker {
  content: none !important;
}

#demo .demo-form .InputfieldCheckboxes ul li label,
#demo .demo-form .InputfieldRadios ul li label,
#demo .demo-form ul.InputfieldCheckboxesStacked li label,
#demo .demo-form ul.InputfieldRadiosStacked li label,
#demo .demo-form ul.InputfieldCheckboxesColumns li label,
#demo .demo-form ul.InputfieldRadiosColumns li label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 !important;
  padding: 0.55rem 0.65rem !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: #f8fbfb !important;
  color: var(--ink) !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  cursor: pointer;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  align-self: stretch;
  box-sizing: border-box;
}

#demo .demo-form .InputfieldCheckboxes ul li label input[type="checkbox"],
#demo .demo-form .InputfieldRadios ul li label input[type="radio"],
#demo .demo-form ul.InputfieldCheckboxesStacked li label input[type="checkbox"],
#demo .demo-form ul.InputfieldRadiosStacked li label input[type="radio"] {
  width: 18px !important;
  min-height: 18px !important;
  height: 18px !important;
  margin: 0.15rem 0 0 !important;
  padding: 0 !important;
  accent-color: var(--green);
  display: block !important;
  flex: 0 0 18px;
}

#demo .demo-form .InputfieldCheckboxes .pw-no-select,
#demo .demo-form .InputfieldRadios .pw-no-select {
  position: static !important;
  top: auto !important;
}

#demo .demo-form .InputfieldSubmit,
#demo .demo-form .InputfieldSubmit .InputfieldContent {
  margin: 0 !important;
  padding: 0 !important;
}

#demo .demo-form .FormBuilder.InputfieldForm .InputfieldSubmit button,
#demo .demo-form .InputfieldSubmit button[type="submit"],
#demo .demo-form button[name="home_signup_submit"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-height: 46px !important;
  margin: 0 !important;
  padding: 0.78rem 1.1rem !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--green), var(--blue)) !important;
  color: #ffffff !important;
  font-size: 0 !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  cursor: pointer !important;
  box-shadow: 0 12px 24px rgba(33, 110, 184, 0.2) !important;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

#demo .demo-form .FormBuilder.InputfieldForm .InputfieldSubmit button::after,
#demo .demo-form .InputfieldSubmit button[type="submit"]::after,
#demo .demo-form button[name="home_signup_submit"]::after {
  content: "Request my demo";
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

#demo .demo-form .FormBuilder.InputfieldForm .InputfieldSubmit button:hover,
#demo .demo-form .InputfieldSubmit button[type="submit"]:hover,
#demo .demo-form button[name="home_signup_submit"]:hover {
  transform: translateY(-1px);
  opacity: 1 !important;
  background: linear-gradient(135deg, var(--green), var(--blue)) !important;
  box-shadow: 0 16px 32px rgba(33, 110, 184, 0.26) !important;
}

#demo .demo-form .notes,
#demo .demo-form .description {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 1 !important;
}

#demo .demo-form .ui-state-error,
#demo .demo-form .InputfieldStateError,
#demo .demo-form .input-error {
  margin-top: 0.35rem;
  padding: 0.55rem 0.75rem;
  border-left: 3px solid #c0392b;
  border-radius: 4px;
  background: rgba(192, 57, 43, 0.08) !important;
  color: #8b1f14 !important;
  font-size: 0.85rem;
}

#demo .demo-form .FormBuilderErrors {
  margin: 0 0 0.35rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(192, 57, 43, 0.35);
  border-radius: 8px;
  background: rgba(192, 57, 43, 0.08) !important;
  color: #8b1f14 !important;
  font-size: 0.9rem;
  line-height: 1.5;
}

#demo .demo-form .FormBuilderErrors .alert,
#demo .demo-form .FormBuilderErrors .alert-error,
#demo .demo-form .FormBuilderErrors p {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: inherit !important;
}

#demo .demo-form .form-error {
  margin: 0;
  color: #8b1f14;
}

#demo .demo-form #FormBuilderSubmitted {
  display: none;
}

#demo .demo-form .FormBuilderMessage.demo-thanks {
  margin: 0;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(57, 168, 103, 0.45);
  border-radius: 8px;
  background: rgba(57, 168, 103, 0.1);
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

#demo .demo-form .FormBuilderMessage.demo-thanks .alert,
#demo .demo-form .FormBuilderMessage.demo-thanks .alert-success,
#demo .demo-form .FormBuilderMessage.demo-thanks p {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: inherit !important;
  font: inherit !important;
  text-align: inherit;
}

#demo .demo-form.demo-form--thanks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
}

#demo .demo-form.demo-form--thanks > .FormBuilder {
  display: flex;
  flex: 1;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

#demo .demo-form.demo-form--thanks .FormBuilderMessage.demo-thanks {
  width: 100%;
}

@media (min-width: 760px) {
  #demo .demo-form.demo-form--thanks {
    align-self: stretch;
    min-height: 100%;
  }
}

@media (min-width: 560px) {
  #demo .demo-form .InputfieldCheckboxes ul li label,
  #demo .demo-form .InputfieldRadios ul li label,
  #demo .demo-form ul.InputfieldCheckboxesStacked li label,
  #demo .demo-form ul.InputfieldRadiosStacked li label,
  #demo .demo-form ul.InputfieldCheckboxesColumns li label,
  #demo .demo-form ul.InputfieldRadiosColumns li label {
    flex: 0 0 calc(50% - 0.3rem);
    width: calc(50% - 0.3rem);
    max-width: calc(50% - 0.3rem);
  }

  #demo .demo-form .InputfieldCheckboxes ul li:last-child:nth-child(odd) label,
  #demo .demo-form ul.InputfieldCheckboxesStacked li:last-child:nth-child(odd) label {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}
