/* ============================================
   ULTIMATE HERO CONTAINER OVERRIDE - 2025-01-16
   ============================================ */

/* NUCLEAR LEVEL SPECIFICITY - THIS MUST WORK */
html body section.hero div.hero-container,
.hero .hero-container,
section.hero .hero-container,
body .hero .hero-container {
  align-items: center;
  box-sizing: border-box !important;
  color: rgb(31, 42, 55) !important;
  column-gap: 64px !important;
  display: grid !important;
  font-family: ui-sans-serif, -apple-system, "system-ui", "Segoe UI", Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji" !important;
  grid-template-columns: 1fr 1fr;
  line-height: 25.6px !important;
  margin: 0 auto;
  margin-top: 6rem;
  max-width: 1200px !important;
  padding: 0 20px;
  /* row-gap: 64px !important; */
  width: 100% !important;
  height: auto !important;
  position: relative !important;
}

/* FORCE CONSISTENT TEXT SIZING ACROSS ALL PAGES */
.hero h1 {
  font-size: 44px !important;
  line-height: 1.15 !important;
  margin: 0 0 14px !important;
  font-weight: 600 !important;
  color: var(--vbc-blue) !important;
}

.hero p {
  font-size: 18px !important;
  margin: 0 0 24px !important;
  color: var(--vbc-ink) !important;
  line-height: 1.6 !important;
}

.badge {
  font-size: 14px !important;
  font-weight: 500 !important;
  background: #f0f9f5 !important;
  color: var(--vbc-green) !important;
  padding: 8px 16px !important;
  border-radius: 50px !important;
  margin-bottom: 16px !important;
  display: inline-block !important;
}

.sub {
  color: #64748b !important;
  font-size: 14px !important;
  margin-top: 16px !important;
}

/* FORCE CONSISTENT BUTTON AND CARD SIZING */
.btn {
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 14px 24px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  display: inline-block !important;
  background: var(--vbc-green) !important;
  color: white !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

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

/* .grid-2 > div {
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
} */
.grid-list {
  display: flex;
  flex-direction: column;

  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-family: system-ui, sans-serif;
}

/* Headers */
.grid-list-header-before,
.grid-list-header-after {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-align: left;
}

.grid-list-header-before {
  background: var(--vbc-blue); /* Tailwind red-700 */
  /* border-top-left-radius: 10px; */
}

.grid-list-header-after {
  background: #15803d; /* Tailwind green-700 */
  /* border-top-right-radius: 10px; */
}

/* Rows */
.before,
.after {
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  background: white;
  border-bottom: 1px solid #e5e7eb; /* gray-200 */
  display: flex;
  align-items: center;
}

/* Zebra striping for readability */
.before:nth-child(odd),
.after:nth-child(odd) {
  background: #f9fafb; /* gray-50 */
}

/* Subtle hover interaction */
.before:hover,
.after:hover {
  background: #f3f4f6; /* gray-100 */
  transition: background 0.2s ease;
}

.btn.outline {
  background: transparent !important;
  color: var(--vbc-blue) !important;
  border: 2px solid var(--vbc-blue) !important;
}

.section h2 {
  font-size: 36px !important;
  font-weight: 600 !important;
  color: var(--vbc-blue) !important;
  margin-bottom: 16px !important;
  text-align: center !important;
}

.kicker {
  font-size: 18px !important;
  color: #64748b !important;
  text-align: center !important;
  margin-bottom: min(4vh, 2rem) !important;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.card h3 {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--vbc-blue) !important;
  margin-bottom: 8px !important;
}

.card p {
  font-size: 14px !important;
  line-height: 1.4 !important;
  color: var(--vbc-ink) !important;
  margin-bottom: 0 !important;
}

/* FORCE CONSISTENT CONTAINER AND SPACING ACROSS ALL PAGES */
.container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

.hero {
  padding: 40px 24px !important;
  background: var(--vbc-wash) !important;
}

.section {
  padding: 40px 24px !important;
}

.section:nth-child(even) {
  background: var(--vbc-wash) !important;
}

.section:nth-child(odd) {
  background: var(--white) !important;
}

.section.cta {
  background: var(--vbc-wash) !important;
}

/* FORCE CONSISTENT GRID AND CARD SPACING */
.grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 24px !important;
  margin: 32px 0 !important;
  max-width: 1200px !important;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}

