/* ==========================================
   INTERNAL PAGES CSS
   Extends main.css with page-specific styles
   ========================================== */

/* ==========================================
   PAGE HERO (Internal Pages)
   ========================================== */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 16px) 0 40px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(800px 500px at 15% 30%, rgba(107, 201, 205, 0.10), transparent 55%),
    radial-gradient(600px 400px at 85% 70%, rgba(237, 110, 160, 0.07), transparent 60%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-hero.centered .page-hero-content {
  margin: 0 auto;
  text-align: center;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--teal-dim);
  border: 1px solid rgba(107, 201, 205, 0.35);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 24px;
}

.page-hero-badge.pink {
  background: var(--pink-dim);
  border-color: rgba(237, 110, 160, 0.35);
  color: var(--pink);
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero h1 .highlight {
  background: linear-gradient(135deg, var(--teal), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 32px;
}

.page-hero-subtitle strong {
  color: var(--white);
}

.page-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-hero.centered .page-hero-cta {
  justify-content: center;
}

/* Page Hero with Image */
.page-hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .page-hero-split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.page-hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--white-10);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.page-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   BREADCRUMBS
   ========================================== */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.875rem;
}

.breadcrumbs a {
  color: var(--white-50);
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--teal);
}

.breadcrumbs .separator {
  color: var(--white-20);
}

.breadcrumbs .current {
  color: var(--white-70);
}

/* ==========================================
   CONTENT SECTIONS
   ========================================== */
.content-section {
  padding: 80px 0;
}

.content-section.alt {
  background: linear-gradient(180deg, var(--navy-light), var(--navy));
}

.content-section.gradient {
  background: linear-gradient(180deg, var(--navy), var(--navy-light));
}

/* Two Column Content */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  
  .content-grid.reverse {
    direction: rtl;
  }
  
  .content-grid.reverse > * {
    direction: ltr;
  }
}

.content-grid.center {
  align-items: center;
}

/* Rich Text Content */
.rich-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 20px;
}

.rich-content h3 {
  font-size: 1.375rem;
  margin-top: 32px;
  margin-bottom: 16px;
}

.rich-content p {
  font-size: 1.0625rem;
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 20px;
}

.rich-content p:last-child {
  margin-bottom: 0;
}

.rich-content strong {
  color: var(--white);
  font-weight: 600;
}

.rich-content ul,
.rich-content ol {
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
}

.rich-content li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--white-70);
  border-bottom: 1px solid var(--white-05);
}

.rich-content li:last-child {
  border-bottom: none;
}

.rich-content li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236bc9cd' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* ==========================================
   FEATURE CARDS
   ========================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--white-20);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dim);
  border: 1px solid rgba(107, 201, 205, 0.25);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.feature-icon.pink {
  background: var(--pink-dim);
  border-color: rgba(237, 110, 160, 0.25);
}

.feature-icon.pink svg {
  color: var(--pink);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--white-70);
  line-height: 1.65;
}

/* ==========================================
   INFO CARDS (Horizontal)
   ========================================== */
.info-card {
  display: flex;
  gap: 24px;
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.info-card:hover {
  border-color: var(--white-20);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dim);
  border-radius: var(--radius-sm);
}

.info-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.info-card-content h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.info-card-content p {
  font-size: 0.9375rem;
  color: var(--white-70);
  line-height: 1.6;
}

/* ==========================================
   STATS ROW
   ========================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  padding: 48px 0;
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  margin: 48px 0;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-value.pink {
  color: var(--pink);
}

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

/* ==========================================
   MEDICATION SPECIFIC
   ========================================== */
.med-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.med-info-card {
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition);
}

.med-info-card:hover {
  border-color: var(--white-20);
}

.med-info-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.med-info-card h3 svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.med-info-card p {
  font-size: 0.9375rem;
  color: var(--white-70);
  line-height: 1.7;
}

.med-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.med-info-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--white-70);
  border-bottom: 1px solid var(--white-05);
}

.med-info-card li:last-child {
  border-bottom: none;
}

.med-info-card li svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Dosing Schedule */
.dosing-timeline {
  position: relative;
  padding-left: 32px;
  margin: 32px 0;
}

.dosing-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--pink));
  border-radius: 1px;
}

.dosing-step {
  position: relative;
  padding: 20px 0;
}

.dosing-step::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 24px;
  width: 18px;
  height: 18px;
  background: var(--navy);
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.dosing-step:nth-child(even)::before {
  border-color: var(--pink);
}

.dosing-step .week {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.dosing-step:nth-child(even) .week {
  color: var(--pink);
}

.dosing-step .dose {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.dosing-step .note {
  font-size: 0.875rem;
  color: var(--white-50);
}

/* ==========================================
   COMPARISON TABLE
   ========================================== */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 0 -24px;
  padding: 0 24px 16px;
}

.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--white-05);
}

.comparison-table th {
  background: rgba(255,255,255,0.03);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white-70);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comparison-table td {
  font-size: 0.9375rem;
  color: var(--white-70);
}

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

