/* ============================================================
   AVEXSA HEALTH SCIENCES — CONSOLIDATED STYLESHEET
   Covers: index, about, mbvitals, contact, privacy, terms
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── CSS VARIABLES ── */
:root {
  /* Primary Palette (index, about, mbvitals) */
  --primary:        #1A365D;
  --primary-light:  #2B4C7E;
  --accent:         #2EA97D;
  --accent-hover:   #248864;

  /* Contact-Page Palette */
  --navy:           #002B49;
  --teal:           #00857A;

  /* MB Vitals Palette */
  --mbv:            #1a7a6e;
  --mbv-dark:       #0a2a26;
  --mbv-mid:        #0d3d35;
  --mbv-acc:        #4ecdc4;

  /* Neutral / Utility */
  --white:          #ffffff;
  --cream:          #F8F9FA;
  --gray:           #f8fafc;
  --gray-100:       #F1F5F9;
  --gray-200:       #e2e8f0;
  --gray-500:       #64748b;
  --gray-700:       #334155;
  --gray-900:       #0f172a;

  /* Typography */
  --font-h:   'Cormorant Garamond', serif;
  --font-d:   'Cormorant Garamond', serif;
  --font-b:   'DM Sans', sans-serif;

  /* Layout */
  --nav-h:    80px;
  --ease:     0.3s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-b);
  color: var(--gray-900);
  line-height: 1.6;
  background-color: var(--gray);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a   { text-decoration: none; color: inherit; transition: color var(--ease); }
ul  { list-style: none; }
img { max-width: 100%; display: block; }
em  { font-style: italic; }

/* ============================================================
   TYPOGRAPHY & UTILITIES
   ============================================================ */

.h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary);
}
.h1 em { font-style: italic; color: var(--accent); }

.label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-700);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.body-txt {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: 24px;
  max-width: 600px;
}

.divider {
  width: 50px;
  height: 2px;
  background-color: var(--accent);
  margin-bottom: 24px;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 5%;
}

/* Section backgrounds */
.bg-primary { background-color: var(--primary); }
.bg-gray    { background-color: var(--gray); }
.pt-nav     { padding-top: calc(var(--nav-h) + 40px); }

/* ============================================================
   LAYOUT GRIDS
   ============================================================ */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.img-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(0.9);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 3px;
  transition: all var(--ease);
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white) !important;
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background-color: transparent;
  color: var(--white);
}

/* MB Vitals button variants */
.btn-mbv {
  background: var(--mbv-acc);
  color: var(--mbv-dark);
  border-color: var(--mbv-acc);
}
.btn-mbv:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--mbv-dark);
}
.btn-mbv-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-mbv-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white) !important;
}

/* Contact page button variants */
.btn-teal-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal-primary:hover { background: var(--navy); border-color: var(--navy); }

.btn-navy-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-navy-outline:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */

nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav.scrolled {
  background-color: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-logo a { display: flex; align-items: center; }
.nav-logo img { height: 45px; object-fit: contain; transition: all 0.3s; }
nav.scrolled .nav-logo img { height: 35px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links li a {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 500;
  position: relative;
}

.nav-links li a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  width: 0; height: 1px;
  bottom: -4px; left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}
.nav-links li a:hover:not(.nav-cta)::after,
.nav-links li a.active:not(.nav-cta)::after { width: 100%; }

.nav-cta {
  border: 1px solid rgba(46, 169, 125, 0.5);
  padding: 10px 24px !important;
  border-radius: 2px;
  color: var(--accent) !important;
}
.nav-cta:hover {
  background-color: var(--accent);
  color: var(--white) !important;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  padding: 10px 0;
  border-radius: 3px;
}
.dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a { color: var(--primary) !important; display: block; padding: 10px 20px; }
.dropdown-menu a:hover { background-color: var(--gray); color: var(--accent) !important; }

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}
.hamburger span {
  width: 28px; height: 2px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

/* ============================================================
   INDEX — HERO
   ============================================================ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 160px 8% 100px 10%;
  position: relative; z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(46, 169, 125, 0.38);
  padding: 6px 14px; border-radius: 2px;
  margin-bottom: 30px; align-self: flex-start;
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
  font-weight: 300; color: var(--white);
  line-height: 1.1; margin-bottom: 10px;
}
.hero-title strong { font-weight: 600; display: block; }

.hero-sub {
  font-family: var(--font-d);
  font-size: clamp(0.95rem, 1.5vw, 1.3rem);
  font-style: italic; color: var(--accent);
  margin-bottom: 26px; line-height: 1.6;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.66);
  line-height: 1.82; max-width: 450px; margin-bottom: 44px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right { position: relative; overflow: hidden; }
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--primary) 0%, transparent 42%);
  z-index: 1;
}
.hero-imgs { height: 100%; }
.hero-imgs img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.65) saturate(0.78);
}

.scroll-hint {
  position: absolute; bottom: 32px; left: 10%; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line { width: 36px; height: 1px; background: rgba(255,255,255,0.25); }

/* ============================================================
   INDEX — STATS BAR
   ============================================================ */

.stats-bar {
  background-color: var(--accent);
  padding: 40px 5%;
  color: var(--white);
}

.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 30px;
}