.grid-three {
  grid-template-columns: repeat(3, 1fr) !important;
}

.card {
  background: var(--white) !important;
  border: 1px solid var(--vbc-line) !important;
  border-radius: 8px !important;
  padding: 16px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease !important;
  min-height: 140px !important;
  display: flex !important;
  flex-direction: column !important;
}

.grid-three > .card {
  box-shadow: none;
  border: none !important;
  background-color: rgba(0, 0, 0, 0.03) !important;
}

/* FORCE CONSISTENT TRUSTBAR SPACING */
.trustbar {
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  font-size: 14px !important;
  color: #64748b !important;
  text-align: center !important;
  flex-wrap: wrap !important;
  max-width: 1200px !important;
  width: 100%;
  margin: 0 auto;
  margin-top: 48px !important;
}

/* FORCE CONSISTENT FORM SPACING */
.form {
  display: grid !important;
  grid-template-columns: 1fr 1fr auto !important;
  gap: 2px !important;
  max-width: 600px !important;
  margin: 32px auto !important;
  align-items: center !important;
}

.input {
  padding: 14px 16px !important;
  border: 2px solid var(--vbc-line) !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  background: var(--white) !important;
  color: var(--vbc-ink) !important;
}

/* Reset and Base Styles - Updated: 2025-01-16 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* VBC.ai refined color palette */
  --vbc-blue: #005eb8;
  --vbc-green: #008060;
  --vbc-ink: #1f2a37;
  --vbc-wash: #f8fdfb;
  --vbc-line: #e6eef5;
  --white: #ffffff;
  --black: #000000;
  /* Legacy colors for compatibility */
  --primary-blue: #005eb8;
  --turquoise: #008060;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f4;
  --gray-200: #e8eaed;
  --gray-300: #dadce0;
  --gray-400: #9aa0a6;
  --gray-500: #5f6368;
  --gray-600: #3c4043;
  --gray-700: #202124;
  --gray-800: #171717;
  --gray-900: #000000;
  --font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--vbc-ink);
  background-color: var(--white);
  scroll-behavior: smooth;
  padding-bottom: 80px; /* Space for fixed footer */
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--vbc-line);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav {
  padding: 14px 24px;
  box-sizing: border-box !important;
  width: 100%;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box !important;
}

.nav-menu {
  margin-left: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 50px;
  max-height: 5vh;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo-image:hover {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--turquoise);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--turquoise);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.cta-button {
  background: var(--turquoise);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
}

.header-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Login Page Styles */
.login-section {
  padding: 6rem 0 4rem;
  background: var(--gray-50);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.login-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.login-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.login-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
}

.login-form-container {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: none;
  border: 2px solid var(--gray-200);
  position: relative;
}

/* Login page specific styling */
.login-form-container .form-label {
  color: var(--primary-blue) !important;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  display: block;
}

.login-form-container .form-input {
  border: 3px solid var(--primary-blue) !important;
  background-color: var(--white) !important;
  box-shadow: none !important;
  color: var(--black) !important;
}

.login-form-container .form-input:focus {
  border-color: var(--turquoise) !important;
  box-shadow: none !important;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.875rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 3px solid var(--primary-blue);
  border-radius: 8px;
  font-size: 1rem;
  background-color: var(--white);
  color: var(--black);
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: var(--font-family);
  box-shadow: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: none;
}

.form-input::placeholder {
  color: var(--gray-500);
}

.form-input.error {
  border-color: var(--red);
}

.error-message {
  color: var(--red);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.forgot-password {
  color: var(--turquoise);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
  display: inline-block;
}

.forgot-password:hover {
  text-decoration: underline;
}

.divider {
  margin: 2rem 0;
  position: relative;
  text-align: center;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-300);
}

.divider span {
  background: var(--white);
  padding: 0 1rem;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.signup-link {
  color: var(--gray-600);
  font-size: 0.875rem;
  text-align: center;
}

.signup-link-text {
  color: var(--turquoise);
  text-decoration: none;
  font-weight: 600;
}

.signup-link-text:hover {
  text-decoration: underline;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--gray-700);
  margin: 3px 0;
  transition: 0.3s;
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-50) 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  padding: 36px 24px;
  background: var(--vbc-wash);
}

.hero h1 {
  color: var(--vbc-blue);
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 600;
}

.hero p {
  font-size: 18px;
  margin: 0 0 24px;
  color: var(--vbc-ink);
  line-height: 1.6;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--vbc-line);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 10px;
}