.comparison-table .feature-name {
  font-weight: 600;
  color: var(--white);
}

.comparison-table .highlight {
  background: rgba(107, 201, 205, 0.08);
}

.comparison-table .highlight td {
  border-color: rgba(107, 201, 205, 0.15);
}

/* ==========================================
   TIER SPECIFIC
   ========================================== */
.tier-hero {
  position: relative;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.tier-badge.first-step {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--white-20);
  color: var(--white);
}

.tier-badge.select {
  background: var(--teal-dim);
  border: 1px solid rgba(107, 201, 205, 0.35);
  color: var(--teal);
}

.tier-badge.premier {
  background: var(--pink-dim);
  border: 1px solid rgba(237, 110, 160, 0.35);
  color: var(--pink);
}

.tier-badge.elite {
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.35);
  color: var(--gold);
}

.tier-badge.founders {
  background: rgba(155, 89, 182, 0.12);
  border: 1px solid rgba(155, 89, 182, 0.35);
  color: var(--purple);
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.tier-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-70);
}

.tier-price .value {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
}

.tier-price .period {
  font-size: 1.125rem;
  color: var(--white-50);
}

.tier-price.teal .value { color: var(--teal); }
.tier-price.pink .value { color: var(--pink); }
.tier-price.gold .value { color: var(--gold); }
.tier-price.purple .value { color: var(--purple); }

/* Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--white-05);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list .check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 201, 205, 0.15);
  border-radius: 50%;
  margin-top: 2px;
}

.benefits-list .check svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

.benefits-list .benefit-text {
  flex: 1;
}

.benefits-list .benefit-text strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.benefits-list .benefit-text span {
  font-size: 0.875rem;
  color: var(--white-50);
}

/* ==========================================
   LOCATION SPECIFIC
   ========================================== */
.location-hero-map {
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--white-10);
  margin-bottom: 48px;
}

.location-hero-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.9) brightness(0.95);
}

.location-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.location-detail-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
}

.location-detail-card .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dim);
  border-radius: var(--radius-sm);
}

.location-detail-card .icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.location-detail-card .info h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.location-detail-card .info p {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.5;
}

.location-detail-card .info a {
  color: var(--white);
  transition: color var(--transition);
}

.location-detail-card .info a:hover {
  color: var(--teal);
}

/* Nearby Areas */
.nearby-areas {
  margin-top: 48px;
  text-align: center;
}

.nearby-areas h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  text-align: center;
}

.nearby-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.nearby-tag {
  display: inline-block;
  padding: 10px 20px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  font-size: 0.9375rem;
  color: var(--white-70);
  text-decoration: none;
  transition: all var(--transition);
}

a.nearby-tag:hover {
  background: var(--white-10);
  border-color: var(--teal);
  color: var(--white);
}

/* ==========================================
   PAGE CTA (Bottom of pages)
   ========================================== */
.page-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(107, 201, 205, 0.10), rgba(237, 110, 160, 0.08));
  position: relative;
  overflow: hidden;
}

.page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(600px 300px at 20% 80%, rgba(107, 201, 205, 0.08), transparent 50%),
    radial-gradient(500px 250px at 80% 20%, rgba(237, 110, 160, 0.06), transparent 50%);
  pointer-events: none;
}

.page-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.page-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.page-cta p {
  font-size: 1.0625rem;
  color: var(--white-70);
  margin-bottom: 32px;
}

.page-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 768px) {
  .page-hero {
    padding: calc(var(--header-height) + 12px) 0 28px;
  }
  
  .content-section {
    padding: 60px 0;
  }
  
  .page-hero-cta {
    flex-direction: column;
  }
  
  .page-hero-cta .btn {
    width: 100%;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
  }
  
  .info-card-icon {
    margin: 0 auto;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .page-cta-buttons {
    flex-direction: column;
  }
  
  .page-cta-buttons .btn {
    width: 100%;
  }
}

/* ==========================================
   MEDICATION PAGE STYLES
   ========================================== */

/* Quiz Banner CTA */
.quiz-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
}

.quiz-banner.teal {
  background: linear-gradient(135deg, rgba(107, 201, 205, 0.1), rgba(107, 201, 205, 0.02));
  border-color: rgba(107, 201, 205, 0.25);
}

.quiz-banner.pink {
  background: linear-gradient(135deg, rgba(237, 110, 160, 0.1), rgba(237, 110, 160, 0.02));
  border-color: rgba(237, 110, 160, 0.25);
}

.quiz-banner-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.quiz-banner-content p {
  color: var(--white-60);
  font-size: 0.9375rem;
  margin: 0;
}

@media (max-width: 768px) {
  .quiz-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  
  .quiz-banner .btn {
    width: 100%;
  }
}

/* Content Two Column Layout */
.content-two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-two-col .lead {
  font-size: 1.125rem;
  color: var(--white-90);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .content-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Callout Box */
.callout-box {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--white-05);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.9375rem;
  color: var(--white-70);
}

.callout-box.pink {
  border-color: var(--pink);
}

.callout-box strong {
  color: var(--white);
}