.stat { text-align: center; flex: 1; min-width: 150px; }

.stat-n {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 600; line-height: 1.1; margin-bottom: 5px;
}

.stat-l {
  font-size: 0.85rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ============================================================
   INDEX / ABOUT — ABOUT TWO-COL
   ============================================================ */

.about-img { position: relative; }
.about-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px; filter: saturate(0.88);
}
.about-img::after {
  content: '';
  position: absolute; bottom: -14px; right: -14px;
  width: 100%; height: 100%;
  border: 2px solid var(--accent); border-radius: 4px; z-index: -1;
}

.about-pts { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; }

.apt {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.94rem; color: var(--gray-700);
}
.apt::before {
  content: '—'; color: var(--accent);
  flex-shrink: 0; margin-top: 1px; font-weight: bold;
}

/* ============================================================
   INDEX — SERVICE CARDS
   ============================================================ */

.card {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 30px; border-radius: 4px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  background-color: rgba(255,255,255,0.06);
  border-color: rgba(46, 169, 125, 0.3);
}

.card-icon { font-size: 2.5rem; margin-bottom: 20px; }

.card-title {
  font-family: var(--font-h);
  font-size: 1.5rem; color: var(--white);
  margin-bottom: 15px; font-weight: 400;
}

.card-body {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem; line-height: 1.7;
}

/* ============================================================
   INDEX / ABOUT — WHY CHOOSE
   ============================================================ */

.why-list { margin-top: 20px; }
.why-list li {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; color: var(--gray-700); font-size: 1.05rem;
}

.check {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background-color: rgba(46, 169, 125, 0.15);
  color: var(--accent); border-radius: 50%;
  font-size: 0.8rem; flex-shrink: 0;
}

/* ============================================================
   INDEX / ABOUT — APPROACH / STEPS
   ============================================================ */

.approach-wrap {
  overflow-x: auto;
  padding-bottom: 20px;
  margin-top: 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--gray-200);
}
.approach-wrap::-webkit-scrollbar { height: 6px; }
.approach-wrap::-webkit-scrollbar-track { background: var(--gray-200); border-radius: 3px; }
.approach-wrap::-webkit-scrollbar-thumb { background-color: var(--accent); border-radius: 3px; }

.steps { display: flex; gap: 20px; min-width: max-content; }

.step {
  width: 240px;
  background: var(--gray);
  padding: 30px 24px; border-radius: 4px;
  border-top: 3px solid var(--accent);
  position: relative;
}
.step-n {
  font-family: var(--font-h); font-size: 3rem;
  color: rgba(46, 169, 125, 0.2);
  line-height: 1; position: absolute; top: 15px; right: 20px;
}
.step-t {
  font-size: 1.1rem; font-weight: 600; color: var(--primary);
  margin-bottom: 10px; position: relative; z-index: 1;
}
.step-d {
  font-size: 0.9rem; color: var(--gray-700);
  line-height: 1.6; position: relative; z-index: 1;
}

/* ============================================================
   INDEX — INDUSTRIES CHIPS
   ============================================================ */

.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 14px; margin-top: 36px;
}

.chip {
  background: var(--white);
  padding: 16px 20px; border-radius: 4px;
  font-weight: 500; color: var(--primary);
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.chip:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ============================================================
   INDEX / ABOUT — CTA BAND
   ============================================================ */

.cta-band {
  background: linear-gradient(rgba(26,54,93,0.92), rgba(26,54,93,0.92)),
              url('https://images.unsplash.com/photo-1581093458791-9f3c3900df4b?w=1200&q=80') center/cover;
  padding: 100px 5%;
  text-align: center; color: var(--white);
}
.cta-band .label  { color: var(--accent); }
.cta-band .h1     { color: var(--white); margin-bottom: 20px; }
.cta-band .body-txt { color: rgba(255,255,255,0.7); margin: 0 auto 30px auto; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.3); color: var(--white); }