.hc-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0;
}

.chip {
  display: inline-block;
  background: #eef7f2;
  color: var(--vbc-green);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 10px;
  margin-right: 8px;
}

.chip.note {
  background: #f0f5fb;
  color: var(--vbc-blue);
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.badge {
  display: inline-block;
  background: #e8f5ff;
  color: var(--vbc-blue);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}

.sub {
  font-size: 13px;
  color: #637a9a;
  margin-top: 8px;
}

.hero-title {
  font-size: 44px;
  font-weight: 700;
  color: var(--vbc-blue);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.highlight {
  color: var(--turquoise);
  position: relative;
}

.hero-description {
  font-size: 18px;
  color: var(--vbc-ink);
  margin: 0 0 24px;
  line-height: 1.6;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-footer {
  margin-top: 8px;
}

.hero-footer p {
  font-size: 13px;
  color: #637a9a;
  margin: 0;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  background: var(--vbc-green);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.btn.outline {
  background: #fff;
  color: var(--vbc-green);
  border: 2px solid var(--vbc-green);
}

.primary-button {
  background: var(--white);
  color: var(--turquoise);
  padding: 1.25rem 2.5rem;
  border: 2px solid var(--turquoise);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
}

.primary-button:hover {
  background: var(--turquoise);
  color: var(--white);
  transform: translateY(-2px);
}

.secondary-button {
  background: transparent;
  color: var(--gray-700);
  padding: 1rem 2rem;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
}

.secondary-button::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: currentColor;
}

.secondary-button:hover {
  border-color: var(--turquoise);
  color: var(--turquoise);
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Hero Visual */
.hero-visual {
  animation: fadeInRight 0.8s ease-out 0.3s both;
  padding-top: 4rem !important;
}

.dashboard-mockup {
  background: var(--white);
  border-radius: 24px;
  box-shadow: none;
  padding: clamp(1rem, 5vw, 2rem);

  transform: none !important;
  transition: transform 0.3s ease;
}

.dashboard-mockup:hover,
.dashboard-mockup:focus,
.dashboard-mockup:active {
  transform: none !important;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.dashboard-title {
  font-weight: 600;
  color: var(--gray-700);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--turquoise);
  font-size: 0.875rem;
  font-weight: 600;
  width: 150px;
  flex-shrink: 1;
  flex-grow: 1;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--turquoise);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.care-alert {
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.care-alert i {
  color: var(--red);
}

.alert-detail {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-left: auto;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.metric-card {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-50));
  border-radius: 12px;
}

.metric-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--turquoise);
  margin-bottom: 0.5rem;
}

.metric-card p {
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.metric-status {
  background: var(--turquoise);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.metric-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.metric-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.metric-title {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.metric-value {
  font-weight: 700;
  color: var(--turquoise);
}

/* Updated Dashboard Styles */
.dashboard-mockup {
  max-height: 600px;
  overflow-y: auto;
}

.patient-info {
  flex-basis: 250px;
  flex-shrink: 1;
  flex-grow: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.patient-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.patient-name {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 1rem;
}

.patient-condition {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.live-indicator {
  font-size: 0.75rem;
}

.live-dot {
  width: 6px;
  height: 6px;
}

/* Narrative Section */
.narrative-section {
  margin-bottom: 1.5rem;
  background: var(--gray-50);
  border-radius: 12px;
  padding: 1rem;
}

.narrative-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue);
}

.timestamp {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: normal;
}

.narrative-content {
  background: var(--white);
  padding: 0.875rem;
  border-radius: 8px;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  border-left: 3px solid var(--turquoise);
}

.ai-insights {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.insight-tag {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.insight-tag.symptom {
  background: var(--gray-100);
  color: var(--red);
  border: 1px solid var(--gray-300);
}

.insight-tag.value {
  background: var(--gray-100);
  color: var(--turquoise);
  border: 1px solid var(--gray-300);
}

.insight-tag.pattern {
  background: var(--gray-100);
  color: var(--primary-blue);
  border: 1px solid var(--gray-300);
}

/* Care Preferences */
.care-preferences {
  margin-bottom: 1.5rem;
}

.preference-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue);
}

.preference-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.preference-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.preference-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.preference-text {
  flex: 1;
}

.preference-title {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.875rem;
}

.preference-desc {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.preference-score {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  background: var(--turquoise);
  color: var(--white);
}

/* AI Recommendations */
.ai-recommendations {
  margin-bottom: 1.5rem;
}

.rec-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue);
}

.recommendations {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rec-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 8px;
  border: 1px solid var(--gray-300);
}

.rec-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.rec-text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.4;
}

.rec-confidence {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--turquoise);
  margin-left: auto;
  flex-shrink: 0;
}

/* Dashboard Bottom */
.dashboard-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
}

.outcome-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.outcome-item {
  text-align: center;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 8px;
}

.outcome-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--turquoise);
  margin-bottom: 0.25rem;
}