/* Benefits Card */
.benefits-card {
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.benefits-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-10);
}

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

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.9375rem;
  color: var(--white-80);
  border-bottom: 1px solid var(--white-05);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Dosing Timeline */
.dosing-timeline-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.dosing-timeline {
  position: relative;
  padding-left: 40px;
}

.dosing-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--white-10);
}

.dosing-step {
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.dosing-step-marker {
  position: absolute;
  left: -40px;
  width: 32px;
  height: 32px;
  background: var(--white-10);
  border: 2px solid var(--white-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white-50);
  z-index: 1;
}

.dosing-step-marker.teal {
  background: var(--teal-dim);
  border-color: var(--teal);
  color: var(--teal);
}

.dosing-step-marker.pink {
  background: var(--pink-dim);
  border-color: var(--pink);
  color: var(--pink);
}

.dosing-step.active .dosing-step-marker {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
}

.dosing-step-content {
  flex: 1;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.dosing-weeks {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.dosing-dose {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.dosing-note {
  font-size: 0.875rem;
  color: var(--white-60);
}

/* Two Column Cards */
.two-col-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .two-col-cards {
    grid-template-columns: 1fr;
  }
}

.info-card-large {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--white-05);
  border-bottom: 1px solid var(--white-10);
}

.info-card-header.teal {
  background: var(--teal-dim);
}

.info-card-header.teal svg {
  color: var(--teal);
}

.info-card-header.pink {
  background: var(--pink-dim);
}

.info-card-header.pink svg {
  color: var(--pink);
}

.info-card-header h3 {
  font-size: 1.125rem;
  margin: 0;
}

.info-card-large ul {
  list-style: none;
  padding: 24px;
  margin: 0;
}

.info-card-large ul li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 0.9375rem;
  color: var(--white-70);
  border-bottom: 1px solid var(--white-05);
}

.info-card-large ul li:last-child {
  border-bottom: none;
}

.info-card-large ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--white-30);
}

/* Side Effects Grid */
.side-effects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.side-effect-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  padding: 20px;
}

.side-effect-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.side-effect-name {
  font-weight: 600;
  color: var(--white);
}

.side-effect-freq {
  font-size: 0.8125rem;
  color: var(--white-50);
  background: var(--white-05);
  padding: 4px 10px;
  border-radius: 100px;
}

.side-effect-card p {
  font-size: 0.875rem;
  color: var(--white-60);
  margin: 0;
  line-height: 1.5;
}

/* Warning Box */
.warning-box {
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.warning-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gold);
}

.warning-header strong {
  font-size: 1rem;
}

.warning-box p {
  font-size: 0.9375rem;
  color: var(--white-70);
  margin: 0;
  line-height: 1.6;
}

/* Warnings List */
.warnings-list {
  padding: 24px;
  background: var(--white-05);
  border-radius: var(--radius-lg);
}

.warnings-list h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--white-80);
}

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

.warnings-list ul li {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: 0.875rem;
  color: var(--white-60);
}

.warnings-list ul li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
}

/* Comparison Table Current Highlight */
.comparison-table th.current {
  background: var(--teal-dim);
  color: var(--teal);
  position: relative;
}

.comparison-table th .current-badge {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-top: 4px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--white-40);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--white-50);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--teal);
}

.breadcrumb span:not(:last-child) {
  color: var(--white-30);
}

/* Medication Cards Grid (4 cards) */
.med-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .med-cards-grid {
    grid-template-columns: 1fr;
  }
}

.med-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-decoration: none;
  transition: all var(--transition);
}

.med-card:hover {
  border-color: var(--white-20);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.med-card.featured {
  border-color: rgba(237, 110, 160, 0.3);
  background: linear-gradient(135deg, rgba(237, 110, 160, 0.08), rgba(237, 110, 160, 0.02));
}

.med-card.featured:hover {
  border-color: var(--pink);
}

.med-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--teal-dim);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 16px;
  align-self: flex-start;
}

.med-card-badge.pink {
  background: var(--pink-dim);
  color: var(--pink);
}

.med-card h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: var(--white);
}

.med-card .generic {
  font-size: 0.875rem;
  color: var(--white-50);
  margin-bottom: 12px;
}

.med-card .tagline {
  font-size: 0.9375rem;
  color: var(--white-70);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.med-card-stats {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--white-10);
  margin-bottom: 20px;
}

.med-card-stat {
  text-align: center;
}

.med-card-stat .value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
}

.med-card.featured .med-card-stat .value {
  color: var(--pink);
}

.med-card-stat .label {
  font-size: 0.75rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.med-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--teal);
}

.med-card.featured .med-card-link {
  color: var(--pink);
}

.med-card-link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.med-card:hover .med-card-link svg {
  transform: translateX(4px);
}

/* ==========================================
   WEIGHT LOSS PROGRAM PAGE
   ========================================== */

/* Program Hero */
.program-hero {
  padding: calc(var(--header-height) + 16px) 0 50px;
  background: radial-gradient(circle at 50% 0%, var(--navy-light), var(--navy));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.program-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 50% 30%, rgba(107, 201, 205, 0.08), transparent 60%);
  pointer-events: none;
}

