.demo-cta-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 480px;
  margin-top: 8px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-cta-group .info-btn {
  min-width: 180px;
  height: 52px;
  line-height: 52px;
  font-size: 13px;
  border-radius: 12px;
}

.demo-cta-input {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  font-size: 15px;
  line-height: 1.4;
  color: #333;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-right: none;
  border-radius: 50px 0 0 50px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-cta-input::placeholder {
  color: #9ca3af;
}

.demo-cta-input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(8, 145, 222, 0.15);
}

.demo-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  background: var(--brand-blue);
  border: 1px solid var(--brand-blue);
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.demo-cta-btn:hover {
  background: #0678b8;
  border-color: #0678b8;
  color: #fff;
}

.demo-cta-secondary {
  display: inline-block;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.demo-cta-secondary:hover {
  color: #fff;
}

/* Homepage demo CTA band */
.demo-banner {
  background: var(--surface-light-bg);
  padding: 48px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.demo-banner .container {
  max-width: 1140px;
}

.demo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  flex-wrap: wrap;
}

.demo-banner-copy {
  flex: 1 1 280px;
  min-width: 0;
}

.demo-banner-kicker {
  margin: 0 0 8px;
  color: var(--text-color-muted, #6c757d);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.demo-banner-copy h2 {
  margin: 0;
  color: var(--important-color, #1e336f);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.demo-banner-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.demo-banner-btn {
  min-width: 180px;
  height: 52px;
  line-height: 52px;
  font-size: 13px;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .demo-cta-form {
    flex-direction: column;
    max-width: 100%;
    gap: 10px;
  }

  .demo-cta-input {
    border-right: 1px solid #e0e0e0;
    border-radius: 50px;
  }

  .demo-cta-btn {
    justify-content: center;
    border-radius: 50px;
  }

  .demo-banner {
    padding: 36px 0;
  }

  .demo-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .demo-banner-action {
    width: 100%;
  }

  .demo-banner-btn {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
  }
}
