/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Poppins', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #01385D;
  background-color: #ffffff;
  font-size: 18px;
  font-weight: 400;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

/* Color Variables */
:root {
  --orange-primary: #EF4F0F;
  --orange-light: #FF911F;
  --yellow: #F5DF4D;
  --navy-blue: #01385D;
  --white: #ffffff;
  --light-gray: #f9fafb;
  --medium-gray: #6b7280;
  --border-gray: #e5e7eb;
  --orange-background: rgba(255, 145, 31, 0.05);
  --yellow-background: rgba(245, 223, 77, 0.05);
  --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Typography */
h1, h2, h3, h4, h5, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-blue);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #000000;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-gray);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-img {
  height: 42px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--navy-blue);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--orange-primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--orange-primary);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d63f0a 0%, #e6620f 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover::before {
  left: 100%;
}

/* Hero Section - Home Page */
.hero-home {
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 25%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0.4) 60%, transparent 100%), url('pexels-cristian-rojas-8460414.jpg');
  background-size: 75%;
  background-position: right bottom;
  background-repeat: no-repeat;
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Hero Section - Health Plans Page */
.hero-health-plans {
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 25%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0.4) 60%, transparent 100%), url('cancer pt replit.png');
  background-size: 75%;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Hero Section - ACOs Page */
.hero-acos {
  background: var(--white);
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Shared hero styles */
.hero-home,
.hero-health-plans,
.hero-acos {

}

.hero-home::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245, 223, 77, 0.1) 0%, rgba(255, 145, 31, 0.1) 100%);
  pointer-events: none;
  border-radius: 0 0 0 100px;
}

.hero-health-plans::before,
.hero-acos::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245, 223, 77, 0.1) 0%, rgba(255, 145, 31, 0.1) 100%);
  pointer-events: none;
  border-radius: 0 0 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 580px;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--navy-blue);
  letter-spacing: -0.03em;
  max-width: 580px;
  word-spacing: 0.1em;
}

.hero-subheadline {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: #000000;
  font-weight: 400;
}

.btn-hero {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
  text-decoration: none;
  display: inline-block;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-hero:hover {
  background: linear-gradient(135deg, #d63f0a 0%, #e6620f 100%);
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.btn-hero:hover::before {
  left: 100%;
}

.hero-image {
  text-align: center;
  position: relative;
  display: none;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, var(--orange-primary) 0%, var(--orange-light) 50%, var(--yellow) 100%);
  border-radius: 50% 30% 50% 30%;
  z-index: 1;
  opacity: 0.8;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 40px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 145, 31, 0.6) 0%, rgba(245, 223, 77, 0.6) 100%);
  border-radius: 30% 50% 30% 50%;
  z-index: 1;
  opacity: 0.7;
}

.patient-photo {
  width: 100%;
  max-width: 518px;
  height: 403px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-large);
  position: relative;
  z-index: 2;
}