.outcome-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Hero Partners */
.hero-partners {
  margin-top: 4rem;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--gray-200);
}

.partners-text {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.partners-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-logo {
  color: var(--gray-400);
  font-weight: 600;
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--gray-500);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-badge {
  background: var(--turquoise);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Demo Introduction */
.demo-intro {
  margin-bottom: 4rem;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-50));
  border-radius: 16px;
  padding: 3rem;
}

.demo-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.demo-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.demo-text p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.patient-profile {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: none;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.profile-info h4 {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.profile-info p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin: 0;
}

.profile-goals {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.goal-item {
  background: var(--gray-50);
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* Chat Demo */
.chat-demo {
  background: var(--white);
  border-radius: 20px;
  box-shadow: none;
  overflow: hidden;
}

.chat-header {
  background: var(--primary-blue);
  color: var(--white);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.chat-messages {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  display: flex;
  width: 100%;
}

.chat-message.patient {
  justify-content: flex-end;
}

.chat-message.ai {
  justify-content: flex-start;
}

.chat-message.patient .message-content {
  background: var(--primary-blue);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 18px 18px 4px 18px;
  max-width: 75%;
  font-style: normal;
  box-shadow: none;
}

.chat-message.ai .message-content {
  background: var(--gray-100);
  color: var(--gray-800);
  padding: 1rem 1.25rem;
  border-radius: 18px 18px 18px 4px;
  max-width: 75%;
  box-shadow: none;
}

.data-extraction {
  background: var(--gray-50);
  padding: 1rem;
  border-top: 1px solid var(--gray-200);
}

.extraction-header {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.extraction-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.data-point {
  font-size: 0.75rem;
  color: var(--turquoise);
  font-weight: 600;
}

/* Feature Demo Items */
.feature-demo {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.demo-item {
  background: linear-gradient(135deg, var(--gray-50), var(--gray-50));
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-blue);
  border: 1px solid var(--turquoise);
}

/* Doctor Features */
.doctor-features {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue));
  border-radius: 16px;
  color: var(--white);
}

.doctor-features .section-header h2,
.doctor-features .section-header p {
  color: var(--white);
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.doctor-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Remove doctor icons - clean typography-focused design */

.doctor-feature h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.doctor-feature p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Problem Section */
.problem-section {
  padding: 6rem 0;
  background: var(--white);
}

.problem-stats {
  margin-bottom: 3rem;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-large {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--gray-50);
  padding: 2rem;
  border-radius: 12px;
  border-left: 6px solid var(--turquoise);
}

.stat-large .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  min-width: 120px;
}

.stat-description {
  flex: 1;
}

.stat-title {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.stat-detail {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.4;
}

.current-experiences {
  text-align: center;
  margin-top: 3rem;
}

.current-experiences h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.experience-tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.experience-tag {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
}

.experience-tag.negative {
  background: var(--gray-50);
  color: var(--red);
  border: 1px solid var(--gray-300);
}

/* Market Section */
.market-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-50));
}

.market-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.market-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.market-stat {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: none;
}

.market-stat h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.market-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--turquoise);
  margin-bottom: 0.25rem;
}

.market-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.market-revenue {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.market-bullets {
  list-style: none;
  margin-bottom: 2rem;
}

.market-bullets li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-700);
  line-height: 1.6;
}

.market-bullets li::before {
  content: "•";
  color: var(--turquoise);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.diabetes-focus {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: none;
}

.diabetes-focus h4 {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  text-align: center;
}

.diabetes-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.diabetes-segment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 8px;
  border-left: 4px solid var(--turquoise);
}

.segment-size {
  font-weight: 700;
  color: var(--turquoise);
  font-size: 1.125rem;
}

.segment-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: right;
  line-height: 1.4;
}

