/* =============================================
   MOTOR CITY COMPOUNDING — MAIN STYLESHEET
   Brand colors from logo:
   Navy:  #1B2E5E
   Teal:  #3AAB96
   Gray:  #6B7A99
   Light: #F4F7FB
   ============================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B2E5E;
  --navy-dark:  #111E3F;
  --navy-light: #263D7A;
  --teal:       #3AAB96;
  --teal-dark:  #2A8A78;
  --teal-light: #4FC4AE;
  --gray:       #6B7A99;
  --gray-light: #A8B4C8;
  --light-bg:   #F4F7FB;
  --white:      #FFFFFF;
  --text-dark:  #1A1F36;
  --text-mid:   #3D4566;
  --text-light: #6B7A99;
  --border:     #E2E8F0;
  --shadow-sm:  0 1px 3px rgba(27,46,94,.08), 0 1px 2px rgba(27,46,94,.05);
  --shadow-md:  0 4px 16px rgba(27,46,94,.12);
  --shadow-lg:  0 12px 40px rgba(27,46,94,.16);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: .25s ease;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head:  'Montserrat', 'Inter', sans-serif;
  --max-w:      1200px;
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-light-gray { color: var(--gray-light); }
.bg-light { background: var(--light-bg); }
.bg-dark { background: var(--navy-dark); }
.bg-gradient { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1E3A6E 100%); }
.mt-md { margin-top: 16px; }
.mt-xl { margin-top: 48px; }
.ml-md { margin-left: 12px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(58,171,150,.35);
}

.btn-primary-teal {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
}
.btn-primary-teal:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(58,171,150,.4);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

em { font-style: normal; color: var(--teal); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.eyebrow-teal { color: var(--teal-light); }
.eyebrow-white { color: rgba(255,255,255,.7); }

.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-intro {
  font-size: 1.125rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: .875rem;
  font-weight: 500;
}
.announcement-bar a { color: var(--white); font-weight: 700; text-decoration: underline; }
.announcement-bar a:hover { opacity: .8; color: var(--white); }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo-link { flex-shrink: 0; }
.logo { height: 52px; width: auto; }

.primary-nav { flex: 1; }
.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.primary-nav > ul > li { position: relative; }
.primary-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: .85rem;
  white-space: nowrap;
  transition: all var(--transition);
}
.primary-nav > ul > li > a:hover {
  color: var(--navy);
  background: var(--light-bg);
}
.chevron { font-size: .7rem; transition: transform var(--transition); }
.has-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 100;
}
.has-dropdown:hover .dropdown { display: block; animation: fadeDown .2s ease; }
.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-mid);
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.dropdown li a:hover { color: var(--teal); background: var(--light-bg); padding-left: 26px; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: .875rem;
  transition: color var(--transition);
}
.phone-link:hover { color: var(--teal); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(17,30,63,.92) 0%, rgba(27,46,94,.85) 50%, rgba(30,58,110,.75) 100%),
    url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?w=1600&q=80') center/cover no-repeat;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(58,171,150,.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 80px 24px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(58,171,150,.2);
  border: 1px solid rgba(58,171,150,.4);
  color: var(--teal-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
}
.trust-badge svg { color: var(--teal-light); flex-shrink: 0; width: 18px; height: 18px; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  margin-top: -4px;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===== BENEFITS BAR ===== */
.benefits-bar {
  background: var(--white);
  padding: 0;
  margin-top: -2px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 4px solid var(--teal);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}