/* Logo Bar */
.logo-bar {
  background: #f5f5f5;
  padding: 50px 0;
  position: relative;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.logo-bar-title {
  text-align: center;
  color: var(--navy-blue);
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.logo-carousel {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.logo-carousel-arrow {
  background: transparent;
  border: none;
  border-radius: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  flex-shrink: 0;
  z-index: 2;
  padding: 10px;
}

.logo-carousel-arrow:hover {
  background: transparent;
  color: var(--orange-primary);
  transform: scale(1.1);
  box-shadow: none;
}

.logo-carousel-arrow i {
  font-size: 1.5rem;
  color: var(--orange-primary);
  transition: color 0.3s ease;
}

.logo-carousel-arrow:hover i {
  color: var(--orange-primary);
}

.logo-carousel-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.logo-carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo-img {
  width: 140px;
  height: 70px;
  object-fit: contain;
  object-position: center;
}

/* Specific logos made 30% bigger */
.partner-logo-img[src*="Biopharma logo.png"],
.partner-logo-img[src*="Complete Dermatology logo.png"],
.partner-logo-img[src*="Millennium Logo.png"],
.partner-logo-img[src*="Apex Logo Grey"],
.partner-logo-img[src*="Banner grey replit.png"],
.partner-logo-img[src*="Mercury logo.png"] {
  width: 182px;
  height: 91px;
}

/* How It Works */
.how-it-works {
  padding: 60px 0;
  background: rgba(255, 145, 31, 0.08);
  border-top: 1px solid rgba(255, 145, 31, 0.2);
  border-bottom: 1px solid rgba(255, 145, 31, 0.2);
}

.how-it-works-header {
  text-align: left;
  margin-bottom: 3rem;
}

.how-it-works .section-title {
    margin-bottom: 1rem;
    margin-top: 0;
    text-align: center;
    max-width: 100%;
    white-space: normal;
    letter-spacing: -0.02em;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.75rem;
  }

  .how-it-works-subtitle {
    font-size: 1rem;
    color: #000000;
    margin: 0;
    max-width: 100%;
    line-height: 1.5;
    margin-bottom: 2rem;
    text-align: center;
    white-space: normal;
    margin-left: auto;
    margin-right: auto;
  }

.how-it-works-grid {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.how-it-works-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-it-works-photo {
  width: 100%;
  max-width: 500px;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.how-it-works-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 15%,
    transparent 85%,
    rgba(255, 255, 255, 0.3) 100%
  );
  border-radius: 16px;
  pointer-events: none;
}

.how-it-works-value-props {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 1rem 0;
}

.info-panel-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

.info-panel-section:last-child {
  padding-bottom: 0;
}

.info-panel-header {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align: left;
}

.info-panel-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 0.75rem;
  text-align: left;
}

.info-panel-divider {
  border: none;
  height: 1px;
  background-color: var(--border-gray);
  margin: 0;
  width: 100%;
}

.info-panel-section:last-child .info-panel-divider {
  display: none;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.step-item {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  margin-bottom: 1px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-item:hover {
  background: rgba(255, 145, 31, 0.02);
}

.step-item.active {
  background: rgba(255, 145, 31, 0.03);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.step-item:last-child .step-header {
  border-bottom: none;
}

.step-header:hover {
  background: rgba(255, 145, 31, 0.02);
}

.step-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #374151;
  transition: color 0.3s ease;
}

.step-item.active .step-title {
  color: var(--navy-blue);
  font-weight: 600;
}

.step-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-icon i {
  font-size: 1.25rem;
  color: var(--orange-primary);
  transition: transform 0.3s ease;
}

.step-item.active .step-icon i {
  transform: rotate(45deg);
}

.step-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-content.active {
  max-height: 150px;
}

.step-content p {
  padding: 0 2rem 1.75rem 2rem;
  margin: 0;
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
}

/* Value Proposition */
.value-prop {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  border-top: 1px solid rgba(255, 145, 31, 0.2);
  border-bottom: 1px solid rgba(255, 145, 31, 0.2);
  box-shadow: none;
}

.value-prop .section-title {
  text-align: center;
}

/* ACO-specific Value Proposition styles */
.value-prop.aco-panel {
  padding: 6rem 0;
  background: var(--navy-blue);
}

.value-prop.aco-panel .section-title,
.value-prop.aco-panel p {
  color: white !important;
}

.value-prop.aco-panel .value-item {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.value-prop.aco-panel .value-item .value-icon-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  height: 182px;
}

.value-prop.aco-panel .value-item-title,
.value-prop.aco-panel .value-item-description {
  color: var(--navy-blue) !important;
}

.value-grid {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.value-grid .value-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.value-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
}

.value-icon-placeholder {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}

.value-icon-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.value-prop.aco-panel .value-icon-placeholder {
  height: 164px;
}

.value-prop.aco-panel .value-icon-img[src*="ACO medicare.png"] {
  width: 234px;
  height: 234px;
}

.value-prop.aco-panel .value-icon-img[src*="ACO Medicare Advantage.png"],
.value-prop.aco-panel .value-icon-img[src*="ACO Employer.png"] {
  width: 164px;
  height: 164px;
}

.value-prop .value-icon-img[src*="Health Plan MA Medicaid.png"],
.value-prop .value-icon-img[src*="ACO Employer.png"],
.value-prop .value-icon-img[src*="Health plan individual.png"] {
  width: 164px;
  height: 164px;
}

.value-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item-title-wide {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 1rem;
  line-height: 1.4;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.value-item-subheader {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
  min-height: 84px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.value-item-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.value-item-link {
  color: var(--navy-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.value-item-link:hover {
  color: var(--orange-primary);
}

.value-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border-gray);
  position: relative;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-primary), var(--orange-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.card-header {
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--white);
  line-height: 1.3;
}

.card-content {
  padding: 1.75rem;
}

.card-content p {
  color: #374151;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  text-align: center;
}

/* Proven Results */
.proven-results {
  padding: 120px 0;
  background: var(--navy-blue);
  position: relative;
  border-top: 1px solid rgba(1, 56, 93, 0.3);
  border-bottom: 1px solid rgba(1, 56, 93, 0.3);
}

.results-header .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
    white-space: normal;
    font-size: 2.5rem;
    line-height: 1.3;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  @media (max-width: 768px) {
    .results-header .section-title .desktop-text {
      display: none !important;
    }

    .results-header .section-title .mobile-text {
      display: block !important;
    }
  }

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.result-card {
  text-align: center;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-light);
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.result-stat {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--orange-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.result-description {
  color: #000000;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* Members Enrolled Carousel */
.testimonials {
  padding: 80px 0;
  background: rgba(255, 145, 31, 0.08);
  position: relative;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

.testimonials .section-title {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-subtitle {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.new-enrollment-carousel {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    .new-enrollment-carousel {
      margin-left: 0;
      margin-right: 0;
      gap: 1rem;
    }

    .new-enrollment-viewport {
      max-width: 280px;
    }

    .new-enrollment-card {
      flex: 0 0 100%;
      margin-right: 0;
      min-height: 140px;
      padding: 1.25rem;
    }

    .member-name {
      font-size: 1.125rem;
    }

    .trial-info {
      font-size: 0.9rem;
    }
  }

.new-carousel-arrow {
  background: transparent;
  border: none;
  border-radius: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  flex-shrink: 0;
  z-index: 10;
  padding: 10px;
}

.new-carousel-arrow:hover {
  background: transparent;
  color: var(--orange-primary);
  transform: scale(1.1);
  box-shadow: none;
}

.new-carousel-arrow i {
  font-size: 1.5rem;
  color: var(--orange-primary);
  transition: color 0.3s ease;
}

.new-carousel-arrow:hover i {
  color: var(--orange-primary);
}

.new-enrollment-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  max-width: 750px;
}

.new-enrollment-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.new-enrollment-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  position: relative;
  border: 1px solid var(--border-gray);
  border-right: 4px solid var(--orange-primary);
  border-left: 4px solid var(--orange-primary);
  transition: all 0.3s ease;
  flex: 0 0 calc((100% - 3rem) / 3);
  min-height: 160px;
  margin-right: 1.5rem;
}

.new-enrollment-card:last-child {
  margin-right: 0;
}

.new-enrollment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange-primary), var(--orange-light));
  border-radius: 12px 0 0 12px;
}

.new-enrollment-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange-primary), var(--orange-light));
  border-radius: 0 12px 12px 0;
}

.new-enrollment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.enrollment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.member-name {
  color: var(--navy-blue);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.member-state {
  background: var(--yellow);
  color: var(--navy-blue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.enrollment-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.diagnosis {
  color: var(--medium-gray);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.trial-info {
  color: var(--orange-primary);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  line-height: 1.4;
}

/* FAQs Section */
.faqs {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

/* Zest-Inspired About Hero */
.about-hero-zest {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('pexels-matthiaszomer-339620.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 180px 0 120px;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.about-hero-zest-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text-content {
  max-width: 600px;
  text-align: left;
}

.hero-label {
  color: var(--orange-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--white);
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-placeholder {
  width: 200px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image-placeholder i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Purpose Section */
.purpose-section {
  padding: 120px 0;
  background: var(--light-gray);
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.purpose-image {
  text-align: center;
}

.purpose-photo {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.purpose-content {
  max-width: 600px;
}

.purpose-label {
  color: var(--orange-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.purpose-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--navy-blue);
}

.purpose-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 1.5rem;
}

.purpose-description:last-child {
  margin-bottom: 0;
}

/* Line Style FAQ Accordion */
.accordion-item-line {
  border-bottom: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}

.accordion-item-line:last-child {
  border-bottom: none;
}

.accordion-header-line {
  width: 100%;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-blue);
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-header-line:hover {
  color: var(--orange-primary);
}

.accordion-header-line[aria-expanded="true"] {
  color: var(--orange-primary);
}

.accordion-header-line .accordion-icon {
  color: var(--orange-primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.accordion-header-line[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content-line {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content-line.active {
  max-height: 200px;
}

.accordion-body-line {
  padding: 0 0 1.5rem 0;
}

.accordion-body-line p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.faqs-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: flex-start;
}

.faqs-content {
  position: sticky;
  top: 120px;
}

.faqs-intro {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #000000;
  margin: 0;
  max-width: 400px;
}

.faqs-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

.accordion-item:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--orange-light);
}

.accordion-header {
  width: 100%;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-blue);
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange-primary), var(--orange-light));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.accordion-header:hover::before,
.accordion-header[aria-expanded="true"]::before {
  transform: scaleY(1);
}

.accordion-header:hover {
  color: var(--orange-primary);
  background: rgba(255, 145, 31, 0.02);
}

.accordion-header[aria-expanded="true"] {
  color: var(--orange-primary);
  background: rgba(255, 145, 31, 0.05);
}

.accordion-icon {
  color: var(--orange-primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content.active {
  max-height: 200px;
}

.accordion-body {
  padding: 0 2rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 145, 31, 0.1);
}

.accordion-body p {
  color: var(--medium-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin: 1rem 0 0 0;
}

/* Call to Action */
.cta-section {
  padding: 140px 0;
  background: linear-gradient(135deg, var(--navy-blue) 0%, #024a7a 50%, #035a96 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(245, 223, 77, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
  letter-spacing: -0.03em;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
  color: var(--white);
  border: none;
  padding: 20px 40px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #d63f0a 0%, #e6620f 100%);
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.btn-solution {
  background: linear-gradient(135deg, var(--navy-blue) 0%, #024a7a 100%);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
  text-decoration: none;
  display: inline-block;
}

.btn-solution:hover {
  background: linear-gradient(135deg, #035a96 0%, #046bb8 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: var(--white);
}

/* Footer */
.footer {
  background: var(--white);
  color: var(--navy-blue);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-gray);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  margin-bottom: 3rem;
}

.footer-links h4 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--orange-primary);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--medium-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.125rem;
}

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

.newsletter-section h4 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--orange-primary);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.newsletter-input {
  flex: 1;
  padding: 16px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  box-shadow: var(--shadow-light);
}

.btn-newsletter {
  background: var(--orange-primary);
  color: var(--white);
  border: none;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-newsletter:hover {
  background: #d63f0a;
  transform: translateY(-2px);
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.soc2-cert {
  background: var(--yellow);
  color: var(--navy-blue);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
}

.soc2-cert-img {
  height: 58px;
  width: auto;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: var(--navy-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3rem;
}

.social-link:hover {
  color: var(--orange-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-gray);
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: var(--medium-gray);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--orange-primary);
}

.footer-contact-btn {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

.footer-contact-btn:hover {
  background: linear-gradient(135deg, #d63f0a 0%, #e6620f 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

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

@media (max-width: 768px) {
  .footer-bottom-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Health Plans Page Styles */
.plan-insights {
  padding: 120px 0;
  background: var(--navy-blue);
  position: relative;
}

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

.insights-chart {
  color: var(--white);
}

.insights-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
}

.tab-switcher {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  background: transparent;
  border: 2px solid var(--orange-primary);
  color: var(--orange-primary);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--orange-primary);
  color: var(--white);
}

.chart-placeholder {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  color: var(--white);
  border: 2px dashed rgba(255, 255, 255, 0.3);
}

.chart-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--orange-primary);
}

.insights-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange-primary);
  margin-bottom: 0.5rem;
}

.stat-description {
  color: var(--medium-gray);
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

.pain-points {
  padding: 120px 0;
  background: var(--navy-blue);
}

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

.pain-points-charts {
  display: flex;
  justify-content: center;
  align-items: center;
}

.charts-container {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--white);
  max-width: 450px;
}

.charts-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 2rem;
  text-align: center;
}

.donut-charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.donut-chart-item {
  text-align: center;
}

.donut-chart {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.donut-chart svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.bar-chart {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.bar-chart svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.chart-description {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--navy-blue);
  margin: 0;
  font-weight: 500;
}

.charts-source {
  font-size: 0.75rem;
  color: rgba(1, 56, 93, 0.7);
  text-align: center;
  margin: 0;
  font-style: italic;
}

.pain-image-placeholder {
  background: var(--light-gray);
  padding: 4rem 2rem;
  border-radius: 16px;
  text-align: center;
  border: 2px dashed var(--border-gray);
  color: var(--medium-gray);
}

.pain-image-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--orange-primary);
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pain-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pain-item:last-child {
  border-bottom: none;
}

.pain-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pain-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.pull-quote-section {
  padding: 120px 0;
  background: var(--light-gray);
  text-align: center;
}

.pull-quote {
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy-blue);
  font-style: italic;
  line-height: 1.4;
  margin: 0 auto 2rem;
  max-width: 800px;
  position: relative;
}

.pull-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--orange-primary);
  position: absolute;
  left: -2rem;
  top: -1rem;
}

.pull-quote::after {
  content: '"';
  font-size: 4rem;
  color: var(--orange-primary);
  position: absolute;
  right: -2rem;
  bottom: -2rem;
}

.quote-attribution {
  font-size: 1.125rem;
  color: var(--medium-gray);
  font-weight: 500;
  font-style: normal;
}

/* Core Benefits */
.core-benefits {
  padding: 120px 0;
  background: var(--white);
}

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

.benefits-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  margin-top: 3rem;
}

.benefits-left {
  padding-right: 2rem;
}

.stat-highlight-box {
  background: var(--orange-primary);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
}

.stat-number-large {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.benefits-stat-text {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--navy-blue);
  font-weight: 600;
  margin: 0;
}

.benefits-right {
  padding-left: 2rem;
}

.benefits-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 2rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-item {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  position: relative;
}

.benefit-item::before {
  content: "•";
  color: var(--orange-primary);
  font-size: 1.25rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.benefit-item strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: var(--medium-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.benefit-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
}

.benefit-icon i {
  font-size: 2rem;
  color: var(--white);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 1rem;
}

.benefit-description {
  color: var(--medium-gray);
  font-size: 1rem;
  line-height: 1.6;
}

.how-it-works-accordion {
  padding: 120px 0;
  background: var(--white);
}

.accordion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.process-diagram {
  background: var(--light-gray);
  padding: 4rem 2rem;
  border-radius: 16px;
  text-align: center;
  border: 2px dashed var(--border-gray);
  color: var(--medium-gray);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.process-diagram i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--orange-primary);
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item-hp {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

.accordion-item-hp:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--orange-light);
}

.accordion-header-hp {
  width: 100%;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-blue);
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-header-hp::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange-primary), var(--orange-light));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.accordion-header-hp:hover::before,
.accordion-header-hp[aria-expanded="true"]::before {
  transform: scaleY(1);
}

.accordion-header-hp:hover {
  color: var(--orange-primary);
  background: rgba(255, 145, 31, 0.02);
}

.accordion-header-hp[aria-expanded="true"] {
  color: var(--orange-primary);
  background: rgba(255, 145, 31, 0.05);
}

.accordion-content-hp {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content-hp.active {
  max-height: 200px;
}

.accordion-body-hp {
  padding: 0 2rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 145, 31, 0.1);
}

.accordion-body-hp p {
  color: var(--medium-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin: 1rem 0 0 0;
}

.measurable-outcomes {
  padding: 120px 0;
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
}

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

.outcome-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid #d4edd4;
  transition: all 0.3s ease;
}

.outcome-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.outcome-stat {
  font-size: 4rem;
  font-weight: 800;
  color: #22c55e;
  margin-bottom: 1rem;
}

.outcome-description {
  color: var(--medium-gray);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.contact-form-section {
  padding: 120px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-blue);
  margin-bottom: 1.5rem;
}

.contact-intro p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--medium-gray);
}

.health-plan-form {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--border-gray);
}

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

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-gray);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange-primary);
}