/* ============================================================
   ABOUT — PAGE HERO
   ============================================================ */

.page-hero {
  background: var(--primary);
  padding: 180px 5% 100px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?w=1200&q=80') center/cover;
  opacity: 0.1; z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .h1 {
  color: var(--white); max-width: 720px;
  margin: 0 auto 18px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.page-hero .body-txt {
  color: rgba(255,255,255,0.7); max-width: 640px;
  margin: 0 auto; font-size: 1.15rem;
}

/* ============================================================
   ABOUT — VALUES CARDS
   ============================================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px; margin-top: 50px;
}

.val-card {
  padding: 40px 30px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: 4px;
  transition: all 0.3s ease;
}
.val-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.val-icon   { font-size: 2.2rem; margin-bottom: 18px; }
.val-card h3 {
  font-family: var(--font-h); font-size: 1.4rem;
  font-weight: 600; color: var(--primary); margin-bottom: 12px;
}
.val-card p { font-size: 0.95rem; color: var(--gray-700); line-height: 1.7; }

/* ============================================================
   MB VITALS — HERO
   ============================================================ */

.mbv-hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--mbv-dark);
  position: relative; overflow: hidden;
}

.mbv-hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 8% 80px 10%;
  position: relative; z-index: 2;
}

.mbv-logo-wrap {
  display: inline-block; background: var(--white); border-radius: 6px;
  padding: 10px 18px; margin-bottom: 28px; width: fit-content;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.mbv-logo-wrap img { height: 48px; object-fit: contain; display: block; }

.mbv-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mbv-acc);
  border: 1px solid rgba(78,205,196,0.32);
  padding: 6px 14px; border-radius: 2px;
  margin-bottom: 28px; width: fit-content;
}
.mbv-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--mbv-acc); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.mbv-title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 300; color: var(--white);
  line-height: 1.12; margin-bottom: 10px;
}
.mbv-title strong { font-weight: 600; }

.mbv-tagline {
  font-family: var(--font-h);
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-style: italic; color: var(--mbv-acc); margin-bottom: 26px;
}

.mbv-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  line-height: 1.7; max-width: 450px; margin-bottom: 40px;
}

.mbv-hero-right { position: relative; overflow: hidden; }
.mbv-hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--mbv-dark) 0%, transparent 44%);
  z-index: 1;
}
.mbv-hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.65) saturate(0.8) hue-rotate(5deg);
}

/* ============================================================
   MB VITALS — DARK SECTION
   ============================================================ */

.bg-mbv-dark { background: var(--mbv-mid); }
.bg-mbv-dark .h1        { color: var(--white); }
.bg-mbv-dark .h1 em     { color: var(--mbv-acc); }
.bg-mbv-dark .body-txt  { color: rgba(255,255,255,0.7); }
.bg-mbv-dark .label     { color: var(--mbv-acc); }
.bg-mbv-dark .divider   { background: var(--mbv-acc); }

.bg-mbv-dark .card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 30px; border-radius: 4px;
  transition: all 0.3s ease;
}
.bg-mbv-dark .card:hover {
  border-color: var(--mbv-acc);
  background: rgba(255,255,255,0.06);
  transform: translateY(-5px);
}
.bg-mbv-dark .card-title {
  color: var(--white); font-family: var(--font-h);
  font-size: 1.4rem; margin-bottom: 12px;
}
.bg-mbv-dark .card-body { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; }
.bg-mbv-dark .card-icon { font-size: 2.2rem; margin-bottom: 18px; }

.dtags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.dtag {
  font-size: 0.8rem; font-weight: 500; color: var(--mbv-acc);
  background: rgba(78,205,196,0.1);
  border: 1px solid rgba(78,205,196,0.2);
  padding: 4px 12px; border-radius: 20px;
}

/* ============================================================
   MB VITALS — PRODUCT CHIPS
   ============================================================ */

