/* ============================================
   Sunstone Direct Primary Care
   Brand Colors: Navy #121D2D, Gold #D98900
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #121D2D;
  --navy-light: #1a2a40;
  --navy-lighter: #243550;
  --gold: #D98900;
  --gold-dark: #CE7C00;
  --gold-deeper: #A95500;
  --cream: #FDFBF7;
  --cream-dark: #F5F0E8;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-light: #6b7280;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-deeper); }

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--navy); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: var(--navy); }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar a { color: var(--gold); font-weight: 600; }
.top-bar a:hover { color: #f0a500; }
.top-bar-links { display: flex; gap: 1rem; }
.top-bar-links a { color: rgba(255,255,255,0.85); font-weight: 500; }
.top-bar-links a:hover { color: var(--gold); }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo img { height: 45px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-text span { color: var(--gold); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
  padding: 0.5rem 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--navy); }
.main-nav a.active { color: var(--navy); font-weight: 600; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 6px;
  font-weight: 600 !important;
  margin-left: 0.5rem;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== CONTAINERS ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* ===== SECTIONS ===== */
section { padding: 5rem 0; }
.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 1rem auto 0;
  line-height: 1.7;
}
.text-center { text-align: center; }

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,137,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 520px;
}
.hero-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

.hero-badges {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-badge {
  text-align: center;
}
.hero-badge .badge-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
}
.hero-badge .badge-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); color: var(--white); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== DPC SECTION ===== */
.dpc-section { background: var(--cream); }
.dpc-intro { max-width: 740px; margin: 0 auto 3rem; text-align: center; }
.dpc-intro p { color: var(--text-secondary); font-size: 1.05rem; margin-top: 1rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.feature-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--gray-200);
}
.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.feature-card p { font-size: 0.9rem; color: var(--text-light); }

/* Comparison Table */
.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
}
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th {
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
}
.comparison-table th:first-child { background: var(--gray-100); color: var(--text-light); text-align: left; }
.comparison-table th:nth-child(2) { background: var(--gray-100); color: var(--text-secondary); }
.comparison-table th:nth-child(3) { background: var(--navy); color: var(--gold); }
.comparison-table td {
  padding: 0.9rem 1.5rem;
  border-top: 1px solid var(--gray-100);
  font-size: 0.95rem;
}
.comparison-table td:first-child { color: var(--text-light); font-weight: 500; }
.comparison-table td:nth-child(2) { text-align: center; color: var(--text-light); }
.comparison-table td:nth-child(3) { text-align: center; color: var(--navy); font-weight: 600; background: rgba(217,137,0,0.04); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 2.25rem 1.75rem;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-color: var(--gold);
}
.service-card .service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.service-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1rem; }
.service-card .learn-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold-dark);
}

/* ===== PRODUCT SHOP ===== */
.shop-section { background: var(--cream); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.product-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.product-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1rem; }
.product-card a {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gold-dark);
}