.btn-form-submit {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
  width: 100%;
}

.btn-form-submit:hover {
  background: linear-gradient(135deg, #d63f0a 0%, #e6620f 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.partners-section {
  padding: 80px 0;
  background: var(--light-gray);
  border-bottom: 1px solid var(--border-gray);
}

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

.partner-logo {
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  color: var(--medium-gray);
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  border-color: var(--orange-light);
}

.footer-cta {
  padding: 60px 0;
  background: var(--navy-blue);
  text-align: center;
}

.footer-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-medium);
}

.cta-icon i {
  font-size: 2rem;
  color: var(--white);
}

.footer-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.cta-email {
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-email:hover {
  color: var(--white);
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn-primary,
  .btn-hero,
  .btn-cta,
  .btn-solution {
    min-height: 44px;
    min-width: 44px;
  }

  .accordion-header,
  .accordion-header-hp,
  .step-header {
    min-height: 48px;
  }
}

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

  .nav-container {
    padding: 1rem;
  }

  /* Mobile navigation improvements */
  .nav-logo .logo-img {
    height: 36px;
  }

  .btn-primary {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* Mobile font size adjustments */
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.75rem;
  }

  /* Health Plans Mobile Optimizations */
  .pain-points .section-title {
    white-space: normal !important;
    font-size: 1.5rem;
    line-height: 1.3;
    padding: 0 1rem;
  }

  .pain-points p {
    white-space: normal !important;
    font-size: 1rem;
    padding: 0 1rem;
  }

  .core-benefits .section-title {
    white-space: normal !important;
    font-size: 1.5rem;
    line-height: 1.3;
    padding: 0 1rem;
  }

  .value-prop p {
    white-space: normal !important;
    font-size: 1rem;
    padding: 0 1rem;
  }

  .pain-title {
    white-space: normal !important;
    font-size: 1.125rem;
    line-height: 1.3;
  }

  /* Charts container mobile optimization */
  .charts-container {
    padding: 1.5rem 1rem;
    margin: 0 1rem;
    max-width: 100%;
  }

  .charts-title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .donut-charts-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .donut-chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .donut-chart svg {
    width: 120px;
    height: 120px;
  }

  .bar-chart svg {
    width: 160px;
    height: 120px;
  }

  .chart-description {
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
    margin-top: 0.5rem;
  }

  /* Benefits grid mobile optimization */
  .benefits-grid-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-right {
    padding-left: 0;
    padding-top: 0;
    order: 1;
  }

  .benefits-left {
    padding-right: 0;
    order: 2;
  }

  .benefits-right img {
    max-width: 100%;
    height: auto;
  }

  /* Contact form mobile optimization */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .health-plan-form {
    padding: 2rem 1.5rem;
    margin: 0;
  }

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

  .form-group input,
  .form-group select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 14px 12px;
  }

  /* Pain points mobile layout */
  .pain-points-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pain-points-charts {
    order: 1;
  }

  .pain-points-content {
    order: 2;
  }

  /* Value prop mobile spacing */
  .value-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    display: grid !important;
  }

  .value-item {
    padding: 2rem 1rem;
    width: 100%;
  }

  .value-prop .value-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  /* Hero mobile improvements */
  .hero-health-plans {
    background: var(--white) !important;
    padding: 120px 0 80px;
  }

  .hero-health-plans .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .hero-health-plans .hero-image {
    display: block;
    order: 1;
  }

  .hero-health-plans .hero-content {
    order: 2;
    max-width: 100%;
  }

  .hero-health-plans .patient-photo {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 auto;
  }

  .hero-headline {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subheadline {
    font-size: 1rem;
    line-height: 1.4;
  }

  /* Why Haystack Page Mobile Fixes */
  .comparison-table-container {
    overflow-x: auto;
    margin: 2rem 0;
  }

  .comparison-table {
    min-width: 100%;
    font-size: 0.65rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.4rem 0.15rem;
    font-size: 0.55rem;
  }

  .approach-cell {
    font-size: 0.55rem;
    line-height: 1.2;
    white-space: normal !important;
    overflow: visible;
    text-overflow: initial;
  }

  .approach-column {
    width: 35% !important;
  }

  .haystack-column,
  .competitor-column {
    width: 32.5% !important;
  }

  /* Mobile header centering for Why Haystack page */
  .why-hero-title,
  .why-hero-label,
  .why-hero-description {
    text-align: center !important;
  }

  .haystack-different-label,
  .haystack-different .section-title {
    text-align: center !important;
  }

  .populations-title,
  .populations-subtitle,
  .populations-description {
    text-align: center !important;
  }

  .haystack-different .section-title {
    font-size: 1.25rem;
    line-height: 1.2;
    padding: 0 1rem;
    word-wrap: break-word;
  }

  .why-hero-title {
    font-size: 1.75rem;
  }

  .why-hero-description {
    font-size: 0.85rem;
  }

  .populations-subtitle {
    font-size: 0.9rem;
  }

  .population-label {
    font-size: 0.8rem;
  }

  .populations-title {
    font-size: 1.5rem;
    line-height: 1.2;
    word-wrap: break-word;
  }

  .populations-description {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .haystack-different-label {
    font-size: 0.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  p {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  .hero-headline {
    font-size: 1.875rem;
  }

  .hero-subheadline {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .results-header .section-title {
    font-size: 1.5rem;
    padding: 0 1rem;
  }

  .hero-home,
  .hero-health-plans,
  .hero-acos {
    padding: 140px 0 100px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-home {
    background: linear-gradient(180deg, var(--white) 0%, var(--white) 30%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0.4) 80%, transparent 100%), url('pexels-cristian-rojas-8460414.jpg');
    background-size: cover;
    background-position: center;
  }

  .hero-headline {
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  .hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
  }

  /* Better mobile button sizing */
  .btn-hero {
    padding: 16px 32px;
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .how-it-works-grid {
    flex-direction: column;
    gap: 3rem;
  }

  .how-it-works-image {
    order: 2;
  }

  .how-it-works-value-props {
    order: 1;
    gap: 0.75rem;
  }

  .info-panel-section {
    padding: 0.75rem 0;
  }

  .info-panel-header {
    font-size: 1.25rem;
    text-align: center;
  }

  .info-panel-description {
    text-align: center;
  }

  .logo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .value-grid-new {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .value-item {
    padding: 1.5rem 1rem;
  }

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

  .enrollment-carousel {
    flex-direction: column;
    gap: 1.5rem;
  }

  .enrollment-track {
    width: 100%;
    flex-direction: column;
  }

  .enrollment-card {
    flex: 0 0 auto;
    width: 100%;
  }

  .carousel-arrow {
    display: none;
  }

  .faqs-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faqs-content {
    position: static;
    text-align: center;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .footer-logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .differentiator-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .differentiator-row.right-aligned .differentiator-half {
    order: 1;
  }

  .differentiator-row.right-aligned .differentiator-explainer {
    order: 2;
  }

  .populations-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .populations-image {
    order: 2;
  }

  .populations-content {
    order: 1;
  }

  .populations-title {
    text-align: center;
    font-size: 1.375rem;
    line-height: 1.3;
  }

  .populations-description {
    text-align: center;
    font-size: 0.8rem;
  }

  .populations-grid-simple {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial-banner {
    padding: 60px 0;
  }

  .testimonial-text {
    font-size: 1.25rem;
  }

  .testimonial-quote-icon {
    font-size: 2rem;
  }

  .why-hero-title {
    font-size: 2.25rem;
  }

  .comparison-table-container {
    margin-top: 3rem;
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 600px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
  }

  .approach-cell {
    font-size: 0.9rem;
  }

  /* Health Plans Mobile Styles */
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .insights-stats {
    order: 1;
  }

  .insights-chart {
    order: 2;
  }

  .pain-points-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pain-points-charts {
    order: 1;
  }

  .pain-points-content {
    order: 2;
  }

  .donut-charts-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .charts-container {
    padding: 2rem;
    max-width: 100%;
  }

  .pain-points-image {
    order: 2;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .accordion-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .process-diagram {
    position: static;
    order: 2;
  }

  .accordion-content {
    order: 1;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .partners-logos {
    flex-direction: column;
    gap: 1.5rem;
  }

  .pull-quote {
    font-size: 1.5rem;
  }

  .pull-quote::before,
  .pull-quote::after {
    display: none;
  }

  .tab-switcher {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-home,
  .hero-health-plans,
  .hero-acos {
    padding: 100px 0 60px;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .container {
    padding: 0 16px;
  }

  /* Mobile form improvements */
  .health-plan-form {
    padding: 2rem 1.5rem;
  }

  .form-group input,
  .form-group select {
    padding: 12px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Mobile card spacing */
  .result-card,
  .new-enrollment-card {
    padding: 1.5rem;
  }

  /* Mobile section padding */
  .proven-results,
  .how-it-works,
  .value-prop,
  .testimonials {
    padding: 80px 0;
  }

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

  .orange-background-box {
    padding: 50px 30px;
  }

  .cta-content h2 {
    font-size: 2.25rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .solution-headline {
    font-size: 2.5rem;
  }

  .solution-section {
    padding: 80px 0;
  }

  .solution-section-title {
    font-size: 2rem;
  }

  .solution-icon-large {
    width: 120px;
    height: 120px;
  }

  .solution-icon-large i {
    font-size: 2.5rem;
  }

  /* About Page Specific Styles */
  .about-image-section {
    padding: 80px 0;
  }

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

  .about-image-left {
    text-align: center;
  }

  .about-clinic-photo {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
  }

  .hero-image-placeholder {
    height: 280px;
  }

  .hero-image-placeholder i {
    font-size: 3rem;
  }

  .about-image-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-left {
    order: 1;
  }

  .about-image-content {
    order: 2;
  }

  .about-hero-zest-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

  .hero-description {
    font-size: 1.125rem;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .purpose-image {
    order: 1;
  }

  .purpose-content {
    order: 2;
  }

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

/* Solution Page Styles */
.solution-hero {
  background: var(--white);
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

.solution-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at 80% 20%, rgba(255, 92, 0, 0.6) 0%, rgba(255, 145, 31, 0.4) 30%, rgba(255, 180, 70, 0.2) 60%, transparent 80%);
  pointer-events: none;
  border-radius: 0 0 0 120px;
}

.solution-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.solution-hero-content {
  max-width: 580px;
}

.solution-headline {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--navy-blue);
  letter-spacing: -0.03em;
}

.solution-subheadline {
  font-size: 1.375rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: var(--medium-gray);
  font-weight: 400;
}

.solution-hero-visual {
  text-align: center;
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 450px;
  height: 350px;
  background: var(--white);
  border: 3px dashed var(--orange-light);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.125rem;
  color: var(--medium-gray);
  font-weight: 600;
  box-shadow: var(--shadow-large);
  position: relative;
  z-index: 1;
}

.hero-image-placeholder i {
  font-size: 4rem;
  color: var(--orange-primary);
}

.solution-section {
  padding: 120px 0;
  position: relative;
}

.solution-section.ai-matching {
  background: var(--light-gray);
}

.solution-section.care-navigation {
  background: rgba(245, 223, 77, 0.08);
}

.solution-section.trial-network {
  background: rgba(1, 56, 93, 0.05);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.solution-visual {
  text-align: center;
  display: flex;
  align-items: center
}
/* Adding some style so the buttons work as links */
.btn-primary,
.btn-hero,
.btn-cta {
  text-decoration: none;
  display: inline-block;
}

/* Adding the Calendly URL to the contact buttons */
.btn-primary[href*="let's talk"],
.btn-primary[href*="contact us"],
.btn-hero[href*="let's talk"],
.btn-hero[href*="contact us"],
.btn-cta[href*="let's talk"],
.btn-cta[href*="contact us"] {
  href: https://calendly.com/haystackhealth;
}

/* Why Haystack Page Styles */
.why-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('pexels-googledeepmind-17485658.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gray);
}

.why-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at 80% 20%, rgba(255, 92, 0, 0.6) 0%, rgba(255, 145, 31, 0.4) 30%, rgba(255, 180, 70, 0.2) 60%, transparent 80%);
  pointer-events: none;
  border-radius: 0 0 0 120px;
}

.why-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.why-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.why-hero-label {
  color: var(--orange-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--white);
  letter-spacing: -0.03em;
}

.why-hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin: 0;
}

.member-populations {
  padding: 120px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
}

.populations-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.populations-content {
  max-width: 100%;
}

.populations-title {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}

.populations-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

.populations-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-blue);
  margin-bottom: 2rem;
}

.populations-grid-simple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.populations-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: stretch;
}

.populations-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.populations-photo {
  width: 100%;
  max-width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
}

/* Testimonial Banner */
.testimonial-banner {
  padding: 80px 0;
  background: var(--navy-blue);
  position: relative;
  border-top: 1px solid rgba(1, 56, 93, 0.3);
  border-bottom: 1px solid rgba(1, 56, 93, 0.3);
}

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

.testimonial-quote {
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--orange-primary);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.testimonial-text {
  font-size: 1.375rem;
  line-height: 1.6;
  color: var(--white);
  font-style: italic;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.01em;
}

.testimonial-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-title {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.populations-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: stretch;
}

.population-item-simple {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.population-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.population-icon i {
  font-size: 1.25rem;
  color: var(--orange-primary);
}

.population-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy-blue);
  line-height: 1.4;
}

.haystack-different {
  padding: 120px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
}

.haystack-different-label {
  color: var(--orange-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.haystack-different .section-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--navy-blue);
  letter-spacing: -0.03em;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.haystack-different .section-title {
    text-align: center;
}

.haystack-different .section-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--navy-blue);
  letter-spacing: -0.03em;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.haystack-different .section-title {
    text-align: center;
}

.haystack-different .section-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--navy-blue);
  letter-spacing: -0.03em;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.haystack-different .section-title {
    text-align: center;
}

.haystack-different .section-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--navy-blue);
  letter-spacing: -0.03em;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.haystack-different .section-title {
    text-align: center;
}

.haystack-different .section-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--navy-blue);
  letter-spacing: -0.03em;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-table-container {
  margin-top: 4rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-gray);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
}

.comparison-table thead tr {
  background: var(--light-gray);
}

.comparison-table th {
  padding: 1.5rem;
  text-align: center;
  font-weight: 700;
  color: var(--navy-blue);
  border-bottom: 2px solid var(--border-gray);
}

.approach-column {
  text-align: left !important;
  width: 50%;
}

.haystack-column {
  background: rgba(255, 145, 31, 0.08);
  color: var(--orange-primary);
  width: 25%;
}

.competitor-column {
  width: 25%;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border-gray);
  transition: background-color 0.3s ease;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 145, 31, 0.02);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: 1.25rem 1.5rem;
  vertical-align: middle;
}

.approach-cell {
  text-align: left;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--navy-blue);
  font-weight: 500;
  white-space: nowrap;
}

/* Desktop: Prevent text wrapping in all table cells */
@media (min-width: 769px) {
  .comparison-table td {
    white-space: nowrap;
  }
  
  .approach-cell,
  .haystack-cell,
  .competitor-cell {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Desktop/Mobile Display Controls */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: block !important;
  }
}

/* Mobile Comparison Cards */
.comparison-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 4rem;
}

