:root {
  --bg: #f8f9fb;
  --card: #ffffff;
  --text: #1b2a4a;
  --muted: #5a6b7e;
  --muted-2: #8896a6;
  --muted-3: #a0adbb;
  --border: #e2e8ef;
  --border-2: #d0d5dd;
  --primary: #0d7c8f;
  --primary-dark: #0a6270;
  --primary-soft: #e8f5f7;
  --navy: #1b2a4a;
  --teal-accent: #0dd4c0;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  --radius: 14px;
  --max: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
}

button,
input,
select {
  font: inherit;
}

button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.topbar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-message.success {
  color: #0f8a5f;
}

.form-message.error {
  color: #c0392b;
}

.form-message.loading {
  color: #0d7c8f;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  font-family: "Fraunces", serif;
}

.provider-mark {
  background: var(--navy);
}

.brand-name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.3px;
}

.provider-badge {
  margin-left: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
}

.topbar-meta {
  color: var(--muted-2);
  font-size: 13px;
}

.provider-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.provider-left {
  flex: 1 1 480px;
  min-width: 320px;
}

.provider-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--navy);
  color: #7eb8c4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.provider-left h1 {
  margin: 0 0 16px;
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.8px;
  font-weight: 800;
}

.provider-left h1 span {
  color: var(--primary);
}

.provider-copy {
  max-width: 480px;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.pain-solution-list {
  display: grid;
  gap: 20px;
}

.pain-card {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pain-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f0f8f9;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--primary);
}

.pain-line {
  margin-bottom: 3px;
  font-size: 13px;
  color: #98a2b3;
  text-decoration: line-through;
}

.solution-line {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--text);
}

.provider-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--navy);
  border-radius: 10px;
  flex-wrap: wrap;
}

.provider-stat {
  flex: 1 1 80px;
  text-align: center;
}

.provider-stat-value {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--teal-accent);
}

.provider-stat-label {
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted-2);
  font-weight: 500;
}

.provider-form-card {
  flex: 0 1 380px;
  min-width: 300px;
  position: sticky;
  top: 24px;
}

.form-card-inner {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.form-card-inner h2 {
  margin: 0 0 4px;
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 700;
}

.form-intro {
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted-2);
}

.provider-form .field {
  margin-bottom: 14px;
}

.provider-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #3d4a5c;
}

.provider-form input,
.provider-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-2);
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.provider-form input:focus,
.provider-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13, 124, 143, 0.08);
}

.provider-form select {
  cursor: pointer;
}

.provider-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(13, 124, 143, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.provider-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13, 124, 143, 0.3);
}

.form-message {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.helper-text {
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted-3);
}

.helper-center {
  text-align: center;
}

.footer {
  padding: 20px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer p {
  margin: 0;
  font-size: 12px;
  color: var(--muted-3);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 900px) {
  .provider-main {
    gap: 28px;
  }

  .provider-form-card {
    position: static;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .topbar,
  .provider-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-card-inner {
    padding: 24px 20px;
  }
}