.chips { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.chips .chip {
  padding: 10px 20px;
  border: 1px solid rgba(78,205,196,0.3);
  border-radius: 30px; font-size: 0.95rem;
  color: var(--primary); background: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.chips .chip:hover {
  border-color: var(--mbv-acc); color: var(--mbv-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(26,122,110,0.1);
}

/* MB Vitals why-check override */
.mbv-check {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--mbv-acc) !important;
  color: var(--white) !important;
  border-radius: 50%; font-size: 0.75rem; flex-shrink: 0;
}

/* ============================================================
   MB VITALS — MISSION / VISION
   ============================================================ */

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 44px; }

.mv-card {
  padding: 50px 40px; border-radius: 4px;
  transition: transform 0.3s ease;
}
.mv-card:hover { transform: translateY(-5px); }
.mv-mission { background: var(--primary); }
.mv-vision  { background: var(--mbv); }

.mv-lbl {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mbv-acc); margin-bottom: 14px;
}
.mv-card h3 {
  font-family: var(--font-h); font-size: 2rem;
  font-weight: 400; color: var(--white); margin-bottom: 16px;
}
.mv-card p  { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* ============================================================
   MB VITALS — QUALITY ITEMS
   ============================================================ */

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px; margin-top: 40px;
}

.qi {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  border: 1px solid var(--gray-200); border-radius: 4px;
  background: var(--gray); transition: all 0.3s ease;
}
.qi:hover {
  border-color: var(--mbv-acc); background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04); transform: translateY(-3px);
}
.qi-icon {
  width: 44px; height: 44px;
  background: rgba(78,205,196,0.15);
  border: 1px solid rgba(78,205,196,0.3);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.qi h4 { font-size: 1rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.qi p  { font-size: 0.9rem; color: var(--gray-700); line-height: 1.5; }

/* ============================================================
   MB VITALS — MARKET PRESENCE
   ============================================================ */

.mkt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 24px; margin-top: 40px;
}

.mkt-card {
  text-align: center; padding: 36px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200); border-radius: 4px;
  transition: all 0.3s ease;
}
.mkt-card:hover {
  border-color: var(--mbv);
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(26,122,110,0.08);
}
.mkt-card .ico { font-size: 2.2rem; margin-bottom: 14px; }
.mkt-card h4  { font-size: 1rem; font-weight: 500; color: var(--primary); }

/* ============================================================
   MB VITALS — CTA
   ============================================================ */

.mbv-cta {
  background: linear-gradient(135deg, var(--mbv-dark) 0%, var(--mbv-mid) 100%);
  padding: 100px 5%; text-align: center;
}
.mbv-cta .h1     { color: var(--white); max-width: 600px; margin: 0 auto 16px; }
.mbv-cta .body-txt { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 36px; }

.mbv-contact-strip {
  margin-top: 50px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 30px;
}
.mbv-contact-strip a {
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  font-weight: 500; letter-spacing: 0.05em;
}
.mbv-contact-strip a:hover { color: var(--mbv-acc); }

/* ============================================================
   CONTACT — PAGE HERO
   ============================================================ */

.contact-page-hero {
  background: var(--navy);
  padding: 120px 5% 70px;
  text-align: center;
}
.contact-page-hero .h1 {
  color: var(--white);
  max-width: 500px; margin: 0 auto 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.contact-page-hero .body-txt {
  color: rgba(255,255,255,0.62);
  max-width: 460px; margin: 0 auto; font-size: 1.05rem;
}
.contact-page-hero .label { color: var(--accent); }

/* ============================================================
   CONTACT — GRID & CARDS
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; max-width: 960px; margin: 0 auto;
}

.c-card {
  background: var(--cream);
  border: 1px solid var(--gray-200); border-radius: 6px;
  padding: 40px;
  display: flex; flex-direction: column; align-items: center;
}

.c-card h3 {
  width: 100%;
  font-family: var(--font-b); font-size: 1.35rem; font-weight: 500;
  color: var(--navy); margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
}

.c-card-content { width: 100%; max-width: 280px; }

.c-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.c-ico { font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; width: 20px; text-align: center; }
.c-txt strong {
  display: block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 4px;
}
.c-txt span,
.c-txt a { font-size: 0.95rem; color: var(--gray-700); display: block; line-height: 1.6; }
.c-txt a:hover { color: var(--teal); }

.c-card-dark {
  background: var(--navy); border-color: transparent;
  grid-column: 1 / -1; text-align: center; padding: 40px; display: block;
}
.c-card-dark h3 { color: var(--white); border-color: rgba(255,255,255,0.12); margin-bottom: 20px; }
.c-card-dark p  {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  line-height: 1.75; max-width: 600px; margin: 0 auto;
}
.c-card-dark strong { color: var(--accent); }

/* Social buttons */
.social-row {
  display: flex; gap: 12px; margin-top: 12px;
  flex-wrap: wrap; justify-content: center;
}
.social-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; font-size: 0.85rem; font-weight: 500;
  border: 1px solid var(--gray-200); border-radius: 4px;
  color: var(--navy); background: var(--white);
  transition: var(--ease);
}
.social-btn:hover { border-color: var(--teal); color: var(--teal); }