.comparison-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.comparison-card:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--orange-light);
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-blue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-comparison {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.provider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  text-align: center;
}

.provider-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--medium-gray);
}

.provider.haystack {
  background: rgba(255, 145, 31, 0.05);
  padding: 1rem 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 145, 31, 0.2);
}

.provider.haystack .provider-name {
  color: var(--orange-primary);
  font-weight: 600;
}

.provider.haystack i {
  color: var(--orange-primary);
  font-size: 1.25rem;
}

.provider.competitor i {
  color: var(--medium-gray);
  font-size: 1.25rem;
}

/* Keep existing mobile table styles as fallback */
@media (max-width: 768px) {
  .comparison-table {
    table-layout: fixed;
    width: 100%;
    font-size: 0.75rem;
  }
  
  .comparison-table td {
    white-space: normal;
    padding: 0.5rem 0.25rem;
    vertical-align: top;
  }
  
  .comparison-table th {
    padding: 0.75rem 0.25rem;
    font-size: 0.8rem;
  }
  
  .approach-column {
    width: 60% !important;
    text-align: left !important;
  }
  
  .haystack-column,
  .competitor-column {
    width: 20% !important;
    text-align: center !important;
  }
  
  .approach-cell {
    white-space: normal !important;
    overflow: visible;
    text-overflow: initial;
    font-size: 0.75rem;
    line-height: 1.3;
    font-weight: 500;
  }
  
  .haystack-cell,
  .competitor-cell {
    white-space: nowrap;
    text-align: center;
  }
  
  .check-icon,
  .question-icon {
    width: 100%;
    justify-content: center;
    display: flex;
  }
  
  .check-icon i,
  .question-icon i {
    font-size: 1rem;
  }
}