.program-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  max-width: 900px;
  margin: 0 auto 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--teal), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Timeline Section */
.timeline-section {
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--teal), var(--pink), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
  position: relative;
}

.timeline-content {
  width: 45%;
  position: relative;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: var(--teal);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  margin-right: 50px;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
  margin-left: 50px;
  text-align: left;
}

.timeline-number {
  position: absolute;
  top: 32px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--teal);
  font-size: 1.25rem;
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-number {
  right: -74px;
}

.timeline-item:nth-child(even) .timeline-number {
  left: -74px;
}

.timeline-item:nth-child(n+3) .timeline-number {
  border-color: var(--pink);
  color: var(--pink);
}

.timeline-item:nth-child(n+3) .timeline-content:hover {
  border-color: var(--pink);
}

.timeline-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--white);
}

.timeline-desc {
  color: var(--white-70);
  font-size: 1rem;
  margin-bottom: 16px;
}

.timeline-list {
  list-style: none;
  display: inline-block;
}

.timeline-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--white-90);
  font-size: 0.9rem;
  justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-list li {
  justify-content: flex-start;
}

.timeline-list svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.timeline-item:nth-child(n+3) .timeline-list svg {
  color: var(--pink);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 24px;
  }
  
  .timeline-item {
    justify-content: flex-start !important;
    padding-left: 60px;
  }
  
  .timeline-content {
    width: 100%;
    margin: 0 !important;
    text-align: left !important;
  }
  
  .timeline-number {
    left: -60px !important;
    right: auto !important;
  }
  
  .timeline-list li {
    justify-content: flex-start !important;
  }
}

/* Tech Section */
.tech-section {
  background: var(--navy-lighter);
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .tech-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tech-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--white-10);
}

.tech-image img {
  width: 100%;
  height: auto;
  display: block;
}

.tech-content h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.tech-content p {
  color: var(--white-70);
  margin-bottom: 24px;
  line-height: 1.7;
}

.tech-content p strong {
  color: var(--white);
}

.tech-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--white-10);
  padding-top: 24px;
}

.tech-stat div:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}

.tech-stat div:last-child {
  font-size: 0.8rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Medications Grid (simple cards for program page) */
.meds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.meds-grid .med-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  display: block;
}

.meds-grid .med-card:hover {
  transform: translateY(-5px);
  background: var(--white-10);
  border-color: var(--teal);
}

.meds-grid .med-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.meds-grid .med-drug {
  font-size: 0.875rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.meds-grid .med-desc {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
  background: var(--navy-lighter);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--navy);
  border: 1px solid var(--white-10);
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--teal);
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.review-text {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--white-90);
  margin-bottom: 24px;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--teal-dim);
  border: 1px solid rgba(107, 201, 205, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--teal);
}

.review-info div:first-child {
  font-weight: 700;
  font-size: 0.9375rem;
}

.review-info div:last-child {
  font-size: 0.75rem;
  color: var(--white-50);
}

/* Included/Features Section */
.included-section {
  background: linear-gradient(135deg, rgba(107, 201, 205, 0.05), rgba(237, 110, 160, 0.05));
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--navy);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-dim);
  border: 1px solid rgba(107, 201, 205, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.5;
  margin: 0;
}

/* Pricing Footnote */
.pricing-footnote {
  font-size: 0.75rem;
  color: var(--white-50);
  margin-top: 12px;
  text-align: left;
}

/* ==========================================
   SINGLE RECIPE PAGE
   ========================================== */

/* Recipe Hero */
.recipe-hero {
  padding: calc(var(--header-height) + 16px) 0 40px;
  background: radial-gradient(circle at 30% 20%, var(--navy-light), var(--navy));
}

.recipe-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .recipe-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.recipe-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--white-50);
  margin-bottom: 16px;
}

.recipe-breadcrumb a:hover {
  color: var(--teal);
}

.recipe-breadcrumb svg {
  width: 14px;
  height: 14px;
}

.recipe-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.recipe-badge.teal {
  background: var(--teal-dim);
  color: var(--teal);
  border: 1px solid rgba(107, 201, 205, 0.3);
}

.recipe-badge.gold {
  background: rgba(245, 166, 35, 0.15);
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.recipe-badge.pink {
  background: var(--pink-dim);
  color: var(--pink);
  border: 1px solid rgba(237, 110, 160, 0.3);
}

.recipe-badge svg {
  width: 14px;
  height: 14px;
}

.recipe-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.1;
}

.recipe-excerpt {
  font-size: 1.125rem;
  color: var(--white-70);
  margin-bottom: 24px;
  line-height: 1.6;
}

