:root {
  --primary: #236CB0;
  --primary-dark: #174a7a;
  --accent: #081F31;
  --bg: #ffffff;
  --bg-soft: #f3f7fb;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --card-bg: #f9fafb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

.page {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px 32px;
}

/* TOP BAR */

.topbar {
  background: var(--accent);
  color: #e5edf7;
  font-size: 0.8rem;
  padding: 6px 16px;
}

.topbar-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.topbar-contact a {
  color: #ffffff;
  font-weight: 600;
}

/* HEADER / NAV */

header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.header-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 42px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-link {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--muted);
}

.nav-link:hover {
  background: var(--bg-soft);
  color: var(--accent);
}

.nav-link.active {
  background: var(--primary);
  color: #ffffff;
}

.nav-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.12s ease, transform 0.05s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(35,108,176,0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(35,108,176,0.45);
}

.btn-outline {
  background: #ffffff;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: #f3f7fb;
}

/* HERO */

.hero-wrap {
  background: linear-gradient(135deg, var(--bg-soft), #ffffff);
  padding: 24px 0 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: flex-start;
}

.hero-title {
  font-size: 2.1rem;
  line-height: 1.15;
  color: var(--accent);
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.badge {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(35,108,176,0.08);
  color: var(--primary-dark);
  border: 1px solid #dbeafe;
}

.badge-dark {
  background: var(--accent);
  color: #e5edf7;
  border-color: transparent;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-right {
  background: #ffffff;
  border-radius: 16px;
  padding: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.hero-right-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--accent);
}

.hero-right-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.hcp-wrapper {
  width: 100%;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e1e7f0;
}

#hcp-lead-iframe {
  width: 100%;
  min-height: 400px;
  border: none;
}

/* SECTIONS */

.section {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.section:last-of-type {
  border-bottom: none;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
}

.section-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 700px;
}

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

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

.card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.card-title {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--accent);
}

.list {
  list-style: none;
  margin-top: 4px;
}

.list li {
  padding-left: 14px;
  position: relative;
  font-size: 0.85rem;
  margin-bottom: 3px;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 2px;
  color: var(--primary);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.pill {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  background: #ffffff;
}

/* LAYOUT HELPERS */

.two-col {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,1fr);
  gap: 16px;
}

/* FAQ */

.faq-item { margin-bottom: 10px; }
.faq-q {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
}
.faq-a {
  font-size: 0.85rem;
  color: var(--muted);
}

/* TABLES */

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 8px;
}

.table th,
.table td {
  border: 1px solid var(--border);
  padding: 6px 8px;
}

.table th {
  background: var(--bg-soft);
  text-align: left;
}

/* FOOTER */

footer {
  padding: 18px 0 26px;
  font-size: 0.8rem;
  color: var(--muted);
  background: #f9fafb;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

.footer-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-col-title {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--accent);
}

.footer-list {
  list-style: none;
  font-size: 0.8rem;
}

.footer-list li { margin-bottom: 2px; }

.disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 750px;
  margin-top: 6px;
}

/* FLOATING TEXT-US BUTTON */

.text-us-button {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--primary);
  color: #ffffff;
  text-align: center;
  padding: 16px 20px;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.28);
  text-decoration: none;
  z-index: 999999;
}

.text-us-button:hover {
  background: var(--primary-dark);
  text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .two-col,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  nav {
    width: 100%;
    justify-content: flex-start;
  }
  .nav-cta {
    width: 100%;
    justify-content: flex-start;
  }
}