.multimorbidity-note {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: none;
  border-left: 6px solid var(--turquoise);
}

.multimorbidity-note p {
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-50));
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-marker {
  width: 6px;
  height: 40px;
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise));
  border-radius: 4px;
  flex-shrink: 0;
}

.about-feature h4 {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.about-feature p {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin: 0;
}

/* Comparison Card */
.comparison-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: none;
  overflow: hidden;
}

.comparison-header {
  background: var(--primary-blue);
  color: var(--white);
  padding: 1rem;
  text-align: center;
  font-weight: 600;
}

.comparison-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comparison-item {
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.comparison-item.traditional {
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
}

.comparison-item.vbc {
  background: var(--gray-50);
  border: 1px solid var(--turquoise);
}

.comparison-item h4 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-blue);
}

.comparison-item p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.comparison-divider {
  text-align: center;
  font-weight: 700;
  color: var(--gray-400);
  font-size: 0.875rem;
}

.result {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
}

.result.negative {
  background: var(--red);
  color: var(--white);
}

.result.positive {
  background: var(--turquoise);
  color: var(--white);
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: var(--white);
}

.main-feature {
  margin-bottom: 4rem;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-50));
  border-radius: 16px;
  padding: 3rem;
}

.main-feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.main-feature-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.main-feature-text p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.feature-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-benefits li {
  display: flex;
  align-items: center;
  color: var(--gray-600);
  position: relative;
}

.feature-benefits li::before {
  content: "✓";
  color: var(--turquoise);
  font-weight: 600;
  margin-right: 0.75rem;
}

/* Narrative Demo */
.narrative-demo {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: none;
}

.chat-message {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.chat-message.patient {
  background: var(--gray-50);
  border-left: 4px solid var(--turquoise);
}

.message-content {
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.5;
}

.ai-analysis {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 1rem;
}

.analysis-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.analysis-header i {
  color: var(--turquoise);
}

.analysis-points {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.analysis-point {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
  background: var(--white);
  border-radius: 6px;
  font-size: 0.875rem;
}

.point-type {
  font-weight: 600;
  color: var(--gray-600);
}

.point-value {
  color: var(--turquoise);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  box-shadow: none;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
  border-color: var(--turquoise);
}

/* Remove feature icons - now clean text-based design */

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-stats {
  display: flex;
  gap: 1rem;
}

.stat-small {
  text-align: center;
  flex: 1;
}

.stat-small .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--turquoise);
}

.stat-small .stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Validation Section */
.validation-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-50));
}

.validation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.endorsement-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: none;
}