.recipe-quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 600px) {
  .recipe-quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.recipe-stat {
  position: relative;
  background: linear-gradient(135deg, var(--white-05), rgba(255,255,255,0.02));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
  overflow: hidden;
}

.recipe-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.recipe-stat:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.recipe-stat:hover::before {
  opacity: 1;
}

.recipe-stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: var(--teal-dim);
  border: 1px solid rgba(107, 201, 205, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recipe-stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.recipe-stat:nth-child(2) .recipe-stat-icon {
  background: var(--pink-dim);
  border-color: rgba(237, 110, 160, 0.25);
}

.recipe-stat:nth-child(2) .recipe-stat-icon svg {
  color: var(--pink);
}

.recipe-stat:nth-child(2)::before {
  background: linear-gradient(90deg, var(--pink), transparent);
}

.recipe-stat:nth-child(2):hover {
  border-color: var(--pink);
}

.recipe-stat:nth-child(3) .recipe-stat-icon {
  background: rgba(245, 166, 35, 0.12);
  border-color: rgba(245, 166, 35, 0.25);
}

.recipe-stat:nth-child(3) .recipe-stat-icon svg {
  color: var(--gold);
}

.recipe-stat:nth-child(3)::before {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.recipe-stat:nth-child(3):hover {
  border-color: var(--gold);
}

.recipe-stat:nth-child(4) .recipe-stat-icon {
  background: rgba(155, 89, 182, 0.12);
  border-color: rgba(155, 89, 182, 0.25);
}

.recipe-stat:nth-child(4) .recipe-stat-icon svg {
  color: var(--purple);
}

.recipe-stat:nth-child(4)::before {
  background: linear-gradient(90deg, var(--purple), transparent);
}

.recipe-stat:nth-child(4):hover {
  border-color: var(--purple);
}

.recipe-stat .stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}

.recipe-stat .stat-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.recipe-hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--white-10);
}

.recipe-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Recipe Content */
.recipe-content {
  padding: 60px 0;
}

.recipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .recipe-grid {
    grid-template-columns: 320px 1fr;
  }
}

/* Recipe Cards */
.recipe-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.recipe-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-10);
}

.recipe-card h2 svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

/* Ingredients */
.recipe-servings-adjuster {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.servings-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.servings-btn:hover {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}

.servings-display {
  font-weight: 600;
}

.servings-count {
  color: var(--teal);
  font-size: 1.25rem;
}

.recipe-ingredients-list {
  list-style: none;
}

.recipe-ingredient {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--white-05);
  cursor: pointer;
  transition: opacity var(--transition);
}

.recipe-ingredient:last-child {
  border-bottom: none;
}

.recipe-ingredient.checked {
  opacity: 0.5;
}

.recipe-ingredient.checked .ingredient-checkbox {
  background: var(--teal);
  border-color: var(--teal);
}

.recipe-ingredient.checked .ingredient-checkbox::after {
  content: '✓';
  color: var(--navy);
  font-size: 0.75rem;
}

.ingredient-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--white-20);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.ingredient-text {
  flex: 1;
  line-height: 1.5;
}

.ingredient-amount {
  font-weight: 700;
  color: var(--teal);
}

.ingredient-unit {
  color: var(--white-70);
}

.ingredient-name {
  color: var(--white-90);
}

/* Nutrition */
.recipe-nutrition-card {
  margin-top: 24px;
}

.nutrition-subtitle {
  font-size: 0.875rem;
  color: var(--white-50);
  margin-bottom: 16px;
}

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

.nutrition-item {
  text-align: center;
  padding: 12px;
  background: var(--navy);
  border-radius: var(--radius-sm);
}

.nutrition-item.highlight {
  background: var(--teal-dim);
  border: 1px solid rgba(107, 201, 205, 0.2);
}

.nutrition-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.nutrition-item.highlight .nutrition-value {
  color: var(--teal);
}

.nutrition-label {
  font-size: 0.75rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Time Breakdown */
.recipe-time-breakdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.time-item {
  text-align: center;
}

.time-label {
  display: block;
  font-size: 0.75rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.time-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
}

.time-divider {
  width: 1px;
  height: 40px;
  background: var(--white-10);
}

/* Instructions */
.recipe-instructions-card {
  margin-bottom: 24px;
}

.recipe-instructions-list {
  list-style: none;
  counter-reset: step;
}

.recipe-step {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--white-05);
}

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

.step-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--teal), #5ab8bc);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text {
  flex: 1;
  line-height: 1.6;
  color: var(--white-90);
  margin: 0;
}

/* Tips Card */
.recipe-tips-card {
  background: linear-gradient(135deg, rgba(107, 201, 205, 0.1), rgba(107, 201, 205, 0.05));
  border-color: rgba(107, 201, 205, 0.2);
  margin-bottom: 24px;
}

.recipe-tips-card h2 {
  border-bottom-color: rgba(107, 201, 205, 0.2);
}

.recipe-tips-card p {
  color: var(--white-90);
  line-height: 1.7;
  margin: 0;
}

/* Recipe Actions */
.recipe-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.recipe-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  color: var(--white-70);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.recipe-action-btn:hover {
  background: var(--white-10);
  border-color: var(--teal);
  color: var(--white);
}

.recipe-action-btn svg {
  width: 18px;
  height: 18px;
}