/* ============================================================
   POLICY PAGES (privacy, terms)
   ============================================================ */

.policy-hero {
  background: var(--navy);
  padding: 120px 5% 60px;
}
.policy-hero .label { color: var(--accent); margin-bottom: 10px; }
.policy-hero .h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}
.policy-date {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 5%;
  background: var(--white);
}

.policy-content h2 {
  font-family: var(--font-h);
  font-size: 1.6rem; font-weight: 500;
  color: var(--navy);
  margin: 48px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}
.policy-content h2:first-child { margin-top: 0; }

.policy-content p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 16px;
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.policy-content ul li {
  font-size: 1rem; color: var(--gray-700);
  line-height: 1.75; margin-bottom: 8px;
}
.policy-content strong { color: var(--navy); font-weight: 600; }

.policy-content .btn { padding: 12px 24px; border-radius: 4px; }
.policy-content .btn-primary {
  background: var(--teal); color: var(--white); border-color: var(--teal);
}
.policy-content .btn-primary:hover { background: var(--navy); border-color: var(--navy); }
.policy-content .btn-outline {
  background: transparent; border-color: var(--navy); color: var(--navy);
}
.policy-content .btn-outline:hover { background: var(--navy); color: var(--white) !important; }

/* ============================================================
   FOOTER — SHARED
   ============================================================ */

footer {
  background-color: var(--primary-light);
  color: var(--white);
  padding: 80px 5% 30px;
}

.foot-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 50px; margin-bottom: 30px;
}

.foot-brand img { margin-bottom: 20px; }
.foot-brand p   { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; max-width: 350px; }

.foot-col h4 {
  font-family: var(--font-h); font-size: 1.3rem;
  color: var(--accent); margin-bottom: 24px; font-weight: 400;
}
.foot-col a { display: block; color: rgba(255,255,255,0.7); margin-bottom: 12px; font-size: 0.95rem; }
.foot-col a:hover { color: var(--accent); }

.foot-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
}
.foot-bottom a   { color: rgba(255,255,255,0.4); margin-left: 20px; }
.foot-bottom a:hover { color: var(--white); }

/* Policy pages footer (darker bg) */
footer.footer-dark {
  background-color: var(--navy);
}
footer.footer-dark .foot-col h4 { color: var(--teal); font-family: var(--font-b); font-size: 1.1rem; font-weight: 500; }
footer.footer-dark .foot-col a:hover { color: var(--teal); }

/* ============================================================
   ANIMATIONS — FADE UP
   ============================================================ */

.fu {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fu.active { opacity: 1; transform: translateY(0); }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE — 992px
   ============================================================ */

@media (max-width: 992px) {

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 140px 5% 80px 5%; text-align: center; align-items: center; }
  .hero-badge { align-self: center; }
  .hero-btns { justify-content: center; }
  .scroll-hint { left: 50%; transform: translateX(-50%); }

  /* MBV Hero */
  .mbv-hero { grid-template-columns: 1fr; }
  .mbv-hero-right { height: 42vh; }
  .mbv-hero-left { padding-top: 100px; }

  /* Grids */
  .grid-2  { grid-template-columns: 1fr; gap: 40px; }
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .about-img { margin-bottom: 20px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; max-width: 600px; }
  .c-card-dark  { grid-column: 1; }

  /* Footer */
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */

@media (max-width: 768px) {

  /* Mobile nav */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background-color: var(--white);
    flex-direction: column; justify-content: center; align-items: center;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
  }
  .nav-links.active { right: 0; }
  .nav-links li { margin: 15px 0; }

  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Mobile dropdown */
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; box-shadow: none; text-align: center; display: none;
  }
  .dropdown:hover .dropdown-menu { display: block; }

  /* Grids */
  .grid-4 { grid-template-columns: 1fr; }

  /* MBV */
  .mbv-hero-left { padding-right: 5%; padding-left: 5%; text-align: center; align-items: center; }
  .mbv-desc { text-align: center; }
  .mbv-contact-strip { flex-direction: column; align-items: center; gap: 15px; }

  /* Footer */
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .foot-bottom div { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
  .foot-bottom a { margin: 0; }

  /* Policy */
  .policy-content { padding: 60px 5%; }
}

@media (max-width: 600px) {
  .h1 { font-size: 2.2rem; }
}