/* ===== MEMBERSHIP PRICING ===== */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.pricing-card {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  background: var(--white);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(217,137,0,0.1);
  position: relative;
}
.pricing-card h3 { margin-bottom: 0.25rem; }
.pricing-card .price-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--navy);
  display: block;
  margin-bottom: 0.25rem;
}
.pricing-card .price-period {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  display: block;
}
.pricing-card ul { list-style: none; margin-bottom: 2rem; }
.pricing-card ul li {
  padding: 0.4rem 0;
  font-size: 0.93rem;
  color: var(--text-secondary);
  padding-left: 1.6rem;
  position: relative;
}
.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Portal card */
.portal-card {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2.5rem 2rem;
}
.portal-card h3 { margin-bottom: 0.75rem; }
.portal-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.5rem; }
.portal-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.portal-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-number {
  background: var(--navy);
  color: var(--gold);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.portal-step h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.portal-step p { font-size: 0.88rem; color: var(--text-light); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 2rem;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.author-info .author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.author-info .author-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-brand .footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem !important;
}
.footer-contact li span { font-size: 0.88rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== PAGE HERO (Internal pages) ===== */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* ===== SERVICE DETAIL (Services page) ===== */
.service-detail {
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-detail:nth-child(even) { background: var(--cream); }
.service-detail-inner {
  max-width: 900px;
  margin: 0 auto;
}
.service-detail .service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.service-detail .service-header .icon { font-size: 2rem; }
.service-detail .service-header h3 { font-size: 1.5rem; margin: 0; }
.service-detail p { color: var(--text-secondary); font-size: 1rem; margin-bottom: 1rem; }
.service-detail ul { list-style: none; columns: 2; gap: 1rem; }
.service-detail ul li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
}
.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== FAA PAGE ===== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.cert-card .cert-class {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.cert-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.cert-card p { font-size: 0.85rem; color: var(--text-light); }

.appt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 2rem auto;
}
.appt-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 2rem;
}
.appt-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.appt-card ul { list-style: none; }
.appt-card ul li {
  padding: 0.4rem 0;
  font-size: 0.93rem;
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
}
.appt-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.basicmed-box {
  background: var(--cream);
  border-radius: 12px;
  padding: 3rem;
  max-width: 900px;
  margin: 3rem auto;
}
.basicmed-box h3 { margin-bottom: 1rem; }
.basicmed-box p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.basicmed-specs {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.basicmed-specs .spec {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  flex: 1;
  min-width: 140px;
  text-align: center;
}
.spec strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.spec span { font-size: 0.9rem; color: var(--text-secondary); }

.airports-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.airport-badge {
  background: var(--navy);
  color: var(--gold);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}
.airport-badge span {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

/* ===== FIRM & FADE PAGE ===== */
.ff-hero {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.ff-products {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2.5rem 0;
}
.ff-product {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 2rem 2.5rem;
  text-align: center;
  min-width: 220px;
}
.ff-product h4 {
  font-family: var(--font-body);
  color: var(--gold);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.ff-product .ff-subtitle { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 0.25rem; }
.ff-product .ff-strength { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
.step-card {
  text-align: center;
  padding: 2rem;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}
.step-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.step-card p { font-size: 0.93rem; color: var(--text-secondary); }

/* FAQ */
.faq-list {
  max-width: 780px;
  margin: 2rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}
.faq-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.faq-item p { color: var(--text-secondary); font-size: 0.95rem; }

/* ===== EMPLOYERS PAGE ===== */
.stats-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}
.stat-card {
  text-align: center;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  min-width: 160px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

.employer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.emp-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 2rem;
}
.emp-card .emp-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.emp-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.emp-card p { font-size: 0.93rem; color: var(--text-secondary); }

.outcomes-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}
.outcome-card {
  text-align: center;
  padding: 1.5rem 2rem;
}
.outcome-value {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
}
.outcome-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.hsa-box {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 700px;
  margin: 2rem auto;
}
.hsa-box .hsa-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.25rem; }
.hsa-box h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.hsa-box p { font-size: 0.93rem; color: var(--text-secondary); }

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  align-items: start;
}
.about-photo {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.about-photo img { width: 100%; height: auto; }
.about-credentials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
}
.credential {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.about-text p { color: var(--text-secondary); margin-bottom: 1rem; font-size: 1.02rem; }

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.phil-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
}
.phil-card .phil-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.phil-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.phil-card p { font-size: 0.9rem; color: var(--text-light); }

.strong-medicine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
.strong-medicine img {
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* ===== CONTACT PAGE ===== */
.contact-hero-image {
  border-radius: 10px;
  overflow: hidden;
  max-width: 800px;
  margin: 2rem auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.contact-hero-image img { width: 100%; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.contact-card .contact-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.contact-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.contact-card p { font-size: 0.88rem; color: var(--text-secondary); }
.contact-card a { font-weight: 600; }

.contact-form-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--cream);
  border-radius: 12px;
}
.contact-form-section h3 { margin-bottom: 0.5rem; }
.contact-form-section > p { color: var(--text-secondary); margin-bottom: 2rem; font-size: 0.95rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217,137,0,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ===== MAP ===== */
.map-container {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 2rem;
  border: 1px solid var(--gray-200);
}
.map-container iframe { width: 100%; height: 350px; border: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-image { max-width: 600px; margin: 0 auto; }
  .hero-badges { justify-content: center; }
  .btn-group { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .about-intro .about-photo { max-width: 350px; margin: 0 auto; }
  .strong-medicine { grid-template-columns: 1fr; }
  .strong-medicine img { max-width: 600px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .employer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .top-bar { display: none; }
  .site-header { height: 65px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.75rem 1rem; width: 100%; }
  .nav-cta { margin-left: 0 !important; margin-top: 0.5rem; text-align: center; }
  .menu-toggle { display: block; }
  .hero { padding: 3rem 0 4rem; }
  .hero-badges { gap: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .service-detail ul { columns: 1; }
  .steps-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .appt-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-section { padding: 2rem 1.5rem; }
  .ff-products { flex-direction: column; align-items: center; }
  .stats-row { flex-direction: column; align-items: center; }
  .basicmed-specs { flex-direction: column; }
}