/* Related Recipes */
.recipe-related {
  padding: 60px 0;
  background: var(--navy-lighter);
}

.recipe-related .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.recipe-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.recipe-related-card {
  background: var(--navy);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.recipe-related-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
}

.related-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.recipe-related-card:hover .related-image img {
  transform: scale(1.05);
}

.related-content {
  padding: 20px;
}

.related-content h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--white);
}

.related-meta {
  display: flex;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--white-50);
}

.related-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Print Styles */
@media print {
  .recipe-hero {
    padding-top: 20px;
    background: white !important;
    color: black !important;
  }
  
  .recipe-breadcrumb,
  .recipe-badge,
  .recipe-actions,
  .recipe-related,
  .cta-section,
  .header,
  .footer,
  .floating-cta {
    display: none !important;
  }
  
  .recipe-card {
    background: white !important;
    border: 1px solid #ddd !important;
    color: black !important;
  }
  
  .recipe-title,
  .recipe-card h2,
  .step-number,
  .ingredient-amount,
  .nutrition-value,
  .time-value {
    color: black !important;
  }
}

/* ==========================================
   TELEHEALTH HERO — two-column with stat card
   ========================================== */
.th-hero .container {
  padding-top: 20px;
  padding-bottom: 40px;
}

.th-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

@media (min-width: 900px) {
  .th-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
}

.th-hero-text .section-badge {
  margin-bottom: 20px;
}

.th-hero-text .section-badge svg {
  width: 14px;
  height: 14px;
}

.th-hero-card .med-hero-card {
  margin: 0;
}

.th-hero-card .med-hero-stat-row {
  margin-bottom: 16px;
}

/* Scale callout — 2-row block in stat card */
.th-scale-block {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(107,201,205,0.25);
}

.th-scale-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(107,201,205,0.18), rgba(107,201,205,0.08));
}

.th-scale-free {
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--teal), #8fd9dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.th-scale-price {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.th-scale-price span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white-50);
  margin-left: 2px;
}

.th-scale-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(107,201,205,0.06);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white-70);
  letter-spacing: 0.06em;
}

.th-scale-bottom svg {
  color: var(--teal);
  flex-shrink: 0;
}

@media (max-width: 899px) {
  .th-hero { min-height: auto; }
  .th-hero-card { max-width: 480px; }
}

/* ==========================================
   INBODY H30 SHOWCASE
   Premium product spotlight — dark, editorial
   ========================================== */
.inbody-showcase {
  position: relative;
  padding: 60px 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(107,201,205,0.06), transparent),
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(237,110,160,0.04), transparent),
    linear-gradient(180deg, var(--navy) 0%, #0a1628 100%);
  overflow: hidden;
}

/* Subtle top/bottom divider lines */
.inbody-showcase::before,
.inbody-showcase::after {
  content: '';
  position: absolute;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--white-10), transparent);
}
.inbody-showcase::before { top: 0; }
.inbody-showcase::after  { bottom: 0; }

.inbody-showcase-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-pad, 24px);
}

@media (min-width: 900px) {
  .inbody-showcase-inner {
    grid-template-columns: 0.45fr 0.55fr;
    gap: 64px;
  }
}

/* ---------- Image ---------- */
.inbody-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(107,201,205,0.08), transparent 70%),
    linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--white-08);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(107,201,205,0.06),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.inbody-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: normal;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.inbody-img-frame:hover img {
  transform: scale(1.03);
}

/* FREE badge floating on image */
.inbody-img-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 22px;
  background: rgba(10,22,40,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(107,201,205,0.4);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.inbody-badge-free {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--teal), #8fd9dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.inbody-badge-val {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white-70);
  letter-spacing: 0.02em;
}

.inbody-badge-sub {
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Content ---------- */
.inbody-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 16px 0 20px;
  letter-spacing: -0.02em;
}

.inbody-content h2 .hl-grad {
  background: linear-gradient(135deg, var(--teal), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.inbody-lead {
  font-size: 1.0625rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 36px;
}

.inbody-lead strong {
  color: var(--teal);
  font-weight: 700;
}

/* Feature rows */
.inbody-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.inbody-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.inbody-feat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(107,201,205,0.1);
  border: 1px solid rgba(107,201,205,0.2);
  color: var(--teal);
}

.inbody-feat-icon.pink {
  background: rgba(237,110,160,0.1);
  border-color: rgba(237,110,160,0.2);
  color: var(--pink);
}

.inbody-feat-icon svg {
  width: 20px;
  height: 20px;
}

.inbody-feat strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.inbody-feat span {
  font-size: 0.8125rem;
  color: var(--white-50);
  line-height: 1.5;
}

/* Bottom CTA */
.inbody-bottom {
  margin-top: 8px;
}

.inbody-price-lockup {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.inbody-price-was {
  font-size: 0.9375rem;
  color: var(--white-40);
  text-decoration: line-through;
  font-weight: 500;
}

.inbody-price-now {
  font-size: 1.5rem;
  color: var(--teal);
  font-weight: 700;
  line-height: 1;
}

.inbody-price-now strong {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--teal), #8fd9dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mobile tweaks */
@media (max-width: 899px) {
  .inbody-showcase { padding: 48px 0; }
  .inbody-img-frame { max-width: 400px; margin: 0 auto; }
  .inbody-content { text-align: left; }
}

@media (max-width: 480px) {
  .inbody-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================
   VIRTUAL PRICING — 3-step layout
   ========================================== */

/* Step labels */
.vp-step {
  text-align: center;
  margin: 40px auto 20px;
  max-width: 800px;
}

.vp-step:first-of-type { margin-top: 0; }

.vp-step-label {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: rgba(107,201,205,0.1);
  border: 1px solid rgba(107,201,205,0.2);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 8px;
}

.vp-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--white);
}

/* ── Initial Appointment Options ── */
.vp-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 8px;
}