.endorsement-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.endorsement-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.endorsement-info h3 {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.endorsement-info p {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--turquoise);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.linkedin-link:hover {
  color: var(--primary-blue);
}

blockquote {
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.6;
  border-left: 4px solid var(--turquoise);
  padding-left: 1rem;
}

.validation-partners h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.partner-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.partner-card h4 {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.partner-card p {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.partner-link {
  color: var(--turquoise);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}

.partner-link:hover {
  color: var(--primary-blue);
}

/* Key Statistics */
.key-statistics {
  margin-top: 4rem;
}

.key-statistics h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
}

.stat-content .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-content .stat-label {
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.stat-source {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-style: italic;
}

/* Closing Section */
.closing-section {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}

.closing-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.closing-content p {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.closing-highlight {
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise));
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  font-size: 1.375rem;
  margin-top: 2rem;
  display: inline-block;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue));
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.secondary-button.large {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.secondary-button.large:hover {
  background: var(--white);
  color: var(--primary-blue);
}

/* Footer */
.footer {
  background: var(--vbc-wash);
  color: var(--vbc-ink);
  padding: 26px 0px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: none;
  text-align: center;
}

.spacer {
  height: 0rem; /* Adjust based on footer height */
}

/* Section Styles */
.section {
  padding: 40px 24px;
}

.section:nth-child(even) {
  background: var(--vbc-wash);
}

.section:nth-child(odd) {
  background: var(--white);
}

.section h2 {
  color: var(--vbc-blue);
  text-align: center;
  margin: 0 0 28px;
  font-size: 44px;
}

.kicker {
  text-align: center;
  color: #64748b;
  margin: -10px 0 36px;
  font-size: 16px;
}

.card {
  border: 1px solid var(--vbc-line);
  border-radius: 12px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.card h3 {
  color: var(--vbc-green);
  margin: 0 0 2px;
  font-size: 18px;
}

.trustbar {
  display: flex;
  gap: 2px;
  justify-content: center;
  flex-wrap: wrap;
  color: #475569;
  margin-top: 48px;
}

.trustbar span {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #f6f9fc;
  border: 1px solid var(--vbc-line);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  flex-grow: 1;
}

.cta {
  background: var(--vbc-wash);
  border-top: 1px solid var(--vbc-line);
}

.form {
  max-width: 720px;
  margin: 10px auto 0;
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 10px;
}

.input {
  padding: 12px 14px;
  border: 1.5px solid var(--vbc-line);
  border-radius: 8px;
  font-size: 15px;
}

/* Responsive styles */
@media (max-width: 960px) {
  .hero .hero-container {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    column-gap: 32px !important;
    row-gap: 32px !important;
    padding: 0 16px !important;
    margin-top: 4rem !important;
  }

  .hero-visual {
    animation: fadeInRight 0.8s ease-out 0.3s both;
    margin-top: 0 !important;
  }

  .signup-container {
    grid-template-columns: 1fr !important;
  }

  .hero {
    padding: 28px 16px !important;
  }
  .section {
    padding: 32px 16px !important;
  }
  .container {
    padding: 0 16px !important;
  }
  .grid {
    gap: 12px !important;
    margin: 32px 0 !important;
  }
  .form {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 24px 12px !important;
  }
  .section {
    padding: 28px 12px !important;
  }
  .container {
    padding: 0 12px !important;
  }
  .grid {
    gap: 8px !important;
    margin: 24px 0 !important;
  }

  .grid-2 {
    grid-template-columns: 1fr !important;
  }

  .grid-three {
    grid-template-columns: 1fr 1fr !important;
  }

  .hero h1 {
    font-size: 32px !important;
  }
  .section h2 {
    font-size: 28px !important;
  }
  .card {
    padding: 10px !important;
  }
}

/* Legacy section styles for alternating backgrounds */
.why-matters,
.why-app,
.how-works,
.for-whom,
.proof-principles,
.waitlist-section,
.clinician-section {
  padding: 8rem 0;
  position: relative;
}

/* Add subtle transitions between sections */
.why-matters,
.why-app,
.how-works,
.for-whom,
.proof-principles,
.clinician-section {
  position: relative;
}

.why-matters::after,
.how-works::after,
.proof-principles::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(18, 125, 195, 0.1),
    transparent
  );
}

.why-matters {
  background: var(--white);
}

.why-app {
  background: var(--vbc-wash);
}

.how-works {
  background: var(--white);
}

.for-whom {
  background: var(--vbc-wash);
}

.proof-principles {
  background: var(--white);
}

.waitlist-section {
  background: var(--vbc-wash);
  color: var(--vbc-ink);
}

.clinician-section {
  background: var(--white);
}

.section-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.waitlist-section .section-header h2 {
  color: var(--primary-blue);
}

.waitlist-section .section-header h3,
.waitlist-section .section-header p {
  color: var(--gray-700);
}

/* Benefits Chips */
.benefits-chips {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.benefit-chip {
  background: var(--gray-50);
  border: 2px solid var(--turquoise);
  border-radius: 50px;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.benefit-chip:hover {
  background: var(--turquoise);
  color: var(--white);
  transform: translateY(-2px);
}

.chip-text {
  font-weight: 600;
  font-size: 0.95rem;
}

/* App Features */
.app-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.app-feature {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: none;
}

.app-feature h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.app-feature p {
  color: var(--gray-600);
  font-style: italic;
}

.app-cta {
  text-align: center;
  margin-top: 3rem;
}

.app-cta p {
  font-size: 1.25rem;
  color: var(--primary-blue);
}

/* How It Works Grid */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 1.5rem 0 3rem;
}

.work-item {
  text-align: center;
  padding: 2rem;
}

.work-number {
  width: 60px;
  height: 60px;
  background: var(--turquoise);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.work-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.work-item p {
  color: var(--gray-600);
}

.works-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 12px;
  border-left: 4px solid var(--turquoise);
}

.works-note p {
  color: var(--gray-600);
  font-style: italic;
  margin: 0;
}

/* Audience List */
.audience-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.audience-item {
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: none;
  border-left: 4px solid var(--turquoise);
}

.audience-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.audience-item p {
  color: var(--gray-600);
  font-style: italic;
}

/* Quote Section */
.quote-section {
  text-align: center;
  margin-top: 3rem;
  padding: 3rem;
  background: var(--gray-50);
  border-radius: 16px;
}

.quote-section blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  border: none;
  padding: 0;
}

.quote-section cite {
  color: var(--gray-600);
  font-weight: 500;
}

/* Waitlist Form */
.waitlist-form {
  max-width: 600px;
  margin: 3rem auto 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.waitlist-section .form-group label {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.waitlist-section .form-group input,
.waitlist-section .form-group select {
  padding: 1rem;
  border: 2px solid var(--primary-blue);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-size: 1rem;
}

.waitlist-section .form-group input::placeholder {
  color: var(--gray-500);
}

.waitlist-section .form-group input:focus,
.waitlist-section .form-group select:focus {
  outline: none;
  border-color: var(--turquoise);
  background: var(--white);
  box-shadow: none;
}

.waitlist-section .form-group select option {
  background: var(--white);
  color: var(--black);
}

.form-checkboxes {
  margin: 2rem 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--gray-700);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 0.75rem;
  width: 18px;
  height: 18px;
}

.form-legal {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.4;
}

/* Clinician Features */
.clinician-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.clinician-feature {
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: none;
  text-align: center;
}

.clinician-feature h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.clinician-feature p {
  color: var(--gray-600);
  font-style: italic;
}

.clinician-note {
  text-align: center;
  color: var(--gray-600);
  font-style: italic;
  margin: 2rem 0;
}

.clinician-section .primary-button {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  gap: 1.5rem;
  border: none;
}

.footer-brand {
  flex: 0 0 auto;
}

.footer-tagline {
  text-align: center;
  margin: 2rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.footer-tagline p {
  color: var(--gray-600);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.02em;
}

.footer-links {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.footer-links ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  flex-wrap: nowrap;
  align-items: center;
}

.footer-links a {
  color: var(--gray-600);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
  padding: 0.25rem 0;
}

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

.copyright-item {
  color: var(--gray-500);
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
}

.footer-bottom {
  padding: 0;
  margin: 0;
  text-align: center;
  border: none;
  border-top: none !important;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 1rem;
  margin: 0;
}

.footer-logo {
  height: 40px;
  max-height: 4vh;
  width: auto;
  margin-bottom: 0;
}

.footer-brand p {
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--turquoise);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--gray-400);
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--turquoise);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Mobile Navigation Styles */
.nav-menu.active {
  display: flex !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  flex-direction: column;
  padding: 1rem;
  box-shadow: none;
  border-top: 1px solid var(--gray-200);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-link.active {
  color: var(--turquoise);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-shrink-1fr {
    grid-template-columns: 1fr !important;
  }

  .hero .hero-container {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    column-gap: 24px !important;
    row-gap: 24px !important;
    padding: 0 12px !important;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .main-feature-content {
    grid-template-columns: 1fr;
  }

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

  .stat-row {
    grid-template-columns: 1fr;
  }

  .stat-large {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .stat-large .stat-number {
    min-width: auto;
  }

  .market-content {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .validation-content {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .partners-logos {
    gap: 1.5rem;
  }

  .experience-tags {
    flex-direction: column;
    align-items: center;
  }

  .feature-demo {
    justify-content: center;
  }

  .header-buttons {
    gap: 0.5rem;
  }

  .header-buttons .cta-button {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  .login-section {
    padding: 4rem 0 2rem;
  }

  .login-header h1 {
    font-size: 2.25rem;
  }

  .login-form-container {
    padding: 2.5rem;
  }
}

@media (max-width: 480px) {
  .before,
  .after {
    min-height: 48px;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    background: white;
    border-bottom: 1px solid #e5e7eb; /* gray-200 */
  }

  .grid-list-header-before,
  .grid-list-header-after {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-align: left;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

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

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

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

  .login-header h1 {
    font-size: 2rem;
  }

  .login-form-container {
    padding: 2rem 1.5rem;
  }

  /* New sections mobile styles */
  .benefits-chips {
    flex-direction: column;
    align-items: center;
  }

  .app-features {
    grid-template-columns: 1fr;
  }

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

  .audience-list {
    grid-template-columns: 1fr;
  }

  .clinician-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    display: none !important;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-tagline {
    margin: 1.5rem 0;
    padding-top: 1.5rem;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-links ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}