.benefit-card {
  padding: 40px 36px;
  background: var(--white);
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.benefit-card:last-child { border-right: none; }
.benefit-card:hover { background: var(--light-bg); }
.benefit-card--accent { background: var(--navy); }
.benefit-card--accent:hover { background: var(--navy-light); }
.benefit-card--accent h3,
.benefit-card--accent p,
.benefit-card--accent strong { color: var(--white); }
.benefit-card--accent .benefit-icon { background: rgba(58,171,150,.2); color: var(--teal-light); }

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-card h3 { font-size: 1.125rem; margin-bottom: 10px; color: var(--navy); }
.benefit-card p { color: var(--text-mid); font-size: .9375rem; line-height: 1.6; }

/* ===== HOW WE WORK ===== */
.section-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-layout .section-text h2 { margin-bottom: 20px; }
.section-layout .section-text p { color: var(--text-mid); margin-bottom: 16px; font-size: 1.0625rem; }

.image-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.image-placeholder--pharmacy {
  background:
    linear-gradient(135deg, rgba(27,46,94,.7) 0%, rgba(27,46,94,.4) 100%),
    url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=900&q=80') center/cover no-repeat;
  box-shadow: var(--shadow-lg);
}
.image-overlay-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.image-overlay-text span:first-child {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
}
.image-overlay-text span:last-child {
  color: var(--teal-light);
  font-size: .875rem;
  font-weight: 500;
}

.stat-row {
  display: flex;
  gap: 32px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-label { font-size: .8125rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

/* ===== COMPOUNDING CARDS ===== */
.compounding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.compounding-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}
.compounding-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.compounding-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(58,171,150,.12), rgba(58,171,150,.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 18px;
}
.compounding-card__icon svg { width: 22px; height: 22px; }
.compounding-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 1.0625rem; }
.compounding-card p { color: var(--text-mid); font-size: .9rem; line-height: 1.6; }

/* ===== AUDIENCE SECTION ===== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.audience-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 520px;
}
.audience-card--patients {
  background:
    linear-gradient(160deg, rgba(27,46,94,.88) 0%, rgba(17,30,63,.95) 100%),
    url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=800&q=80') center/cover no-repeat;
}
.audience-card--providers {
  background:
    linear-gradient(160deg, rgba(30,60,80,.9) 0%, rgba(17,45,60,.97) 100%),
    url('https://images.unsplash.com/photo-1612349317150-e413f6a5b16d?w=800&q=80') center/cover no-repeat;
}
.audience-card__inner {
  padding: 52px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.audience-card .audience-eyebrow {
  display: inline-block;
  background: rgba(58,171,150,.25);
  border: 1px solid rgba(58,171,150,.4);
  color: var(--teal-light);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}
.audience-card h2 { color: var(--white); margin-bottom: 16px; font-size: 1.75rem; }
.audience-card p { color: rgba(255,255,255,.75); margin-bottom: 28px; line-height: 1.7; }

.check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: .9375rem;
}
.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== THERAPY AREAS ===== */
.therapy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.therapy-pill {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .9375rem;
  font-weight: 600;
  cursor: default;
  transition: all var(--transition);
}
.therapy-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== PARTNERSHIP ===== */
.partnership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.partnership-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.partnership-card:hover {
  background: rgba(58,171,150,.12);
  border-color: rgba(58,171,150,.3);
  transform: translateY(-4px);
}
.partnership-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(58,171,150,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  margin: 0 auto 20px;
}
.partnership-icon svg { width: 26px; height: 26px; }
.partnership-card h3 { color: var(--white); font-size: 1.0625rem; margin-bottom: 12px; }
.partnership-card p { color: var(--gray-light); font-size: .9rem; line-height: 1.6; }

/* ===== FAQ ===== */
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--teal); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition);
  gap: 16px;
}
.faq-question:hover { background: var(--light-bg); }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-mid);
  font-size: .9375rem;
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 20px; }
.contact-info > p { color: var(--gray-light); margin-bottom: 40px; font-size: 1.0625rem; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
}
.contact-detail svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }

.hours-block { background: rgba(255,255,255,.06); border-radius: var(--radius); padding: 24px; }
.hours-block h4 { color: var(--white); margin-bottom: 16px; font-size: .9375rem; text-transform: uppercase; letter-spacing: .08em; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--gray-light);
  font-size: .9rem;
}
.hours-row:last-child { border-bottom: none; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { color: var(--navy); margin-bottom: 28px; font-size: 1.375rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--text-dark); }
.required { color: var(--teal); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: .9375rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(58,171,150,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-disclaimer { font-size: .8rem; color: var(--text-light); text-align: center; margin-top: 12px; line-height: 1.5; }
.form-disclaimer a { color: var(--teal); }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-dark); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { height: 48px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { color: var(--gray-light); font-size: .9375rem; line-height: 1.7; margin-bottom: 28px; max-width: 280px; }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: all var(--transition);
}
.social-link:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.social-link svg { width: 16px; height: 16px; }

.footer-nav h4 { color: var(--white); font-size: .875rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav ul li a { color: var(--gray-light); font-size: .9rem; transition: color var(--transition); }
.footer-nav ul li a:hover { color: var(--teal); }

.footer-bottom {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .8125rem; }
.footer-disclaimer { font-style: italic; }

/* ===== MOBILE NAV ===== */
@media (max-width: 1024px) {
  .partnership-grid { grid-template-columns: repeat(2, 1fr); }
  .compounding-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .section-layout,
  .audience-grid,
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }

  .primary-nav,
  .nav-actions .btn { display: none; }

  .hamburger { display: flex; }
  .phone-link { display: none; }

  .nav-container { gap: 16px; }

  .primary-nav.open {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    overflow-y: auto;
    padding: 24px;
    z-index: 999;
    border-top: 1px solid var(--border);
  }
  .primary-nav.open > ul { flex-direction: column; gap: 0; }
  .primary-nav.open > ul > li > a { padding: 14px 0; border-bottom: 1px solid var(--border); border-radius: 0; font-size: 1rem; }
  .dropdown { display: none !important; }

  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { border-right: none; border-bottom: 1px solid var(--border); }
  .benefit-card:last-child { border-bottom: none; }

  .hero { min-height: 80vh; }
  .hero-cta-group { flex-direction: column; }
  .hero-trust-badges { flex-direction: column; gap: 12px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .section-pad { padding: 64px 0; }
  .compounding-grid { grid-template-columns: 1fr; }
  .partnership-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-row { gap: 20px; }
  .audience-card__inner { padding: 36px 28px; }
  .contact-form-wrap { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
}