.vp-or {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white-30);
  text-transform: lowercase;
  flex-shrink: 0;
}

.vp-option {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.vp-option:hover {
  border-color: var(--white-20);
  transform: translateY(-2px);
}

.vp-option--featured {
  border-color: rgba(107,201,205,0.3);
  background: rgba(107,201,205,0.04);
}

.vp-option--featured:hover {
  border-color: var(--teal);
}

.vp-option-badge {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 12px;
}

.vp-option .vp-option-badge {
  color: var(--white-50);
}

.vp-option--featured .vp-option-badge {
  color: var(--teal);
}

.vp-option-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 4px;
}

.vp-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white-50);
  margin-right: 2px;
}

.vp-option-price .vp-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.vp-option--featured .vp-option-price .vp-amount {
  color: var(--teal);
}

.vp-option-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.vp-option-commit {
  font-size: 0.8125rem;
  color: var(--white-50);
}

/* ── Monthly Membership ── */
.vp-membership {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-10);
  border-radius: 20px;
}

.vp-membership-price {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

.vp-membership-price .vp-currency {
  font-size: 1.5rem;
}

.vp-membership-price .vp-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.vp-per {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white-40);
  margin-left: 2px;
}

.vp-membership-includes h4 {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-40);
  margin: 0 0 12px;
}

.vp-membership-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vp-membership-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--white-70);
  line-height: 1.5;
}

.vp-membership-includes li svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.vp-membership-includes li strong {
  color: var(--teal);
  font-weight: 700;
}

/* ── Medication Pricing ── */
.vp-meds {
  display: flex;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.vp-med {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.vp-med:hover {
  border-color: var(--white-20);
  transform: translateY(-2px);
}

.vp-med-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.vp-med-name span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white-40);
  margin-top: 2px;
}

.vp-med-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 8px;
}

.vp-med-price.teal { color: var(--teal); }
.vp-med-price.pink { color: var(--pink); }

.vp-med-price span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white-40);
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .vp-options {
    flex-direction: column;
    gap: 12px;
  }
  .vp-or { display: none; }
  .vp-option { max-width: 100%; }

  .vp-membership {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .vp-membership-price { justify-content: center; }

  .vp-meds {
    flex-direction: column;
  }
}

/* ==========================================
   HERO BMI CALCULATOR
   ========================================== */
.bmi-calc {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-10);
  border-radius: 24px;
  padding: 28px 28px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bmi-calc-head {
  text-align: center;
  margin-bottom: 24px;
}

.bmi-calc-head h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.bmi-calc-head p {
  font-size: 0.8125rem;
  color: var(--white-40);
  margin: 0;
}

/* Slider groups */
.bmi-slider-group {
  margin-bottom: 20px;
}

.bmi-slider-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.bmi-slider-row label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bmi-slider-val {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
}

/* Range slider */
.bmi-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--teal) 0%, var(--teal) var(--pct, 50%), var(--white-10) var(--pct, 50%), var(--white-10) 100%);
  outline: none;
  cursor: pointer;
}

.bmi-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4), 0 0 0 1px rgba(107,201,205,0.3);
  cursor: grab;
  transition: box-shadow 0.2s;
}

.bmi-range::-webkit-slider-thumb:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 0 0 3px rgba(107,201,205,0.2);
}

.bmi-range::-webkit-slider-thumb:active {
  cursor: grabbing;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5), 0 0 0 4px rgba(107,201,205,0.25);
}

.bmi-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  cursor: grab;
}

.bmi-slider-minmax {
  display: flex;
  justify-content: space-between;
  font-size: 0.625rem;
  color: var(--white-30);
  margin-top: 4px;
}

/* BMI Result */
.bmi-result {
  text-align: center;
  padding: 20px 0 16px;
  margin-bottom: 16px;
  border-top: 1px solid var(--white-08);
}

.bmi-result-number {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  color: var(--teal);
  transition: color 0.3s;
}

.bmi-result-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin-bottom: 16px;
  transition: color 0.3s;
}