.haystack-cell,
.competitor-cell {
  text-align: center;
}

.haystack-cell {
  background: rgba(255, 145, 31, 0.05);
}

.check-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.check-icon i {
  color: var(--orange-primary);
  font-size: 1.5rem;
}

.question-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.question-icon i {
  font-size: 1.5rem;
  color: var(--medium-gray);
}

.differentiators-stacked {
  margin-top: 4rem;
}

.differentiator-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 3rem 0;
}

.differentiator-row:last-child {
  margin-bottom: 0;
}

.differentiator-row.right-aligned {
  direction: rtl;
}

.differentiator-row.right-aligned > * {
  direction: ltr;
}

.differentiator-half {
  display: flex;
  align-items: center;
}

.differentiator-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}

.differentiator-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.differentiator-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-medium);
}

.differentiator-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.differentiator-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin: 0;
  line-height: 1.3;
}

.differentiator-explainer {
  display: flex;
  align-items: center;
}

.differentiator-explainer p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--medium-gray);
  margin: 0;
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-gray);
}

/* Disease Types Section */
.disease-types {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

.disease-types-panel {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-light);
  max-width: 800px;
  margin: 0 auto;
}

.disease-types-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 2.5rem;
  text-align: left;
  border-bottom: 2px solid var(--border-gray);
  padding-bottom: 1rem;
}

.disease-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

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

.disease-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
}

.disease-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.disease-icon i {
  font-size: 1.25rem;
  color: var(--orange-primary);
}

.disease-label {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy-blue);
  line-height: 1.4;
}

/* Updated title and table rows within the "What Makes Haystack Different" section and changed the check icons to orange. */

.haystack-different-label {
  color: var(--orange-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.haystack-different .section-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--navy-blue);
  letter-spacing: -0.03em;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
/* Updated title and table rows within the "What Makes Haystack Different" section and changed the check icons to orange. */
/* Updated title and table rows within the "What Makes Haystack Different" section and changed the "What Makes Haystack Different" section and changed the check icons to orange. */
/* Updated title and table rows within the "What Makes Haystack Different" section and changed the check icons to orange. */
/* Updated title and table rows within the "What Makes Haystack Different" section and changed the check icons to orange. */
/* Updated title and table rows within the "What Makes Haystack Different" section and changed the check icons to orange. */

/* Why Haystack Page Styles */

/* Updated title and table rows within the "What Makes Haystack Different" section and changed the check icons to orange. */

/* Why Haystack Page Styles */
/* The CSS code was successfully updated to modify the title, table rows, and tick icons within the "What Makes Haystack Different" section. */