/* Color states */
.bmi-under .bmi-result-number,
.bmi-under .bmi-result-label { color: var(--white-50); }
.bmi-normal .bmi-result-number,
.bmi-normal .bmi-result-label { color: #4ecdc4; }
.bmi-over .bmi-result-number,
.bmi-over .bmi-result-label { color: #f0ad4e; }
.bmi-obese .bmi-result-number,
.bmi-obese .bmi-result-label { color: var(--pink); }
.bmi-severe .bmi-result-number,
.bmi-severe .bmi-result-label { color: #e74c3c; }

/* Result bar */
.bmi-result-bar {
  max-width: 280px;
  margin: 0 auto 12px;
}

.bmi-bar-track {
  position: relative;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right,
    #4ecdc4 0%,
    #4ecdc4 23%,
    #f0ad4e 23%,
    #f0ad4e 43%,
    var(--pink) 43%,
    var(--pink) 77%,
    #e74c3c 77%,
    #e74c3c 100%
  );
  overflow: visible;
}

.bmi-bar-fill {
  display: none;
}

.bmi-bar-marker {
  position: absolute;
  top: 50%;
  width: 4px;
  height: 18px;
  background: var(--white);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 6px rgba(0,0,0,0.5);
  transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bmi-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.5625rem;
  color: var(--white-30);
  margin-top: 6px;
  padding: 0 2px;
}

.bmi-result-msg {
  font-size: 0.8125rem;
  color: var(--white-60);
  font-weight: 600;
}

.bmi-obese .bmi-result-msg,
.bmi-severe .bmi-result-msg,
.bmi-over .bmi-result-msg {
  color: var(--teal);
}

.bmi-cta {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

/* ==========================================
   TRUST BAR — below hero
   ========================================== */
.th-trust-bar {
  background: linear-gradient(135deg, rgba(107,201,205,0.08), rgba(237,110,160,0.04));
  border-top: 1px solid var(--white-06);
  border-bottom: 1px solid var(--white-06);
  padding: 20px 0;
}

.th-trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.th-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.th-trust-val {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.th-trust-val.teal { color: var(--teal); }

.th-trust-free {
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--teal), #8fd9dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.th-trust-lbl {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .th-trust-items {
    gap: 24px;
  }
  .th-trust-val,
  .th-trust-free {
    font-size: 1.125rem;
  }
  .bmi-calc {
    padding: 24px 20px 20px;
  }
  .bmi-result-number {
    font-size: 2.25rem;
  }
}

/* ==========================================
   BREADCRUMB NAV
   ========================================== */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  margin-bottom: 20px;
}
.breadcrumb-nav a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb-nav a:hover { text-decoration: underline; }
.breadcrumb-nav span { color: var(--white-40); }
.bc-sep { color: var(--white-20); font-size: 0.75rem; }

/* ==========================================
   COUNTY PAGE — City Grid
   ========================================== */
.county-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.county-city-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-10);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.county-city-card:hover {
  border-color: var(--teal);
  background: rgba(107,201,205,0.04);
  transform: translateY(-2px);
}

.county-city-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  flex: 1;
}

.county-city-pop {
  font-size: 0.6875rem;
  color: var(--white-40);
  white-space: nowrap;
}

.county-city-arrow {
  width: 16px;
  height: 16px;
  color: var(--white-20);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}

.county-city-card:hover .county-city-arrow {
  color: var(--teal);
  transform: translateX(3px);
}

/* ==========================================
   REGION PAGE — County Grid
   ========================================== */
.region-county-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.region-county-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}

.region-county-card:hover {
  border-color: var(--teal);
  background: rgba(107,201,205,0.03);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.region-county-head h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
}

.region-county-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.region-county-meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--white-40);
}

.region-county-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.region-county-city {
  padding: 4px 10px;
  background: var(--white-05);
  border: 1px solid var(--white-08);
  border-radius: 100px;
  font-size: 0.6875rem;
  color: var(--white-50);
}

.region-county-more {
  padding: 4px 10px;
  font-size: 0.6875rem;
  color: var(--teal);
  font-weight: 600;
}

.region-county-arrow {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 18px;
  height: 18px;
  color: var(--white-15);
  transition: color 0.2s, transform 0.2s;
}

.region-county-card:hover .region-county-arrow {
  color: var(--teal);
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .county-city-grid { grid-template-columns: 1fr; }
  .region-county-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   FUNNEL-STYLE MED CARDS (inline on city pages)
   ========================================== */
.vc-med-grid-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
}

.vc-med-inline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-08);
  border-radius: 22px;
  padding: 28px 18px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}

.vc-med-inline:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(107,201,205,0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.vc-med-inline-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.5625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.vc-med-inline-name {
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2px;
}

.vc-med-inline-generic {
  font-size: 0.6875rem;
  color: var(--white-35);
  font-weight: 600;
  margin-bottom: 16px;
}

.vc-med-inline-price {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.vc-med-inline-per {
  font-size: 0.6875rem;
  color: var(--white-25);
  font-weight: 600;
}

.vc-med-inline-loss {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--white-06);
  width: 100%;
}

.vc-med-inline-loss-lbl {
  display: block;
  font-size: 0.8125rem;
  color: var(--white-50);
}

.vc-med-inline-loss-val {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .vc-med-grid-inline {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}
