:root {
  --mh-blue: #0D7AD2;
  --mh-red: #DF0000;
  --mh-dark-blue: #003E60;
  --mh-baby-blue: #71BEED;
  --mh-silver: #B7B7B7;
  --mh-white: #ffffff;
  --mh-light-bg: #f0f7fd;
  --mh-text: #1a1a2e;
  --mh-text-light: #4a5568;
  /* Fonts — change here to update the entire site */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--mh-text);
  line-height: 1.7;
  background: var(--mh-white);
  overflow-x: hidden;
}

/* ============================================
   EFFICA-STYLE NAV — Logo | + MENU | CTA
   ============================================ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background 0.35s ease, opacity 0.4s ease, transform 0.4s ease;
}
.topbar.over-dark {
  background: rgba(0, 30, 50, 0.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.topbar .menu-toggle {
  color: var(--mh-dark-blue);
  transition: color 0.35s ease;
}
.topbar.over-dark .menu-toggle { color: white; }
.topbar .topbar-logo img { transition: filter 0.35s ease; }
.topbar-inner {
  max-width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 1rem 3rem;
}
.topbar-logo { justify-self: start; }
.menu-toggle { justify-self: center; }
.topbar-cta-group {
  justify-self: end; display: flex; align-items: center; gap: 1rem;
  cursor: pointer; transition: opacity 0.4s ease, transform 0.4s ease;
}
.topbar-cta-group.hidden { opacity: 0; transform: translateY(-10px); pointer-events: none; }
.topbar-cta-group:hover { opacity: 0.85; }
.topbar-cta-group:hover .topbar-cta-plus { transform: rotate(90deg); }
.topbar-cta-text { text-align: right; line-height: 1.4; }
.topbar-cta-text span {
  display: block; font-size: 0.7rem; color: var(--mh-text-light);
  letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.35s ease;
}
.topbar-cta-text strong {
  display: block; font-size: 0.72rem; color: var(--mh-dark-blue);
  letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.35s ease;
}
.topbar.over-dark .topbar-cta-text span { color: rgba(255,255,255,0.7); }
.topbar.over-dark .topbar-cta-text strong { color: white; }
.topbar-cta-circles { display: flex; align-items: center; gap: 0.3rem; }
.topbar-cta-icon {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(13,122,210,0.1); transition: border-color 0.3s;
}
.topbar-cta-group:hover .topbar-cta-icon { border-color: var(--mh-blue); }
.topbar-cta-plus {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--mh-dark-blue); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 300;
  transition: transform 0.4s ease, background 0.3s;
}
.topbar-cta-group:hover .topbar-cta-plus { background: var(--mh-blue); }
.topbar-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; cursor: pointer;
}
.topbar-logo img { height: 44px; width: auto; }
.menu-toggle {
  display: flex; align-items: center; gap: 0.5rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--mh-dark-blue); transition: color 0.3s;
}
.menu-toggle:hover { color: var(--mh-blue); }

/* ============================================
   EFFICA-STYLE COMPACT MENU PANEL
   ============================================ */
.menu-panel {
  position: fixed; top: 3.8rem; left: 54.8%; z-index: 1500;
  transform: translateX(-42%) translateY(-10px);
  background: var(--mh-dark-blue);
  padding: 2rem 2.5rem 1.8rem; border-radius: 14px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0.3s ease;
  min-width: 230px; max-width: 260px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.menu-panel.open {
  transform: translateX(-42%) translateY(0);
  opacity: 1; visibility: visible; pointer-events: auto;
}
.menu-panel-nav { display: flex; flex-direction: column; gap: 0.1rem; }
.menu-panel-nav a {
  display: block; text-decoration: none;
  font-weight: 700; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.13em; color: rgba(255,255,255,0.55);
  padding: 0.45rem 0; transition: color 0.25s, letter-spacing 0.3s; cursor: pointer;
}
.menu-panel-nav a:hover { color: white; letter-spacing: 0.2em; }
.menu-panel-footer {
  margin-top: 1rem; padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.menu-panel-footer a {
  font-size: 0.68rem; font-weight: 700; color: var(--mh-baby-blue);
  text-decoration: none; display: block; letter-spacing: 0.04em; transition: color 0.3s;
}
.menu-panel-footer a:hover { color: white; }
.menu-panel-footer span {
  font-size: 0.6rem; color: rgba(255,255,255,0.3); display: block; margin-top: 0.3rem;
}
.menu-toggle-icon {
  display: inline-block; font-size: 1.1rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-toggle.menu-open .menu-toggle-icon { transform: rotate(135deg); }
.menu-toggle:hover .menu-toggle-icon { transform: rotate(90deg); }
.menu-toggle.menu-open:hover .menu-toggle-icon { transform: rotate(225deg); }

/* ============================================
   PAGE MANAGEMENT
   ============================================ */
.page { display: none; overflow-x: hidden; max-width: 100%; }
.page.active { display: block; }

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section { padding: 7rem 2rem; }
.section-inner { max-width: 1320px; margin: 0 auto; }
.page-bg {
  background-size: cover; background-position: center;
  background-repeat: no-repeat; position: relative;
}
.page-bg::before { content: ""; position: absolute; inset: 0; z-index: 1; }
.page-bg > * { position: relative; z-index: 2; }
.about-bg  { background-image: url("./assets/images/bg-about.png"); }
.services-bg { background-image: url("./assets/images/bg-services.jpg"); }
.support-bg  { background-image: url("./assets/images/bg-support.jpg"); }
.faq-bg      { background-image: url("./assets/images/bg-faq.jpg"); }
.contact-bg  { background-image: url("./assets/images/bg-contact.jpg"); }
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--mh-blue); margin-bottom: 1rem;
  position: relative; padding-left: 2rem;
}
.section-tag::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 1.2rem; height: 2px; background: var(--mh-red); transform: translateY(-50%);
}
.section-title {
  font-family: var(--font-heading);
  font-size: 3.2rem; line-height: 1.15; color: var(--mh-dark-blue);
  margin-bottom: 1.5rem; letter-spacing: -1px;
}
.section-subtitle {
  font-size: 1.15rem; color: var(--mh-text-light); max-width: 640px; line-height: 1.8;
}

/* Hero section titles — larger than default */
.about-hero-content .section-tag,
.services-hero-content .section-tag,
.pricing-hero-content .section-tag,
.faq-hero-content .section-tag,
.partnership-hero-content .section-tag,
.joinus-hero-content .section-tag,
.resources-hero-content .section-tag,
.contact-hero-content .section-tag {
  font-size: 1rem; letter-spacing: 0.2em; padding-left: 2.5rem; margin-bottom: 1.2rem;
}
.about-hero-content .section-tag::before,
.services-hero-content .section-tag::before,
.pricing-hero-content .section-tag::before,
.faq-hero-content .section-tag::before,
.partnership-hero-content .section-tag::before,
.joinus-hero-content .section-tag::before,
.resources-hero-content .section-tag::before,
.contact-hero-content .section-tag::before {
  width: 1.6rem; height: 3px;
}

/* Hero section headings — larger than default */
.about-hero-content .section-title,
.services-hero-content .section-title,
.pricing-hero-content .section-title,
.faq-hero-content .section-title,
.partnership-hero-content .section-title,
.joinus-hero-content .section-title,
.resources-hero-content .section-title,
.contact-hero-content .section-title {
  font-size: 4.2rem; letter-spacing: -1.5px;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider { position: relative; height: 100vh; overflow: hidden; background: #f5f5f0; }
.slider-track { position: relative; height: 100%; }
.slider-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.9s ease; pointer-events: none; height: 100vh;
}
.slider-slide.slide-active { position: relative; opacity: 1; pointer-events: auto; }
.slide-bg {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 44%; z-index: 1; overflow: hidden;
}
.slide-bg::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0;
  width: 25px; background: linear-gradient(to right, transparent, #f5f5f0); z-index: 2;
}
.slide-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.slide-content {
  position: relative; z-index: 2; height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 3rem; max-width: 1400px; margin: 0 auto;
}
.slide-meta { margin-left: 48%; margin-bottom: 1rem; }
.slide-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
  line-height: 1.1; font-weight: 700; color: var(--mh-dark-blue);
  letter-spacing: -1.5px; margin-bottom: 1.2rem; margin-left: 48%; max-width: 50%;
}
.slide-heading em { color: var(--mh-blue); font-style: italic; }
.slide-heading .slide-accent { color: var(--mh-blue); font-style: normal; white-space: nowrap; }
.slide-bottom { margin-left: 48%; max-width: 48%; overflow: visible; margin-top: 0; }
.slide-subhead { font-size: 0.78rem; font-weight: 700; color: var(--mh-text-light); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.2rem; margin-top: 0.5rem; }
.btn-phone { font-size: 0.65rem; font-weight: 400; opacity: 0.85; letter-spacing: 0.02em; text-transform: none; }
.slide-desc {
  font-family: var(--font-heading);
  font-size: 1.15rem; color: var(--mh-text-light);
  line-height: 1.7; margin-bottom: 1.5rem; font-style: italic;
}
.slide-items { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.5rem; }
.slide-items span {
  font-size: 0.95rem; font-weight: 700; color: var(--mh-dark-blue);
  padding: 0.55rem 0; border-bottom: 1px solid rgba(13,122,210,0.1);
}
.btn-outline-light {
  border: 2px solid var(--mh-dark-blue); color: var(--mh-dark-blue);
  padding: 0.8rem 2rem; border-radius: 50px; text-decoration: none;
  font-weight: 700; font-size: 0.9rem; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.7); cursor: pointer; backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: var(--mh-dark-blue); color: white; }
.slider-slide.slide-active .slide-meta { animation: fadeUp 0.6s 0.1s ease forwards; opacity: 0; }
.slider-slide.slide-active .slide-heading { animation: fadeUp 0.8s 0.2s ease forwards; opacity: 0; }
.slider-slide.slide-active .slide-bottom { animation: fadeUp 0.7s 0.5s ease forwards; opacity: 0; }
.slider-slide.slide-active .slide-bg img { animation: imgZoom 1.2s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes imgZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.slider-dots {
  position: absolute; bottom: 2rem; right: 4rem; z-index: 11; display: flex; gap: 0.6rem;
}
.slider-dot {
  width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--mh-blue);
  background: transparent; cursor: pointer; transition: all 0.3s; padding: 0;
}
.slider-dot.active { background: var(--mh-blue); transform: scale(1.2); }
.slider-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(13,122,210,0.1); z-index: 10;
}
.slider-progress-bar { height: 100%; width: 0%; background: var(--mh-red); }
.gratitude-items-slide { display: flex; flex-direction: column; gap: 0; margin-top: 1rem; }
.gratitude-slide-item {
  font-size: 0.95rem; color: var(--mh-dark-blue); font-weight: 700;
  padding: 0.55rem 0; border-bottom: 1px solid rgba(13,122,210,0.08);
}
.gratitude-slide-item span {
  color: var(--mh-baby-blue); font-family: var(--font-heading);
  font-size: 1.2rem; margin-right: 0.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(13,122,210,0.08); padding: 0.4rem 1rem;
  border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  color: var(--mh-blue); margin-bottom: 1.2rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.hero-badge span { color: var(--mh-red); }
.hero-h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem; line-height: 1.12; font-weight: 700;
  color: var(--mh-dark-blue); margin-bottom: 1rem; letter-spacing: -1px;
}
.hero-h1 em { color: var(--mh-blue); font-style: italic; }
.hero-sub { font-size: 1rem; color: var(--mh-text-light); margin-bottom: 0.8rem; max-width: 500px; line-height: 1.7; }
.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.25rem; color: var(--mh-blue); font-style: italic;
  font-weight: 700; margin-bottom: 1.5rem;
}
.hero-actions { display: flex; gap: 1rem; margin-top: 1.5rem; width: 100%; }
.hero-actions .btn-primary,
.hero-actions .btn-outline-light {
  flex: 1; text-align: center; justify-content: center;
  padding: 0.8rem 2.5rem; font-size: 0.9rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: 50px; transition: all 0.35s ease;
}
.hero-actions .btn-primary {
  background: rgba(13, 122, 210, 0.88); color: white; border: none;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(13, 122, 210, 0.25);
  padding: 0.7rem 1.6rem;
}
.hero-actions .btn-primary:hover {
  background: rgba(13, 122, 210, 1);
  box-shadow: 0 6px 28px rgba(13, 122, 210, 0.4); transform: translateY(-2px);
}
.hero-actions .btn-outline-light {
  background: rgba(255, 255, 255, 0.65); color: var(--mh-dark-blue);
  border: 1.5px solid rgba(13, 122, 210, 0.2);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.hero-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.9); border-color: var(--mh-blue);
  box-shadow: 0 6px 24px rgba(13, 122, 210, 0.15); transform: translateY(-2px);
}
.hero-call-btn {
  font-size: 0.78rem !important;
  text-decoration: none;
  display: flex; align-items: center; justify-content: center;
}

/* Trust bar */
.trust-bar { padding: 3rem 3%; background: var(--mh-dark-blue); overflow: hidden; }
.trust-bar-inner {
  max-width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  align-items: center; text-align: center;
}
.trust-item-num { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900; color: var(--mh-baby-blue); }
.trust-item-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.trust-item-text { font-size: 14px; color: rgba(255,255,255,0.95); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; padding: 1rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.25); white-space: normal; line-height: 1.5; }
.trust-item-text:last-child { border-right: none; }

/* Loyalty */
.loyalty-section { padding: 7rem 2rem; background: var(--mh-light-bg); }
.loyalty-inner { max-width: 1320px; margin: 0 auto; text-align: center; }
.loyalty-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 3rem; text-align: left; }
.loyalty-card { border-radius: 20px; overflow: hidden; position: relative; min-height: 400px; transition: all 0.4s; }
.loyalty-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.loyalty-card-bg { position: absolute; inset: 0; z-index: 1; }
.loyalty-card-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.loyalty-card::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background-image: linear-gradient(to top, hsla(205,100%,8%,0.95) 0%, hsla(205,100%,8%,0.9) 18%, hsla(205,100%,8%,0.8) 32%, hsla(205,100%,10%,0.65) 44%, hsla(205,100%,12%,0.45) 55%, hsla(205,100%,12%,0.25) 68%, hsla(205,100%,12%,0.1) 82%, hsla(205,100%,12%,0) 100%);
}
.loyalty-card-content { position: relative; z-index: 3; padding: 2rem 2.5rem 2.5rem; display: flex; flex-direction: column; justify-content: flex-end; min-height: 400px; }
.loyalty-card-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: white; margin-bottom: 1rem; background: rgba(13,122,210,0.6); backdrop-filter: blur(4px); display: inline-block; align-self: flex-start; padding: 0.35rem 0.9rem; border-radius: 4px; border-left: 3px solid var(--mh-red); }
.loyalty-card-content p { font-family: var(--font-heading); font-size: 1.1rem; color: white; line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.loyalty-card-author { font-size: 0.9rem; font-weight: 900; color: white; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.loyalty-card-author span { font-weight: 400; color: var(--mh-baby-blue); }

/* Why Section */
.why-section {
  position: relative; overflow: hidden;
  padding-top: 7rem !important; padding-bottom: 7rem !important;
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  margin-top: -1px; margin-bottom: -1px; background: hsl(205, 100%, 8%);
}
.why-section-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; }
.why-section-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; animation: whyKenBurns 18s ease-in-out infinite alternate; }
@keyframes whyKenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.why-section::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background-image: linear-gradient(to top, hsla(205,100%,8%,0.93) 0%, hsla(205,100%,8%,0.88) 12%, hsla(205,100%,8%,0.75) 25%, hsla(205,100%,10%,0.62) 40%, hsla(205,100%,10%,0.62) 60%, hsla(205,100%,8%,0.75) 75%, hsla(205,100%,8%,0.88) 88%, hsla(205,100%,8%,0.93) 100%);
}
.why-section .section-tag { color: var(--mh-baby-blue); }
.why-section .section-tag::before { background: var(--mh-red); }
.why-section .section-title { color: white; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; }
.why-card { text-align: center; padding: 2rem 1.5rem; background: rgba(255,255,255,0.08); border-radius: 16px; border: 1px solid rgba(255,255,255,0.12); transition: all 0.4s ease; backdrop-filter: blur(6px); }
.why-card:hover { border-color: rgba(113,190,237,0.4); box-shadow: 0 4px 24px rgba(13,122,210,0.15), inset 0 1px 0 rgba(255,255,255,0.1); transform: translateY(-6px); background: rgba(255,255,255,0.12); }
.why-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--mh-baby-blue); line-height: 1; margin-bottom: 1rem; }
.why-card h4 { font-size: 0.95rem; font-weight: 900; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.03em; }
.why-card p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-top: 0.8rem; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--mh-dark-blue) 0%, var(--mh-blue) 100%);
  border-radius: 24px; padding: 5rem 4rem; text-align: center;
  position: relative; overflow: hidden; margin: 4rem 0;
}
.cta-banner::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; border-radius: 50%; border: 60px solid rgba(255,255,255,0.03); }
.cta-banner h2 { font-family: var(--font-heading); font-size: 3rem; color: white; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-banner p { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; position: relative; z-index: 1; }

/* Buttons */
.btn-primary { background: var(--mh-blue); color: white; padding: 1rem 2.4rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--mh-dark-blue); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(13,122,210,0.15); }
.btn-outline { border: 2px solid var(--mh-dark-blue); color: var(--mh-dark-blue); padding: 1rem 2.4rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; cursor: pointer; }
.btn-outline:hover { background: var(--mh-dark-blue); color: white; }
.btn-white { background: white; color: var(--mh-dark-blue); padding: 1rem 2.4rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; position: relative; z-index: 1; border: none; cursor: pointer; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* Values Grid */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 4rem; }
.value-card { background: white; border-radius: 20px; padding: 2.5rem; border: 1px solid rgba(13,122,210,0.08); transition: all 0.4s; position: relative; overflow: hidden; }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--mh-blue); transition: height 0.4s; }
.value-card:hover::before { height: 100%; }
.value-card:hover { box-shadow: 0 4px 16px rgba(0,62,96,0.06); transform: translateY(-4px); }
.value-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--mh-light-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.5rem; }
.value-card h3 { font-size: 1.35rem; font-weight: 900; color: var(--mh-dark-blue); margin-bottom: 0.75rem; }
.value-card p { font-size: 0.95rem; color: var(--mh-text-light); line-height: 1.7; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.service-card { background: white; border-radius: 20px; padding: 2.5rem; border: 1px solid rgba(13,122,210,0.06); transition: all 0.4s; cursor: pointer; }
.service-card:hover { box-shadow: 0 6px 20px rgba(0,62,96,0.07); transform: translateY(-6px); }
.service-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--mh-baby-blue); margin-bottom: 1rem; line-height: 1; }
.service-card h3 { font-size: 1.3rem; font-weight: 900; color: var(--mh-dark-blue); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; color: var(--mh-text-light); line-height: 1.7; margin-bottom: 1.5rem; }
.service-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--mh-blue); font-weight: 700; font-size: 0.85rem; text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em; transition: gap 0.3s; cursor: pointer; }
.service-link:hover { gap: 0.8rem; }

/* Service Detail */
.service-detail { padding-top: 3rem; border-top: 2px solid rgba(13,122,210,0.06); }
.svc-detail-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 2.5rem; }

/* Service FAQ accordion */
.svc-detail-block { padding: 0; border-bottom: 1px solid rgba(13,122,210,0.08); }
.svc-detail-block:last-child { border-bottom: none; }

.svc-detail-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; padding: 1.5rem 0;
  transition: color 0.3s;
}
.svc-detail-q:hover { color: var(--mh-blue); }
.svc-detail-q h3 {
  font-family: var(--font-heading); font-size: 1.3rem;
  color: var(--mh-dark-blue); line-height: 1.3;
  margin: 0; flex: 1; padding-right: 1rem;
  transition: color 0.3s;
}
.svc-detail-q:hover h3 { color: var(--mh-blue); }
.svc-detail-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--mh-light-bg); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--mh-blue); flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
}
.svc-detail-block.svc-open .svc-detail-toggle {
  transform: rotate(45deg);
  background: var(--mh-blue); color: white;
}
.svc-detail-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease;
  padding: 0 0 0 0;
}
.svc-detail-block.svc-open .svc-detail-a {
  max-height: 2000px;
  padding: 0 0 1.8rem 0;
}

/* Content inside the answer */
.svc-detail-a h4 { font-size: 0.95rem; font-weight: 900; color: var(--mh-blue); margin-bottom: 0.6rem; margin-top: 1.5rem; text-transform: uppercase; letter-spacing: 0.03em; }
.svc-detail-a h4:first-child { margin-top: 0; }
.svc-detail-a p { font-size: 0.95rem; color: var(--mh-text-light); line-height: 1.8; margin-bottom: 0.8rem; }
.svc-detail-a ul, .svc-detail-a ol { margin: 0.8rem 0 1rem 0; padding: 0; }
.svc-detail-a ul li { font-size: 0.9rem; color: var(--mh-text-light); line-height: 1.7; padding: 0.35rem 0 0.35rem 1.5rem; list-style: none; position: relative; }
.svc-detail-a ul li::before { content: '✓'; position: absolute; left: 0; color: var(--mh-blue); font-weight: 700; }
.svc-detail-a ul.list-caution li::before { content: '✗'; color: var(--mh-red); }
.svc-detail-a ol { padding-left: 1.5rem; }
.svc-detail-a ol li { font-size: 0.9rem; color: var(--mh-text-light); line-height: 1.7; padding: 0.35rem 0; }
.svc-detail-a blockquote { background: var(--mh-light-bg); border-left: 3px solid var(--mh-blue); padding: 1.5rem 2rem; border-radius: 0 12px 12px 0; margin: 1rem 0; font-style: italic; font-size: 0.95rem; color: var(--mh-text); line-height: 1.7; }
.svc-detail-a blockquote cite { display: block; margin-top: 0.6rem; font-style: normal; font-weight: 700; font-size: 0.85rem; color: var(--mh-dark-blue); }
.svc-detail-cta { background: var(--mh-light-bg); border-radius: 16px; padding: 2.5rem; margin-top: 2rem; text-align: center; }
.svc-detail-cta h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--mh-dark-blue); margin-bottom: 1rem; line-height: 1.3; }
.svc-detail-cta p { font-size: 0.95rem; color: var(--mh-text-light); line-height: 1.7; margin-bottom: 0.8rem; }
.svc-detail-cta .btn-primary { margin-top: 0.5rem; }

/* About Page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: stretch; margin-top: 4rem; }
.about-grid > div:last-child .vision-mission { display: flex; flex-direction: column; justify-content: space-between; height: 100%; gap: 2rem; }
.about-story { font-size: 1.05rem; color: var(--mh-text-light); line-height: 1.9; }
.about-story p { margin-bottom: 1.5rem; }
.about-hero { position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: flex-end; background: hsl(205, 100%, 8%); margin-bottom: -1px; }
.about-hero-bg { position: absolute; inset: 0; z-index: 1; }
.about-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; animation: aboutHeroZoom 25s ease-in-out infinite alternate; }
@keyframes aboutHeroZoom { 0% { transform: scale(1); } 100% { transform: scale(1.05); } }
.about-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, hsla(205,100%,8%,0.95) 0%, hsla(205,100%,8%,0.75) 20%, hsla(205,100%,8%,0.4) 45%, hsla(205,100%,10%,0.2) 65%, hsla(205,100%,12%,0.15) 80%, hsla(205,100%,12%,0.1) 100%), linear-gradient(to right, hsla(205,100%,8%,0.6) 0%, hsla(205,100%,8%,0.2) 50%, transparent 100%);
}
.about-hero-content { position: relative; z-index: 3; padding: 0 4rem 6rem; max-width: 1320px; margin: 0 auto; width: 100%; }
.about-hero-content .section-tag::before { background: var(--mh-red); }

/* Services page — full-screen hero with gradient overlay */
.services-hero {
  position: relative; overflow: hidden;
  min-height: 75vh;
  display: flex; align-items: flex-end;
  background: hsl(205, 100%, 8%);
  margin-bottom: -1px;
}
.services-hero-bg {
  position: absolute; inset: 0; z-index: 1;
}
.services-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  animation: svcHeroZoom 25s ease-in-out infinite alternate;
}
@keyframes svcHeroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.05); }
}
.services-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top,
      hsla(205, 100%, 8%, 0.92) 0%,
      hsla(205, 100%, 8%, 0.7) 20%,
      hsla(205, 100%, 8%, 0.35) 45%,
      hsla(205, 100%, 10%, 0.18) 65%,
      hsla(205, 100%, 12%, 0.1) 80%,
      hsla(205, 100%, 12%, 0.06) 100%
    ),
    linear-gradient(to right,
      hsla(205, 100%, 8%, 0.5) 0%,
      hsla(205, 100%, 8%, 0.15) 50%,
      transparent 100%
    );
}
.services-hero-content {
  position: relative; z-index: 3;
  padding: 0 4rem 5rem;
  max-width: 1320px; margin: 0 auto; width: 100%;
}
.services-hero-content .section-tag::before { background: var(--mh-red); }
.svc-content-section { padding-top: 3.5rem; }

/* ============================================
   PRICING PAGE — Hero + Cards
   ============================================ */
.pricing-hero {
  position: relative; overflow: hidden;
  min-height: 80vh;
  display: flex; align-items: flex-end;
  background: hsl(205, 100%, 8%);
  margin-bottom: -1px;
}
.pricing-hero-bg {
  position: absolute; inset: 0; z-index: 1;
}
.pricing-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  animation: pricingHeroZoom 22s ease-in-out infinite alternate;
}
@keyframes pricingHeroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}
.pricing-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top,
      hsla(205, 100%, 8%, 0.94) 0%,
      hsla(205, 100%, 8%, 0.72) 20%,
      hsla(205, 100%, 8%, 0.38) 42%,
      hsla(205, 100%, 10%, 0.18) 62%,
      hsla(205, 100%, 12%, 0.08) 80%,
      hsla(205, 100%, 12%, 0.04) 100%
    ),
    linear-gradient(to right,
      hsla(205, 100%, 8%, 0.5) 0%,
      hsla(205, 100%, 8%, 0.15) 50%,
      transparent 100%
    );
}
.pricing-hero-content {
  position: relative; z-index: 3;
  padding: 0 4rem 5rem;
  max-width: 1320px; margin: 0 auto; width: 100%;
}
.pricing-hero-content .section-tag::before { background: var(--mh-red); }

/* FAQ page — hero with gradient overlay */
.faq-hero {
  position: relative; overflow: hidden;
  min-height: 80vh;
  display: flex; align-items: flex-end;
  background: hsl(30, 10%, 88%);
  margin-bottom: -1px;
}
.faq-hero-bg {
  position: absolute; inset: 0; z-index: 1;
}
.faq-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  animation: faqHeroZoom 22s ease-in-out infinite alternate;
}
@keyframes faqHeroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.05); }
}
.faq-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top,
      hsla(205, 100%, 8%, 0.92) 0%,
      hsla(205, 100%, 8%, 0.65) 22%,
      hsla(205, 60%, 12%, 0.3) 45%,
      hsla(205, 40%, 15%, 0.1) 70%,
      transparent 100%
    ),
    linear-gradient(to right,
      hsla(205, 100%, 8%, 0.55) 0%,
      hsla(205, 80%, 10%, 0.2) 40%,
      transparent 70%
    );
}
.faq-hero-content {
  position: relative; z-index: 3;
  padding: 0 4rem 5rem;
  max-width: 1320px; margin: 0 auto; width: 100%;
}
.faq-hero-content .section-tag::before { background: var(--mh-red); }
.faq-content-section { padding-top: 3.5rem; background: var(--mh-light-bg); }

/* Partnerships page — hero with gradient overlay */
.partnership-hero {
  position: relative; overflow: hidden;
  min-height: 80vh;
  display: flex; align-items: flex-end;
  background: hsl(205, 100%, 8%);
  margin-bottom: -1px;
}
.partnership-hero-bg {
  position: absolute; inset: 0; z-index: 1;
}
.partnership-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  animation: partnerHeroZoom 22s ease-in-out infinite alternate;
}
@keyframes partnerHeroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.05); }
}
.partnership-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top,
      hsla(205, 100%, 8%, 0.92) 0%,
      hsla(205, 100%, 8%, 0.68) 22%,
      hsla(205, 100%, 8%, 0.32) 45%,
      hsla(205, 100%, 10%, 0.12) 68%,
      hsla(205, 100%, 12%, 0.05) 85%,
      transparent 100%
    ),
    linear-gradient(to right,
      hsla(205, 100%, 8%, 0.5) 0%,
      hsla(205, 100%, 8%, 0.15) 45%,
      transparent 75%
    );
}
.partnership-hero-content {
  position: relative; z-index: 3;
  padding: 0 4rem 5rem;
  max-width: 1320px; margin: 0 auto; width: 100%;
}
.partnership-hero-content .section-tag::before { background: var(--mh-red); }
.partnership-content-section { padding-top: 3.5rem; }

/* Why Partner — numbered cards in 3-col */
.partner-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.partner-why-grid-2col { grid-template-columns: 1fr 1fr; }
.partner-why-grid-3col { grid-template-columns: repeat(3, 1fr); }
.partner-why-card {
  background: white; border-radius: 20px; padding: 2.5rem;
  border: 1px solid rgba(13,122,210,0.06);
  box-shadow: 0 4px 20px rgba(0,62,96,0.06);
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.partner-why-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--mh-blue), var(--mh-baby-blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.partner-why-card:hover::before { transform: scaleX(1); }
.partner-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,62,96,0.12);
}
.partner-why-num {
  font-family: var(--font-heading);
  font-size: 3.5rem; font-weight: 700;
  color: var(--mh-light-bg); line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}
.partner-why-card:hover .partner-why-num { color: var(--mh-baby-blue); }
.partner-why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem; color: var(--mh-dark-blue);
  margin-bottom: 0.8rem; line-height: 1.3;
}
.partner-why-card p {
  font-size: 0.95rem; color: var(--mh-text-light); line-height: 1.8;
}
.partner-checklist {
  display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem;
}
.partner-checklist div {
  font-size: 0.92rem; color: var(--mh-text-light); line-height: 1.7;
  padding-left: 1.5rem; position: relative;
}
.partner-checklist div span {
  color: var(--mh-blue); font-weight: 900; font-size: 1rem;
  position: absolute; left: 0; top: 0.15rem;
}
.partner-checklist div strong {
  color: var(--mh-dark-blue);
}

/* Also make strong in opp cards white */
.partner-opp-card p strong { color: white; }

/* Partnership Opportunities — dark section with glass cards */
.partner-opps-section {
  background: var(--mh-dark-blue); padding: 7rem 2rem;
  position: relative; overflow: hidden;
}
.partner-opps-section::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 450px; height: 450px; border-radius: 50%;
  border: 70px solid rgba(113,190,237,0.04);
  pointer-events: none;
}
.partner-opps-section .section-tag::before { background: var(--mh-red); }
.partner-opps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.partner-opp-card {
  background: rgba(255,255,255,0.06); border-radius: 20px;
  padding: 2.5rem; border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.partner-opp-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mh-baby-blue), white);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.partner-opp-card:hover::before { transform: scaleX(1); }
.partner-opp-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(113,190,237,0.3);
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(13,122,210,0.15);
}
.partner-opp-num {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 700;
  color: rgba(255,255,255,0.1);
  line-height: 1; margin-bottom: 1rem;
  transition: color 0.4s ease;
}
.partner-opp-card:hover .partner-opp-num { color: rgba(13,122,210,0.35) !important; }
.partner-opp-card h3 {
  font-size: 1.3rem; font-weight: 900; color: white;
  margin-bottom: 0.8rem;
}
.partner-opp-card p {
  font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.8;
}
.partner-opp-card:hover p { color: rgba(255,255,255,0.85); }

/* Partnership cards in light section */
.partnership-content-section .partner-opp-card {
  background: white; border: 1px solid rgba(13,122,210,0.08); backdrop-filter: none;
}
.partnership-content-section .partner-opp-card:hover {
  background: var(--mh-light-bg); border-color: rgba(13,122,210,0.15);
  box-shadow: 0 8px 32px rgba(13,122,210,0.08);
}
.partnership-content-section .partner-opp-num { color: rgba(13,122,210,0.15); }
.partnership-content-section .partner-opp-card:hover .partner-opp-num { color: rgba(13,122,210,0.25); }
.partnership-content-section .partner-opp-card h3 { color: var(--mh-dark-blue); }
.partnership-content-section .partner-opp-card p { color: var(--mh-text-light); }
.partnership-content-section .partner-opp-card:hover p { color: var(--mh-text); }
.partnership-content-section .partner-opp-card p strong { color: var(--mh-dark-blue); }
.partnership-content-section .partner-opp-card::before {
  background: linear-gradient(90deg, var(--mh-blue), var(--mh-baby-blue));
}

/* What We Offer — horizontal numbered cards */
.partner-offer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-bottom: 4rem;
}
.partner-offer-card {
  display: flex; align-items: flex-start; gap: 1.5rem;
  background: white; border-radius: 16px; padding: 2rem;
  border: 1px solid rgba(13,122,210,0.06);
  box-shadow: 0 2px 12px rgba(0,62,96,0.04);
  transition: all 0.35s ease;
}
.partner-offer-card:hover {
  box-shadow: 0 8px 32px rgba(0,62,96,0.1);
  transform: translateY(-3px);
}
.partner-offer-num {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700;
  color: var(--mh-baby-blue); line-height: 1;
  flex-shrink: 0; min-width: 2.5rem;
}
.partner-offer-card h4 {
  font-size: 1.1rem; font-weight: 900;
  color: var(--mh-dark-blue); margin-bottom: 0.4rem;
}
.partner-offer-card p {
  font-size: 0.9rem; color: var(--mh-text-light); line-height: 1.7; margin: 0;
}

/* Partner Requirements — dark split card */
.partner-req-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,62,96,0.12);
  margin-bottom: 2rem;
}
.partner-req-left {
  background: linear-gradient(145deg, var(--mh-dark-blue) 0%, #0a5a8c 100%);
  padding: 3rem;
}
.partner-req-left .section-tag::before { background: var(--mh-red); }
.partner-req-left h3 {
  font-family: var(--font-heading);
  font-size: 2rem; color: white; margin-bottom: 1rem; line-height: 1.2;
}
.partner-req-left p {
  font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.8;
}
.partner-req-right {
  background: white; padding: 3rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1rem;
}
.partner-req-item {
  font-size: 0.95rem; color: var(--mh-text-light); line-height: 1.7;
  padding-left: 1.6rem; position: relative;
}
.partner-req-item span {
  color: var(--mh-blue); font-weight: 900; font-size: 1.1rem;
  position: absolute; left: 0; top: 0.1rem;
}
.partner-req-item strong {
  color: var(--mh-dark-blue);
}

/* Join Us page — hero */
.joinus-hero {
  position: relative; overflow: hidden;
  min-height: 70vh;
  display: flex; align-items: flex-end;
  background: hsl(205, 100%, 8%);
  margin-bottom: -1px;
}
.joinus-hero-bg { position: absolute; inset: 0; z-index: 1; }
.joinus-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
  animation: joinusHeroZoom 22s ease-in-out infinite alternate;
}
@keyframes joinusHeroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.05); }
}
.joinus-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top,
      hsla(205, 100%, 8%, 0.92) 0%,
      hsla(205, 100%, 8%, 0.68) 22%,
      hsla(205, 100%, 8%, 0.32) 45%,
      hsla(205, 100%, 10%, 0.12) 68%,
      hsla(205, 100%, 12%, 0.05) 85%,
      transparent 100%
    ),
    linear-gradient(to right,
      hsla(205, 100%, 8%, 0.5) 0%,
      hsla(205, 100%, 8%, 0.15) 45%,
      transparent 75%
    );
}
.joinus-hero-content {
  position: relative; z-index: 3;
  padding: 0 4rem 5rem;
  max-width: 1320px; margin: 0 auto; width: 100%;
}
.joinus-hero-content .section-tag::before { background: var(--mh-red); }
.joinus-content-section { padding-top: 3.5rem; }

/* Split intro banner */
.joinus-intro-banner {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem; align-items: center;
}
.joinus-intro-text .section-tag { margin-bottom: 0.8rem; }

/* Stats card on right */
.joinus-stats-card {
  background: white; border-radius: 20px;
  border: 1px solid rgba(13,122,210,0.08);
  box-shadow: 0 8px 40px rgba(0,62,96,0.1);
  overflow: hidden;
  transition: all 0.4s ease;
}
.joinus-stats-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(0,62,96,0.14);
}
.joinus-stats-row {
  display: flex; align-items: center;
  padding: 2.5rem 2rem;
  background: var(--mh-light-bg);
}
.joinus-stat {
  flex: 1; text-align: center;
}
.joinus-stat-num {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 700;
  color: var(--mh-dark-blue); line-height: 1;
  margin-bottom: 0.3rem;
}
.joinus-stat-label {
  font-size: 0.78rem; font-weight: 700;
  color: var(--mh-text-light);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.joinus-stat-divider {
  width: 1px; height: 48px;
  background: rgba(13,122,210,0.12);
  flex-shrink: 0;
}
.joinus-stats-bottom {
  padding: 1.5rem 2rem 2rem;
  text-align: center;
}
.joinus-stats-bottom p {
  font-size: 0.88rem; color: var(--mh-text-light);
  font-weight: 700; letter-spacing: 0.03em;
  margin: 0;
}

/* Why Choose grid — 5 cards with icons */
.joinus-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.joinus-why-card {
  background: white; border-radius: 16px; padding: 2rem;
  border: 1px solid rgba(13,122,210,0.06);
  box-shadow: 0 2px 12px rgba(0,62,96,0.04);
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.joinus-why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mh-blue), var(--mh-baby-blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.joinus-why-card:hover::after { transform: scaleX(1); }
.joinus-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,62,96,0.1);
}
.joinus-why-num {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 700;
  color: var(--mh-light-bg); line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}
.joinus-why-card:hover .joinus-why-num { color: var(--mh-baby-blue); }
.joinus-why-card h3 {
  font-size: 1.05rem; font-weight: 900; color: var(--mh-dark-blue);
  margin-bottom: 0.5rem;
}
.joinus-why-card p {
  font-size: 0.9rem; color: var(--mh-text-light); line-height: 1.7; margin: 0;
}

/* Our Promise — dark section (reuses partner-opps styles) */
.joinus-promise-section {
  background: var(--mh-dark-blue); padding: 7rem 2rem;
  position: relative; overflow: hidden;
}
.joinus-promise-section::before {
  content: ''; position: absolute; left: -120px; bottom: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 65px solid rgba(113,190,237,0.04);
  pointer-events: none;
}
.joinus-promise-section .section-tag::before { background: var(--mh-red); }

/* Careers divider — compact dark banner */
.joinus-careers-divider {
  background: linear-gradient(135deg, var(--mh-dark-blue) 0%, #0a5a8c 100%);
  padding: 5rem 2rem;
  position: relative; overflow: hidden;
}
.joinus-careers-divider::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  border: 50px solid rgba(255,255,255,0.03);
  pointer-events: none;
}
.joinus-careers-divider .section-tag::before { background: var(--mh-red); }

/* Resources page — hero */
.resources-hero {
  position: relative; overflow: hidden;
  min-height: 70vh;
  display: flex; align-items: flex-end;
  background: hsl(205, 100%, 8%);
  margin-bottom: -1px;
}
.resources-hero-bg { position: absolute; inset: 0; z-index: 1; }
.resources-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  animation: resourcesHeroZoom 22s ease-in-out infinite alternate;
}
@keyframes resourcesHeroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.05); }
}
.resources-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top,
      hsla(205, 100%, 8%, 0.92) 0%,
      hsla(205, 100%, 8%, 0.68) 22%,
      hsla(205, 100%, 8%, 0.32) 45%,
      hsla(205, 100%, 10%, 0.12) 68%,
      hsla(205, 100%, 12%, 0.05) 85%,
      transparent 100%
    ),
    linear-gradient(to right,
      hsla(205, 100%, 8%, 0.5) 0%,
      hsla(205, 100%, 8%, 0.15) 45%,
      transparent 75%
    );
}
.resources-hero-content {
  position: relative; z-index: 3;
  padding: 0 4rem 5rem;
  max-width: 1320px; margin: 0 auto; width: 100%;
}
.resources-hero-content .section-tag::before { background: var(--mh-red); }
.resources-content-section { padding-top: 3.5rem; }

/* Contact page — hero */
.contact-hero {
  position: relative; overflow: hidden;
  min-height: 80vh;
  display: flex; align-items: flex-end;
  background: hsl(205, 100%, 8%);
  margin-bottom: -1px;
}
.contact-hero-bg { position: absolute; inset: 0; z-index: 1; }
.contact-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  animation: contactHeroZoom 22s ease-in-out infinite alternate;
}
@keyframes contactHeroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.05); }
}
.contact-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top,
      hsla(205, 100%, 8%, 0.92) 0%,
      hsla(205, 100%, 8%, 0.68) 22%,
      hsla(205, 100%, 8%, 0.32) 45%,
      hsla(205, 100%, 10%, 0.12) 68%,
      hsla(205, 100%, 12%, 0.05) 85%,
      transparent 100%
    ),
    linear-gradient(to right,
      hsla(205, 100%, 8%, 0.5) 0%,
      hsla(205, 100%, 8%, 0.15) 45%,
      transparent 75%
    );
}
.contact-hero-content {
  position: relative; z-index: 3;
  padding: 0 4rem 5rem;
  max-width: 1320px; margin: 0 auto; width: 100%;
}
.contact-hero-content .section-tag::before { background: var(--mh-red); }
.contact-content-section { padding-top: 3.5rem; overflow: hidden; }

/* Blog grid */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.blog-card {
  background: white; border-radius: 20px;
  border: 1px solid rgba(13,122,210,0.06);
  box-shadow: 0 4px 20px rgba(0,62,96,0.06);
  overflow: hidden; display: flex; flex-direction: column;
  transition: all 0.4s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,62,96,0.12);
}

/* Colored top banner per card */
.blog-card-top {
  padding: 2rem 2rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  position: relative;
}
.blog-card-employers .blog-card-top { background: linear-gradient(135deg, rgba(0,62,96,0.06) 0%, rgba(13,122,210,0.04) 100%); border-bottom: 3px solid var(--mh-dark-blue); }
.blog-card-helpers .blog-card-top { background: linear-gradient(135deg, rgba(13,122,210,0.06) 0%, rgba(113,190,237,0.06) 100%); border-bottom: 3px solid var(--mh-blue); }
.blog-card-industry .blog-card-top { background: linear-gradient(135deg, rgba(223,0,0,0.04) 0%, rgba(13,122,210,0.04) 100%); border-bottom: 3px solid var(--mh-red); }

.blog-card-num {
  font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 700;
  color: var(--mh-baby-blue);
  line-height: 1;
  transition: color 0.3s ease;
}
.blog-card-employers .blog-card-num { color: var(--mh-dark-blue); }
.blog-card-helpers .blog-card-num { color: var(--mh-blue); }
.blog-card-industry .blog-card-num { color: var(--mh-red); }
.blog-card:hover .blog-card-num { opacity: 0.6; }
.blog-card-top h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem; color: var(--mh-dark-blue);
  margin: 0; line-height: 1.3;
}

/* Card body */
.blog-card ul {
  list-style: none; padding: 1.5rem 2rem; margin: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
  flex: 1;
}
.blog-card ul li {
  font-size: 0.88rem; color: var(--mh-text-light); line-height: 1.6;
  padding-left: 1.2rem; position: relative;
}
.blog-card ul li::before {
  content: ''; position: absolute; left: 0; top: 0.55rem;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mh-blue);
}
.blog-card-helpers ul li::before { background: var(--mh-baby-blue); }
.blog-card-industry ul li::before { background: var(--mh-red); }

/* Card link */
.blog-card-link {
  display: block; padding: 1.2rem 2rem;
  font-size: 0.82rem; font-weight: 800;
  color: var(--mh-blue); text-transform: uppercase;
  letter-spacing: 0.06em; text-decoration: none;
  border-top: 1px solid rgba(13,122,210,0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}
.blog-card-link:hover {
  background: var(--mh-light-bg);
  color: var(--mh-dark-blue);
  padding-left: 2.5rem;
}

/* ============================================
   CAREER JOURNEY — Roadmap flowing path
   ============================================ */
.journey-section { margin-top: 4rem; }
.journey-path {
  background: white;
  border-radius: 24px;
  padding: 3.5rem 2rem 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13,122,210,0.06);
  box-shadow: 0 4px 24px rgba(0,62,96,0.06);
}

/* Row of nodes */
.journey-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 0 2rem;
}

/* Horizontal line — animated draw-in */
.journey-row::before {
  content: '';
  position: absolute;
  top: 62px;
  left: 6%; right: 6%;
  height: 3px;
  background: linear-gradient(90deg, var(--mh-baby-blue), var(--mh-blue), var(--mh-baby-blue));
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.journey-path.in-view .journey-row::before {
  transform: scaleX(1);
}

/* Animated dot traveling along the line */
.journey-row::after {
  content: '';
  position: absolute;
  top: 57px;
  left: 6%;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--mh-blue);
  box-shadow: 0 0 12px rgba(13,122,210,0.5), 0 0 24px rgba(13,122,210,0.2);
  z-index: 1;
  opacity: 0;
  animation: none;
}
.journey-path.in-view .journey-row::after {
  animation: travelDot 3s 0.6s ease-in-out forwards;
}
@keyframes travelDot {
  0%   { left: 6%; opacity: 1; }
  90%  { left: 92%; opacity: 1; }
  100% { left: 92%; opacity: 0; }
}

/* Each node */
.journey-node {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 200px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.journey-path.in-view .journey-node:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.journey-path.in-view .journey-node:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.journey-path.in-view .journey-node:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }
.journey-path.in-view .journey-node:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 1.2s; }
.journey-path.in-view .journey-node:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 1.5s; }

.journey-node-num {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  color: var(--mh-blue);
  margin-bottom: 0.6rem;
  transition: transform 0.4s ease, color 0.3s;
}
.journey-node:hover .journey-node-num {
  transform: translateY(-4px);
  color: var(--mh-dark-blue);
}

.journey-node-circle {
  width: 68px; height: 68px; border-radius: 50%;
  background: white;
  border: 3px solid var(--mh-baby-blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,62,96,0.08);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 2;
}
.journey-node:hover .journey-node-circle {
  border-color: var(--mh-blue);
  box-shadow: 0 6px 28px rgba(13,122,210,0.2);
  transform: scale(1.12);
}

/* Staggered pulse rings — continuous */
.journey-node-circle::after {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--mh-baby-blue);
  opacity: 0;
}
.journey-path.in-view .journey-node:nth-child(1) .journey-node-circle::after { animation: journeyPulse 3s 1.0s ease-in-out infinite; }
.journey-path.in-view .journey-node:nth-child(2) .journey-node-circle::after { animation: journeyPulse 3s 1.4s ease-in-out infinite; }
.journey-path.in-view .journey-node:nth-child(3) .journey-node-circle::after { animation: journeyPulse 3s 1.8s ease-in-out infinite; }
.journey-path.in-view .journey-node:nth-child(4) .journey-node-circle::after { animation: journeyPulse 3s 2.2s ease-in-out infinite; }
.journey-path.in-view .journey-node:nth-child(5) .journey-node-circle::after { animation: journeyPulse 3s 2.6s ease-in-out infinite; }

@keyframes journeyPulse {
  0%, 100% { opacity: 0; transform: scale(0.9); }
  50% { opacity: 0.45; transform: scale(1.25); }
}

/* Pop-in bounce on the circle itself */
.journey-path.in-view .journey-node:nth-child(1) .journey-node-circle { animation: circlePop 0.6s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.journey-path.in-view .journey-node:nth-child(2) .journey-node-circle { animation: circlePop 0.6s 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.journey-path.in-view .journey-node:nth-child(3) .journey-node-circle { animation: circlePop 0.6s 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.journey-path.in-view .journey-node:nth-child(4) .journey-node-circle { animation: circlePop 0.6s 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.journey-path.in-view .journey-node:nth-child(5) .journey-node-circle { animation: circlePop 0.6s 1.7s cubic-bezier(0.34, 1.56, 0.64, 1) both; }

@keyframes circlePop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* Step text */
.journey-node-title {
  font-size: 0.78rem; font-weight: 900;
  color: var(--mh-dark-blue);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  line-height: 1.4;
  word-break: break-word;
}
.journey-node-desc {
  font-size: 0.8rem; color: var(--mh-text-light);
  line-height: 1.6;
}

/* Pricing content section */
.pricing-content-section { padding-top: 4rem; padding-bottom: 5rem; background: var(--mh-light-bg); }

/* Pricing grid — two cards side by side */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: stretch;
}

/* Pricing cards */
.pricing-card {
  background: white; border-radius: 24px;
  padding: 3rem; position: relative;
  border: 1px solid rgba(13,122,210,0.08);
  box-shadow: 0 12px 48px rgba(0,62,96,0.12), 0 2px 8px rgba(0,62,96,0.06);
  transition: all 0.4s ease;
  display: flex; flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,62,96,0.16), 0 4px 12px rgba(0,62,96,0.08);
}
.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem; color: var(--mh-dark-blue);
  margin-bottom: 0.8rem; line-height: 1.3;
}
.pricing-card > p {
  font-size: 0.95rem; color: var(--mh-text-light);
  line-height: 1.7; margin-bottom: 2rem;
}
.pricing-card > .contact-form { flex: 1; display: flex; flex-direction: column; }
.pricing-card > .contact-form button { margin-top: auto; }

/* Primary card — dark blue gradient */
.pricing-card-primary {
  background: linear-gradient(145deg, var(--mh-dark-blue) 0%, #0a5a8c 100%);
  border: none;
  box-shadow: 0 16px 56px rgba(0,62,96,0.28), 0 4px 12px rgba(0,62,96,0.12);
}
.pricing-card-primary h3 { color: white; }
.pricing-card-primary > p { color: rgba(255,255,255,0.75); }

/* Badge */
.pricing-card-badge {
  position: absolute; top: -1px; right: 2rem;
  background: var(--mh-red); color: white;
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.5rem 1.2rem;
  border-radius: 0 0 10px 10px;
}

/* Features list inside primary card */
.pricing-card-features {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pricing-card-features div {
  font-size: 0.88rem; color: rgba(255,255,255,0.7);
  font-weight: 700;
}

/* Form overrides inside primary card */
.pricing-card-primary .form-group input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: white;
}
.pricing-card-primary .form-group input::placeholder {
  color: rgba(255,255,255,0.4);
}
.pricing-card-primary .form-group input:focus {
  border-color: var(--mh-baby-blue);
  background: rgba(255,255,255,0.12);
}

.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; }
.vm-card { background: white; border-radius: 20px; padding: 2.5rem; border: 1px solid rgba(13,122,210,0.08); transition: all 0.4s; position: relative; overflow: hidden; }
.vm-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--mh-blue); transition: height 0.4s; }
.vm-card:hover::before { height: 100%; }
.vm-card:hover { box-shadow: 0 4px 16px rgba(0,62,96,0.06); transform: translateY(-4px); }
.vm-card.vm-card-img { padding: 0; min-height: 280px; display: flex; align-items: flex-end; border: none; background: hsl(205, 100%, 8%); border-radius: 20px; overflow: hidden; isolation: isolate; flex-shrink: 0; }
.vm-card-bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.vm-card-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s ease; }
.vm-card.vm-card-img:hover .vm-card-bg img { transform: scale(1.06); }
.vm-card-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, hsla(205,100%,8%,0.92) 0%, hsla(205,100%,8%,0.7) 30%, hsla(205,100%,8%,0.35) 55%, hsla(205,100%,12%,0.15) 80%, hsla(205,100%,12%,0.08) 100%); }
.vm-card-inner { position: relative; z-index: 3; padding: 2rem 2.5rem; }
.vm-card.vm-card-img h3 { color: white; text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.vm-card.vm-card-img p { color: rgba(255,255,255,0.85); text-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.vm-card h3 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--mh-dark-blue); margin-bottom: 1rem; }
.vm-card p { font-size: 1rem; color: var(--mh-text-light); line-height: 1.7; }

/* ============================================
   CORE VALUES — Zigzag image/text layout
   ============================================ */
.core-values-section {
  padding: 7rem 2rem 5rem;
  background: white;
  position: relative;
}

.cv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
.cv-row:last-child { margin-bottom: 0; }

/* Reverse row: text left, image right */
.cv-row-reverse { direction: rtl; }
.cv-row-reverse > * { direction: ltr; }

/* Image side */
.cv-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 62, 96, 0.12);
  position: relative;
}
.cv-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.cv-img-wrap:hover img {
  transform: scale(1.04);
}

/* Text side */
.cv-text-wrap {
  padding: 1rem 0;
}
.cv-num {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--mh-light-bg);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
  transition: color 0.5s ease;
}
.cv-row:hover .cv-num {
  color: var(--mh-baby-blue);
}
.cv-text-wrap h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--mh-dark-blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cv-text-wrap p {
  font-size: 1.05rem;
  color: var(--mh-text-light);
  line-height: 1.9;
  max-width: 480px;
}

/* Zigzag scroll animations */
.cv-anim-left,
.cv-anim-right {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.cv-anim-left  { transform: translateX(-80px); }
.cv-anim-right { transform: translateX(80px); }
.cv-anim-left.in-view,
.cv-anim-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Timeline */
.timeline { margin-top: 4rem; position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--mh-baby-blue); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 4rem; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: 50%; top: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--mh-blue); border: 3px solid white; transform: translateX(-50%); z-index: 1; box-shadow: 0 0 0 4px var(--mh-baby-blue); }
.timeline-year { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; color: var(--mh-baby-blue); text-align: right; }
.timeline-content h3 { font-size: 1.3rem; font-weight: 900; color: var(--mh-dark-blue); margin-bottom: 0.75rem; }
.timeline-content p { font-size: 0.95rem; color: var(--mh-text-light); line-height: 1.7; }

/* Timeline Panels */
.tl-section { margin-top: -1px; position: relative; }
.tl-panel { position: relative; overflow: hidden; margin: 0; padding: 0; background: hsl(205, 100%, 8%); margin-top: -2px; }
.tl-panel:first-child { margin-top: 0; }
.tl-panel-bg { position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px; z-index: 1; }
.tl-panel-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; animation: tlKenBurns 12s ease-in-out infinite alternate; filter: blur(2px); transform-origin: center; }
@keyframes tlKenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.12); } }
.tl-panel::after {
  content: ''; position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px; z-index: 2;
  background: linear-gradient(to top, hsla(205,100%,8%,0.96) 0%, hsla(205,100%,8%,0.88) 20%, hsla(205,100%,8%,0.65) 40%, hsla(205,100%,10%,0.5) 60%, hsla(205,100%,12%,0.35) 80%, hsla(205,100%,12%,0.25) 100%), linear-gradient(to right, hsla(205,100%,8%,0.6) 0%, hsla(205,100%,8%,0.25) 45%, transparent 100%);
}
.tl-panel-content { position: relative; z-index: 3; padding: 5rem 4rem; max-width: 1320px; margin: 0 auto; width: 100%; }
.tl-panel:first-child .tl-panel-content { padding-top: 6rem; }
.tl-panel:last-child .tl-panel-content { padding-bottom: 6rem; }
.tl-panel:not(:first-child) { min-height: 50vh; display: flex; align-items: center; }
.tl-panel-content .section-tag::before { background: var(--mh-red); }
.tl-panel-content .section-tag { text-shadow: 0 1px 8px rgba(0,0,0,0.3); font-weight: 900; }
.tl-panel-content .section-title { text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.tl-items { display: flex; flex-direction: column; gap: 3rem; padding-left: 3rem; border-left: 2px solid rgba(113,190,237,0.3); margin-top: 0; margin-bottom: 0; padding-top: 1rem; padding-bottom: 1rem; }
.tl-panel:first-child .tl-items { margin-bottom: -5rem; padding-bottom: 6rem; margin-top: 2rem; }
.tl-panel:not(:first-child):not(:last-child) .tl-items { margin-top: -5rem; padding-top: 6rem; margin-bottom: -5rem; padding-bottom: 6rem; }
.tl-panel:last-child .tl-items { margin-top: -5rem; padding-top: 6rem; }
.tl-item { position: relative; }
.tl-marker { position: absolute; left: -3rem; top: 0.3rem; width: 16px; height: 16px; border-radius: 50%; background: var(--mh-blue); border: 3px solid hsl(205, 100%, 8%); transform: translateX(calc(-50% + 1px)); box-shadow: 0 0 0 4px rgba(113,190,237,0.3); }
.tl-year { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; color: var(--mh-baby-blue); line-height: 1; margin-bottom: 0.8rem; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.tl-text h3 { font-size: 1.5rem; font-weight: 900; color: white; margin-bottom: 0.6rem; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.tl-text p { font-size: 1.05rem; color: rgba(255,255,255,0.88); line-height: 1.8; max-width: 600px; font-weight: 400; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }

/* Support Grid */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.support-card { background: white; border-radius: 20px; padding: 2.5rem; border: 1px solid rgba(13,122,210,0.06); text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; }
.support-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--mh-blue), var(--mh-baby-blue)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.support-card:hover::after { transform: scaleX(1); }
.support-card:hover { box-shadow: 0 8px 32px rgba(0,62,96,0.1); transform: translateY(-6px); }
.support-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--mh-light-bg); line-height: 1; margin-bottom: 1rem; transition: color 0.4s ease; }
.support-card:hover .support-num { color: var(--mh-baby-blue); }
.support-card h3 { font-size: 1.15rem; font-weight: 900; color: var(--mh-dark-blue); margin-bottom: 0.75rem; }
.support-card p { font-size: 0.9rem; color: var(--mh-text-light); line-height: 1.7; }

/* Helper Comparison Table */
.helper-comparison-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.helper-comparison-table th { background: var(--mh-dark-blue); color: white; padding: 1rem 1.2rem; text-align: left; font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; }
.helper-comparison-table th:first-child { background: var(--mh-dark-blue); min-width: 160px; }
.helper-comparison-table td { padding: 0.9rem 1.2rem; border-bottom: 1px solid rgba(13,122,210,0.1); color: var(--mh-text-light); line-height: 1.6; vertical-align: top; }
.helper-comparison-table td:first-child { font-weight: 600; color: var(--mh-dark-blue); background: rgba(13,122,210,0.03); }
.helper-comparison-table tbody tr:hover { background: rgba(13,122,210,0.04); }
.helper-comparison-table thead tr th:nth-child(2) { background: linear-gradient(135deg, #DF0000, #003E60); }
.helper-comparison-table thead tr th:nth-child(3) { background: linear-gradient(135deg, var(--mh-blue), var(--mh-dark-blue)); }
.helper-comparison-table thead tr th:nth-child(4) { background: linear-gradient(135deg, var(--mh-baby-blue), var(--mh-blue)); }

/* Helper Nationality CTAs */
.helper-nationality-ctas { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.helper-nationality-ctas .btn-primary { flex: 1; min-width: 200px; text-align: center; }

/* Helper Type Cards */
.helper-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 4rem; }
.helper-type-card { border-radius: 20px; overflow: hidden; background: white; border: 1px solid rgba(13,122,210,0.06); transition: all 0.4s; }
.helper-type-card:hover { box-shadow: 0 6px 20px rgba(0,62,96,0.07); transform: translateY(-6px); }
.helper-type-header { padding: 2.5rem; background: linear-gradient(135deg, var(--mh-blue), var(--mh-dark-blue)); color: white; text-align: center; }
.helper-type-header h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 0.5rem; }
.helper-type-header p { font-size: 0.85rem; opacity: 0.85; }
.helper-type-body { padding: 2rem; }
.helper-type-body li { font-size: 0.9rem; color: var(--mh-text-light); padding: 0.5rem 0; list-style: none; position: relative; padding-left: 1.5rem; }
.helper-type-body li::before { content: '✓'; position: absolute; left: 0; color: var(--mh-blue); font-weight: 700; }

/* FAQ */
.faq-group { margin-top: 3rem; }
.faq-group:first-child { margin-top: 0; }
.faq-group-title {
  font-family: var(--font-heading);
  font-size: 1.5rem; color: var(--mh-dark-blue);
  margin-bottom: 1rem; line-height: 1.3;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--mh-blue);
  display: inline-block;
}
.faq-list { max-width: 100%; display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  border: 1px solid rgba(13,122,210,0.06); padding: 0;
  background: white; border-radius: 14px;
  transition: all 0.35s ease;
  box-shadow: 0 2px 8px rgba(0,62,96,0.04);
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0,62,96,0.08);
  border-color: rgba(13,122,210,0.12);
}
.faq-item.open {
  box-shadow: 0 6px 28px rgba(0,62,96,0.1);
  border-color: rgba(13,122,210,0.15);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 1.05rem; font-weight: 700;
  color: var(--mh-dark-blue); transition: color 0.3s;
  padding: 1.3rem 1.5rem;
}
.faq-q:hover { color: var(--mh-blue); }
.faq-toggle {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--mh-light-bg); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--mh-blue); flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s, color 0.3s;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--mh-blue); color: white;
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease;
  font-size: 0.95rem; color: var(--mh-text-light); line-height: 1.8;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 800px; padding: 0 1.5rem 1.5rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 4rem; }
.contact-info-card { background: var(--mh-dark-blue); border-radius: 20px; padding: 3rem; color: white; }
.contact-info-card h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.contact-detail p { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.85); }
.contact-detail strong { color: white; display: block; margin-bottom: 0.25rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mh-dark-blue); }
.form-group input, .form-group select, .form-group textarea { padding: 1rem 1.2rem; border: 2px solid rgba(13,122,210,0.1); border-radius: 12px; font-family: var(--font-body); font-size: 1rem; transition: border-color 0.3s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--mh-blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.contact-step { background: white; border-radius: 14px; padding: 1.5rem; border: 1px solid rgba(13,122,210,0.06); text-align: center; transition: all 0.3s; }
.contact-step:hover { border-color: var(--mh-blue); box-shadow: 0 3px 12px rgba(13,122,210,0.07); transform: translateY(-3px); }
.contact-step-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--mh-baby-blue); margin-bottom: 0.5rem; line-height: 1; }
.contact-step p { font-size: 0.82rem; color: var(--mh-text-light); line-height: 1.6; }
.contact-form-heading { font-family: var(--font-heading); font-size: 1.8rem; color: var(--mh-dark-blue); margin-bottom: 0.5rem; }
.contact-form-subtext { font-size: 1rem; color: var(--mh-text-light); line-height: 1.7; margin-bottom: 2rem; }
.contact-benefits { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-benefit { font-size: 0.88rem; color: var(--mh-text-light); line-height: 1.7; padding: 0.3rem 0; }

/* Resource List */
.resource-list { list-style: none; padding: 0; margin: 0.8rem 0 1.2rem; }
.resource-list li { font-size: 0.85rem; color: var(--mh-text-light); line-height: 1.7; padding: 0.25rem 0 0.25rem 1.3rem; position: relative; }
.resource-list li::before { content: '•'; position: absolute; left: 0; color: var(--mh-blue); font-weight: 700; }

/* Gallery Cards */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.gallery-card { border-radius: 20px; overflow: hidden; position: relative; min-height: 420px; transition: all 0.4s; }
.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.gallery-card-bg { position: absolute; inset: 0; z-index: 1; }
.gallery-card-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.gallery-card::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background-image: linear-gradient(to top, hsla(205,100%,8%,0.95) 0%, hsla(205,100%,8%,0.9) 18%, hsla(205,100%,8%,0.8) 32%, hsla(205,100%,10%,0.65) 44%, hsla(205,100%,12%,0.45) 55%, hsla(205,100%,12%,0.25) 68%, hsla(205,100%,12%,0.1) 82%, hsla(205,100%,12%,0) 100%);
}
.gallery-card-content { position: relative; z-index: 3; padding: 2rem 2rem 2.5rem; display: flex; flex-direction: column; justify-content: flex-end; min-height: 420px; }
.gallery-card-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: white; background: rgba(13,122,210,0.6); backdrop-filter: blur(4px); display: inline-block; padding: 0.4rem 1rem; border-radius: 4px; border-left: 3px solid var(--mh-red); position: absolute; top: 1.2rem; left: 1.2rem; z-index: 4; margin: 0; }
.gallery-card-content ul { list-style: none; padding: 0; margin: 0; }
.gallery-card-content ul li { font-size: 0.88rem; color: rgba(255,255,255,0.85); line-height: 1.6; padding: 0.25rem 0 0.25rem 1.2rem; position: relative; }
.gallery-card-content ul li::before { content: '•'; position: absolute; left: 0; color: var(--mh-baby-blue); font-weight: 700; }

/* ============================================
   UTILITY CLASSES — extracted from inline styles
   ============================================ */

/* Hero subtitle — used on all page hero sections */
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 640px; line-height: 1.8; }

/* Section tag variants */
.section-tag--baby-blue { color: var(--mh-baby-blue); }
.section-tag--inline { display: inline-block; }

/* Section title variants */
.section-title--white { color: white; }
.section-title--centered { margin: 0 auto; }

/* Text utilities */
.text-center { text-align: center; }
.text-light { color: var(--mh-text-light); }
.text-body { font-size: 1.05rem; color: var(--mh-text-light); line-height: 1.8; }
.text-body--narrow { font-size: 1.05rem; color: var(--mh-text-light); line-height: 1.8; max-width: 900px; }
.text-body--centered { font-size: 1.05rem; color: var(--mh-text-light); line-height: 1.8; max-width: 600px; margin: 0 auto; }

/* Spacing utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-1h { margin-top: 1.5rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-1h { margin-bottom: 1.5rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-2h { margin-bottom: 2.5rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-3h { margin-bottom: 3.5rem; }
.pt-0 { padding-top: 0; }
.pt-3h { padding-top: 3.5rem; }
.pt-5 { padding-top: 5rem; }

/* Service detail heading */
.svc-section-heading { font-family: var(--font-heading); font-size: 2.4rem; color: var(--mh-dark-blue); margin-bottom: 1rem; }
.svc-section-heading--sm { font-family: var(--font-heading); font-size: 1.8rem; color: var(--mh-dark-blue); margin-bottom: 1.5rem; }
.svc-section-heading--xs { font-family: var(--font-heading); font-size: 1.6rem; color: var(--mh-dark-blue); }
.svc-section-heading--lg { font-family: var(--font-heading); font-size: 1.8rem; color: var(--mh-dark-blue); margin-bottom: 1rem; }

/* Info box — light bg with rounded corners */
.info-box { background: var(--mh-light-bg); border-radius: 16px; padding: 2.5rem; margin-bottom: 3rem; }
.info-box__heading { font-family: var(--font-heading); font-size: 1.4rem; color: var(--mh-dark-blue); margin-bottom: 1.2rem; }
.info-box__heading--lg { font-family: var(--font-heading); font-size: 1.6rem; color: var(--mh-dark-blue); margin-bottom: 1.5rem; }

/* Info grid — auto-fit columns */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }

/* Pricing table placeholder cells */
.pricing-tbd { text-align: center; color: var(--mh-text-light); font-style: italic; }

/* Cost item */
.cost-label { font-size: 0.95rem; color: var(--mh-text-light); line-height: 1.7; margin-bottom: 0.5rem; }
.cost-label strong { color: var(--mh-dark-blue); }
.cost-value { font-size: 0.95rem; color: var(--mh-text-light); line-height: 1.7; }

/* Table overflow wrapper */
.table-wrap { overflow-x: auto; margin-bottom: 3rem; }

/* Full-width button */
.btn-full { width: 100%; justify-content: center; }

/* Contact info card sections */
.contact-card-divider { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-card-divider--sm { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-card-subhead { color: white; font-size: 0.95rem; margin-bottom: 1rem; }
.contact-card-text { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-bottom: 0.3rem; }
.contact-card-text--sm { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.contact-card-text--xs { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.contact-card-social { display: flex; gap: 1rem; align-items: center; }
.contact-card-social a { color: var(--mh-baby-blue); text-decoration: none; font-size: 0.85rem; font-weight: 700; transition: color 0.3s; display: flex; align-items: center; gap: 0.4rem; }
.contact-card-social a:hover { color: white; }

/* Contact detail icon image */
.contact-icon { width: 28px; height: 28px; object-fit: contain; }
.contact-icon--light { filter: brightness(0) invert(1); opacity: 0.85; }

/* Inline icon (small) */
.icon-sm { width: 14px; height: 14px; object-fit: contain; vertical-align: middle; margin-right: 0.3rem; }
.icon-md { width: 18px; height: 18px; object-fit: contain; vertical-align: middle; margin-right: 0.3rem; }
.icon-lg { width: 20px; height: 20px; object-fit: contain; }

/* Numbered steps */
.steps-list { display: flex; flex-direction: column; gap: 1rem; }
.step-item { display: flex; align-items: flex-start; gap: 1rem; }
.step-num { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--mh-blue); min-width: 2rem; }

/* Career role card (light variant) */
.role-card { background: white; border: 1px solid rgba(13,122,210,0.08); backdrop-filter: none; }
.role-card .partner-opp-num { color: rgba(13,122,210,0.15); }
.role-card h3 { color: var(--mh-dark-blue); }
.role-card p { color: var(--mh-text-light); }
.role-subtitle { font-size: 0.85rem; color: var(--mh-text-light); margin-bottom: 1rem; }
.role-cta { display: inline-block; margin-top: 1rem; color: var(--mh-blue); font-weight: 700; font-size: 0.9rem; cursor: pointer; text-decoration: none; }
.role-cta:hover { color: var(--mh-dark-blue); }

/* Flex utilities */
.flex-center { display: flex; align-items: center; gap: 0.5rem; }
.flex-wrap-center { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Section with dark divider bg */
.dark-section-inner { position: relative; z-index: 1; text-align: center; }

/* Footer */
.footer { background: var(--mh-dark-blue); padding: 5rem 2rem 2rem; color: rgba(255,255,255,0.7); position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80%; max-width: 1100px; height: 1px; background: linear-gradient(90deg, transparent, rgba(113,190,237,0.2), transparent); }
.footer-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { font-size: 0.95rem; line-height: 1.8; margin-top: 1rem; max-width: 340px; color: rgba(255,255,255,0.6); }
.footer-contact { margin-top: 1.5rem; }
.footer-email { font-size: 0.9rem; font-weight: 700; color: var(--mh-baby-blue); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; letter-spacing: 0.02em; transition: color 0.3s; }
.footer-email:hover { color: white; }
.footer-col h4 { color: white; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1.2rem; font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.92rem; margin-bottom: 0.7rem; transition: color 0.3s, padding-left 0.3s; cursor: pointer; }
.footer-col a:hover { color: var(--mh-baby-blue); padding-left: 0.3rem; }
.footer-bottom { max-width: 1320px; margin: 3.5rem auto 0; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); letter-spacing: 0.03em; }
.footer-social { display: flex; gap: 1.2rem; margin-top: 1.2rem; }
.footer-social-link { font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.3s; display: inline-flex; align-items: center; }
.footer-social-link:hover { color: var(--mh-baby-blue); }
.footer-tagline { font-family: var(--font-heading); font-size: 1.15rem; color: rgba(255,255,255,0.85); font-style: italic; margin-top: 0.75rem; }

/* Scroll Animations */
[data-anim] { opacity: 0; transition: opacity 0.65s ease, translate 0.65s ease, scale 0.65s ease; }
[data-anim="up"]    { translate: 0 44px; }
[data-anim="left"]  { translate: -60px 0; }
[data-anim="right"] { translate: 60px 0; }
[data-anim="scale"] { scale: 0.92; }
[data-anim].in-view { opacity: 1; translate: 0 0; scale: 1; }
@media (prefers-reduced-motion: reduce) {
  [data-anim] { transition: opacity 0.4s ease; translate: 0 0 !important; scale: 1 !important; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .slide-heading { font-size: clamp(2.2rem, 3.5vw, 3rem); margin-left: 42%; max-width: 55%; }
  .slide-meta { margin-left: 42%; }
  .slide-bottom { margin-left: 42%; max-width: 55%; }
  .slide-bg { width: 40%; }
  .section-title { font-size: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .loyalty-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .cv-row { gap: 3rem; }
  .cv-img-wrap img { min-height: 280px; }
}

@media (max-width: 768px) {
  html { font-size: 16px; }
  .topbar-cta-group { display: none; }
  .topbar-inner { padding: 0.8rem 1.2rem; grid-template-columns: 1fr auto; }
  .menu-toggle { justify-self: end; padding-left: 0; }
  .topbar-logo img { height: 36px; }
  .menu-panel {
    min-width: 220px; max-width: 250px; padding: 1.8rem 2rem 1.5rem;
    left: auto; right: 1.2rem;
    transform: translateX(0) translateY(-10px);
  }
  .menu-panel.open {
    transform: translateX(0) translateY(0);
  }
  .about-hero { min-height: 55vh; }
  .about-hero-content { padding: 0 1.5rem 3rem; }
  .about-hero-content .section-title,
  .services-hero-content .section-title,
  .pricing-hero-content .section-title,
  .faq-hero-content .section-title,
  .partnership-hero-content .section-title,
  .joinus-hero-content .section-title,
  .resources-hero-content .section-title,
  .contact-hero-content .section-title { font-size: 2.6rem; letter-spacing: -1px; }
  .services-hero { min-height: 50vh; }
  .services-hero-content { padding: 0 1.5rem 3rem; }
  .pricing-hero { min-height: 45vh; }
  .pricing-hero-content { padding: 0 1.5rem 3rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-content-section { padding-top: 2.5rem; }
  .pricing-card { padding: 2rem; }
  .faq-hero { min-height: 45vh; }
  .faq-hero-content { padding: 0 1.5rem 3rem; }
  .faq-content-section { padding-top: 2.5rem; }
  .partnership-hero { min-height: 45vh; }
  .partnership-hero-content { padding: 0 1.5rem 3rem; }
  .partnership-content-section { padding-top: 2.5rem; }
  .partner-why-grid,
  .partner-why-grid-2col,
  .partner-why-grid-3col { grid-template-columns: 1fr !important; }
  .partner-opps-grid { grid-template-columns: 1fr !important; }
  .partner-opps-section { padding: 5rem 2rem; }
  .partner-offer-grid { grid-template-columns: 1fr !important; }
  .partner-req-card { grid-template-columns: 1fr !important; }
  .partner-req-left { padding: 2.5rem; }
  .partner-req-right { padding: 2.5rem; }
  .joinus-hero { min-height: 45vh; }
  .joinus-hero-content { padding: 0 1.5rem 3rem; }
  .joinus-content-section { padding-top: 2.5rem; }
  .joinus-intro-banner { grid-template-columns: 1fr; gap: 2rem; }
  .joinus-why-grid { grid-template-columns: 1fr; }
  .joinus-promise-section { padding: 5rem 2rem; }
  .joinus-careers-divider { padding: 3.5rem 2rem; }
  .resources-hero { min-height: 45vh; }
  .resources-hero-content { padding: 0 1.5rem 3rem; }
  .resources-content-section { padding-top: 2.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-hero { min-height: 45vh; }
  .contact-hero-content { padding: 0 1.5rem 3rem; }
  .contact-content-section { padding-top: 2.5rem; }
  .journey-row { flex-wrap: wrap; justify-content: center; gap: 2rem 0; padding: 0; }
  .journey-row::before, .journey-row::after { display: none; }
  .journey-node { flex: 0 0 50%; max-width: none; }
  .journey-path { padding: 2rem 0; border-radius: 0; margin: 0; background: transparent; border: none; box-shadow: none; overflow: hidden; }
  .journey-node-circle { width: 58px; height: 58px; font-size: 1.3rem; }

  /* Reduce spacing between hero and content sections on mobile */
  #page-about > .section { padding-top: 2.5rem !important; }
  #page-services > .section { padding-top: 2.5rem !important; }
  .tl-panel-content { padding: 3rem 1.5rem; }
  .tl-panel:first-child .tl-panel-content { padding-top: 4rem; }
  .tl-panel:last-child .tl-panel-content { padding-bottom: 4rem; }
  .tl-items { padding-left: 2rem; }
  .tl-marker { left: -2rem; }
  .tl-year { font-size: 2.2rem; }

  /* ============================================
     HERO SLIDER MOBILE FIX — consistent look, faces visible
     ============================================ */
  /* Natural height — each slide sizes to its own content, no wasted space */
  .hero-slider { height: auto; min-height: auto; background: #f5f5f0; overflow: visible; }
  .slider-track { height: auto; }
  .slider-slide {
    position: absolute; inset: auto; height: auto;
    display: flex; flex-direction: column;
  }
  .slider-slide.slide-active { position: relative; }

  /* Image area — tall enough to show faces, padded for fixed navbar (~60px) */
  .slide-bg {
    position: relative; width: 100%; top: auto; left: auto; bottom: auto;
    height: 72vw; min-height: 280px; max-height: 380px;
    padding-top: 60px; /* clear fixed navbar */
    box-sizing: border-box;
    overflow: hidden;
    background: #f5f5f0;
  }
  .slide-bg::after { display: none; }
  .slide-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%; /* show upper body / face */
    display: block;
  }
  /* Slide 1 heroimg.png — shift up to show face + upper body */
  .slider-slide:first-child .slide-bg img {
    object-position: 60% 50%;
  }
  /* Slide 2 heroright.png — show top of image where faces are */
  .slider-slide:nth-child(2) .slide-bg img {
    object-position: 60% 50%;
  }

  /* Text area — min-height keeps CTAs at a stable vertical position */
  .slide-content {
    position: relative; height: auto; min-height: 240px;
    padding: 1.4rem 1.5rem 2rem;
    justify-content: flex-start;
    background: #f5f5f0;
    display: flex; flex-direction: column;
  }
  .slide-meta { margin-left: 0; margin-bottom: 0.4rem; }
  .hero-badge { font-size: 0.55rem; padding: 0.35rem 0.8rem; }
  .slide-heading {
    margin-left: 0; max-width: 100%;
    font-size: 1.55rem; letter-spacing: -0.5px;
    line-height: 1.2; margin-bottom: 0.6rem;
  }
  .slide-bottom { margin-left: 0; max-width: 100%; overflow: visible; margin-top: auto; }
  .slide-desc { font-size: 0.88rem; margin-bottom: 0.8rem; }
  .slide-items span { font-size: 0.8rem; padding: 0.35rem 0; }
  .hero-actions {
    gap: 0.6rem; margin-top: 0.8rem;
    width: 100%;
    flex-wrap: wrap;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline-light {
    padding: 0.85rem 1.3rem; font-size: 0.72rem;
    flex: 1 1 45%; min-width: 0;
  }

  /* dots sit over the image bottom-right */
  .slider-dots { right: 1rem; bottom: 1rem; top: auto; z-index: 12; }
  .slider-progress { position: relative; }

  /* === TRUST BAR — single column vertical stack on mobile === */
  .trust-bar { padding: 1.5rem 1.5rem; }
  .trust-bar-inner {
    display: flex; flex-direction: column;
    gap: 0; align-items: center;
  }
  .trust-item-text {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 0.75rem 1rem;
    width: 100%; text-align: center;
    white-space: normal; font-size: 0.65rem; letter-spacing: 0.1em;
    line-height: 1.5;
  }
  .trust-item-text:last-child { border-bottom: none; }

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

  /* Reduce top padding for pages with fixed topbar clearance */
  .page-bg[style*="padding-top:10rem"],
  .page-bg[style*="padding-top: 10rem"] { padding-top: 7rem !important; }
  .section { padding: 4rem 1.5rem; }
  .values-grid, .services-grid, .about-grid, .contact-grid,
  .vision-mission, .helper-types, .support-grid, .gallery-grid { grid-template-columns: 1fr !important; }
  .helper-comparison-table { font-size: 0.8rem; }
  .helper-comparison-table th, .helper-comparison-table td { padding: 0.6rem 0.7rem; }
  .helper-comparison-table th { font-size: 0.85rem; }
  .helper-comparison-table th:first-child, .helper-comparison-table td:first-child { min-width: 110px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cv-row { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
  .cv-row-reverse { direction: ltr; }
  .cv-img-wrap img { min-height: 260px; }
  .cv-num { font-size: 3rem; }
  .cv-text-wrap h3 { font-size: 1.6rem; }
  .core-values-section { padding: 5rem 2rem 3rem; }
  .timeline-item { grid-template-columns: 1fr; gap: 1rem; }
  .timeline::before { left: 0; }
  .timeline-item::before { left: 0; }
  .timeline-year { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .contact-steps { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-banner { padding: 3rem 2rem; }
  .cta-banner h2 { font-size: 2rem; }
  .loyalty-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .page-bg[style*="padding-top:10rem"],
  .page-bg[style*="padding-top: 10rem"] { padding-top: 5.5rem !important; }
  .section { padding: 3rem 1.2rem; }

  /* 480px — natural height, no fixed override needed */

  /* 480px — same fixed-height cover, slightly smaller */
  .slide-bg {
    height: 70vw; min-height: 260px; max-height: 340px;
    padding-top: 56px;
  }
  .slide-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 20%; display: block;
  }
  .slider-slide:first-child .slide-bg img {
    object-position: 60% 50%;
  }
  .slider-slide:nth-child(2) .slide-bg img {
    object-position: 60% 50%;
  }

  .slide-content { min-height: 230px; padding: 1.3rem 1.2rem 1.8rem; }
  .slide-heading { font-size: 1.35rem; }
  .slider-dots { bottom: 1rem; top: auto; }
  .slide-desc { font-size: 0.85rem; }
  .slide-items span { font-size: 0.75rem; }
  .hero-badge { font-size: 0.55rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline-light { padding: 0.75rem 1rem; font-size: 0.68rem; }
  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: 0.9rem; }
  .about-hero-content .section-title,
  .services-hero-content .section-title,
  .pricing-hero-content .section-title,
  .faq-hero-content .section-title,
  .partnership-hero-content .section-title,
  .joinus-hero-content .section-title,
  .resources-hero-content .section-title,
  .contact-hero-content .section-title { font-size: 2.2rem; letter-spacing: -0.5px; }
  .about-hero { min-height: 45vh; }
  .about-hero-content { padding: 0 1.2rem 2.5rem; }
  .about-hero-content p { font-size: 0.95rem !important; }
  .services-hero { min-height: 40vh; }
  .services-hero-content { padding: 0 1.2rem 2.5rem; }
  .services-hero-content p { font-size: 0.95rem !important; }
  .pricing-hero { min-height: 38vh; }
  .pricing-hero-content { padding: 0 1.2rem 2.5rem; }
  .pricing-hero-content p { font-size: 0.95rem !important; }
  .pricing-card { padding: 1.5rem; }
  .faq-hero { min-height: 38vh; }
  .faq-hero-content { padding: 0 1.2rem 2.5rem; }
  .faq-hero-content p { font-size: 0.95rem !important; }
  .partnership-hero { min-height: 38vh; }
  .partnership-hero-content { padding: 0 1.2rem 2.5rem; }
  .partnership-hero-content p { font-size: 0.95rem !important; }
  .partner-why-card { padding: 2rem; }
  .partner-opp-card { padding: 2rem; }
  .partner-offer-card { flex-direction: column; gap: 0.8rem; }
  .partner-req-left, .partner-req-right { padding: 2rem; }
  .joinus-hero { min-height: 38vh; }
  .joinus-hero-content { padding: 0 1.2rem 2.5rem; }
  .joinus-hero-content p { font-size: 0.95rem !important; }
  .joinus-careers-divider { padding: 3rem 1.2rem; }
  .resources-hero { min-height: 38vh; }
  .resources-hero-content { padding: 0 1.2rem 2.5rem; }
  .resources-hero-content p { font-size: 0.95rem !important; }
  .contact-hero { min-height: 38vh; }
  .contact-hero-content { padding: 0 1.2rem 2.5rem; }
  .contact-hero-content p { font-size: 0.95rem !important; }
  .journey-node { flex: 0 0 50%; }
  .journey-path { padding: 1.5rem 0; background: transparent; border: none; box-shadow: none; border-radius: 0; }
  .journey-node-circle { width: 52px; height: 52px; font-size: 1.1rem; }
  .journey-node-num { font-size: 1.2rem; }
  .journey-node-title { font-size: 0.72rem; }
  .journey-node-desc { font-size: 0.72rem; }
  #page-about > .section { padding-top: 2rem !important; }
  #page-services > .section { padding-top: 2rem !important; }
  .tl-year { font-size: 1.8rem; }
  .tl-text h3 { font-size: 1.1rem; }
  .tl-text p { font-size: 0.9rem; }
  .contact-steps { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr; }
  .cv-img-wrap img { min-height: 220px; }
  .cv-num { font-size: 2.5rem; }
  .cv-text-wrap h3 { font-size: 1.4rem; }
  .cv-text-wrap p { font-size: 0.92rem; }
  .trust-bar-inner { gap: 0; }
  .trust-item-num { font-size: 1.8rem; }
  .btn-primary, .btn-outline-light, .btn-white { font-size: 0.8rem; padding: 0.8rem 1.5rem; }
}

/* ============================================
   DESKTOP ONLY: Hero slider layout fixes
   ============================================ */
@media (min-width: 769px) {
  /* Flex column so button can be pinned to bottom */
  .slide-content { justify-content: flex-start; }
  .slide-bottom { display: flex; flex-direction: column; flex: 1; margin-top: 0 !important; }
  .hero-actions { margin-top: auto !important; }

  /* Button text stays single-line on desktop */
  .hero-actions .btn-primary,
  .hero-actions .btn-outline-light { white-space: nowrap; }

  /* Slide 1 — clear navbar, expand text width, fit all in 100vh */
  .slider-slide:first-child .slide-content { padding-top: 5rem; padding-bottom: 1.5rem; }
  .slider-slide:first-child .slide-heading { max-width: 54%; margin-bottom: 0.6rem; }
  .slider-slide:first-child .slide-bottom { max-width: 54%; }

  /* Slides 2 & 3 — push desc text toward center, button stays at bottom */
  .slider-slide:nth-child(2) .slide-bottom,
  .slider-slide:nth-child(3) .slide-bottom { padding-top: 12vh; }

  /* Slide 3 — nudge content group down */
  .slider-slide:nth-child(3) .slide-content { padding-top: 18vh; }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .slider-slide:nth-child(3) .slide-content { padding-top: 14vh; }
  .slider-slide:first-child .slide-heading { max-width: 56%; }
  .slider-slide:first-child .slide-bottom { max-width: 56%; }
  .slider-slide:first-child .hero-actions { flex-wrap: wrap; }
}

@media (min-width: 769px) and (max-width: 1024px) and (min-height: 700px) {
  /* Cap hero height so it doesn't stretch to full portrait height on iPad */
  .hero-slider, .slider-slide, .slide-content { max-height: 900px; }
  .slider-slide:nth-child(3) .slide-content { padding-top: 8vh; max-height: 900px; }
  .slide-bottom { max-width: 55%; }
  .slider-slide:first-child .slide-heading { max-width: 58%; }
  .slider-slide:first-child .slide-bottom { max-width: 58%; }

  /* Replace margin-top: auto with fixed value — no giant gaps on tall iPads */
  .hero-actions { margin-top: 1.5rem !important; }

  /* Slide 1: stack the two CTA buttons vertically (tall tablets only) */
  .slider-slide:first-child .hero-actions { flex-direction: column; gap: 0.6rem; width: 80%; }
  .slider-slide:first-child .hero-actions .btn-primary,
  .slider-slide:first-child .hero-actions .btn-outline-light { flex: none; width: 100%; }

  /* Slides 2 & 3: reduce text-to-button gap */
  .slider-slide:nth-child(2) .slide-bottom,
  .slider-slide:nth-child(3) .slide-bottom { padding-top: 4vh; }
}

/* ── TABLET (iPad Air / iPad Pro portrait): 769px – 900px, tall only ── */
@media (min-width: 769px) and (max-width: 900px) and (min-height: 700px) {
  /* Reduce slide content padding so heading clears navbar cleanly */
  .slide-content { padding: 4.5rem 2.5rem 2rem; }
  .slider-slide:first-child .slide-content { padding-top: 4.5rem; padding-bottom: 1.5rem; }

  /* Heading and bottom text area: wider to fill available space */
  .slide-heading { margin-left: 44%; max-width: 54%; font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
  .slide-meta { margin-left: 44%; }
  .slide-bottom { margin-left: 44%; max-width: 54%; }
  .slider-slide:first-child .slide-heading { max-width: 54%; margin-bottom: 0.5rem; }
  .slider-slide:first-child .slide-bottom { max-width: 54%; }

  /* Slide 1: stack the two CTA buttons vertically so they don't clip */
  .slider-slide:first-child .hero-actions { flex-direction: column; gap: 0.6rem; }
  .slider-slide:first-child .hero-actions .btn-primary,
  .slider-slide:first-child .hero-actions .btn-outline-light { flex: none; width: 100%; }

  /* Slides 2 & 3: less padding so button sits closer to text */
  .slider-slide:nth-child(2) .slide-bottom,
  .slider-slide:nth-child(3) .slide-bottom { padding-top: 3vh; }
  .slider-slide:nth-child(3) .slide-content { padding-top: 8vh; }

  /* slide-desc slightly smaller to fit narrower column */
  .slide-desc { font-size: 1rem; }
}

/* ── SHORT LANDSCAPE: uniform scale so layout is identical to desktop ── */
@media (min-width: 769px) and (max-height: 700px) {
  .slide-content { zoom: 0.85; padding-top: 6rem !important; }
}
@media (min-width: 769px) and (max-height: 620px) {
  .slide-content { zoom: 0.7; padding-top: 10rem !important; }
  .pricing-hero,
  .faq-hero,
  .about-hero,
  .services-hero,
  .partnership-hero,
  .joinus-hero,
  .resources-hero,
  .contact-hero { min-height: 100vh; padding-top: 5rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-info-card { padding: 1.5rem; }
  .contact-info-card h3 { font-size: 1.1rem; }
  .section-inner { max-width: 100%; overflow: hidden; }
}


/* ── MOBILE 768px ── */
@media (max-width: 768px) {

  /* === Hero text clearing fixed navbar === */
  :root { --topbar-h: 62px; }

  .about-hero,
  .services-hero,
  .pricing-hero,
  .faq-hero,
  .partnership-hero,
  .joinus-hero,
  .resources-hero,
  .contact-hero {
    padding-top: var(--topbar-h);
    min-height: max(300px, calc(55vw + var(--topbar-h) + 60px));
    align-items: flex-end;
  }
  .contact-hero, .about-hero {
    min-height: max(360px, calc(60vw + var(--topbar-h) + 60px));
  }
  .about-hero-content,
  .services-hero-content,
  .pricing-hero-content,
  .faq-hero-content,
  .partnership-hero-content,
  .joinus-hero-content,
  .resources-hero-content,
  .contact-hero-content {
    padding-top: calc(var(--topbar-h) + 1rem) !important;
    padding-bottom: 3rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  /* === Slider mobile — undo desktop flex changes === */
  .slide-bottom {
    flex: none;
    max-width: 100% !important;
    margin-top: 0.8rem !important;
    padding-top: 0 !important;
    overflow: visible !important;
  }
  .slide-heading {
    max-width: 100% !important;
    margin-bottom: 0.5rem !important;
  }
  /* Slide content: natural height, no flex stretching */
  .slide-content {
    flex: none;
    padding-top: 1.4rem !important;
    padding-bottom: 1.5rem !important;
  }
  .slider-slide:nth-child(3) .slide-content { padding-top: 1.4rem !important; }
  /* Slides 2 & 3: button sits right after text, no stretching */
  .slider-slide:nth-child(2) .slide-bottom,
  .slider-slide:nth-child(3) .slide-bottom {
    flex: none;
  }
  .slider-slide:nth-child(2) .hero-actions,
  .slider-slide:nth-child(3) .hero-actions {
    margin-top: 1.2rem !important;
  }
  .hero-actions {
    margin-top: 1rem !important;
    flex-wrap: wrap;
    white-space: normal;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline-light {
    white-space: normal;
    flex: 1 1 100%;
    text-align: center;
  }
  /* Call button full-width on mobile */
  .hero-call-btn { font-size: 0.72rem !important; }

  /* === Contact page === */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    margin-top: 2rem !important;
  }
  .contact-form {
    width: 100%;
    box-sizing: border-box;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important;
    padding: 0.85rem 1rem;
    box-sizing: border-box;
    width: 100%;
  }
  #page-contact .contact-form .btn-primary {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    padding: 1rem 1.5rem !important;
    font-size: 0.95rem !important;
    margin-top: 0.5rem;
    box-sizing: border-box;
  }
  .contact-info-card {
    padding: 2rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .contact-info-card h3 { font-size: 1.4rem; margin-bottom: 1.5rem; }
  .contact-detail { align-items: flex-start; gap: 0.75rem; margin-bottom: 1.2rem; }
  .contact-detail-icon { flex-shrink: 0; width: 36px; height: 36px; }
  .contact-detail p { font-size: 0.85rem; line-height: 1.6; margin: 0; word-break: break-word; }
  .contact-info-card a[href^="mailto"] { word-break: break-all; font-size: 0.82rem; }

  /* === Card animation lines — pseudo-elements === */
  .why-card::before,         .why-card::after,
  .value-card::before,       .value-card::after,
  .service-card::before,     .service-card::after,
  .helper-type-card::before, .helper-type-card::after,
  .support-card::before,     .support-card::after,
  .partner-why-card::before, .partner-why-card::after,
  .partner-opp-card::before, .partner-opp-card::after,
  .partner-offer-card::before,.partner-offer-card::after,
  .joinus-why-card::before,  .joinus-why-card::after,
  .blog-card::before,        .blog-card::after,
  .vm-card::before,          .vm-card::after,
  .pricing-card::before,     .pricing-card::after,
  .cta-banner::before,       .cta-banner::after {
    display: none !important;
  }

  /* === Card borders — remove the visible dividing lines === */
  .why-card {
    border: none !important;
  }
  .support-card,
  .partner-why-card,
  .joinus-why-card,
  .value-card,
  .service-card,
  .blog-card {
    border: none !important;
    box-shadow: 0 2px 10px rgba(0,62,96,0.05) !important;
  }
  .partner-opp-card {
    border: none !important;
    background: rgba(255,255,255,0.07) !important;
  }

  /* === Disable hover transforms on touch === */
  .why-card:hover,
  .value-card:hover,
  .service-card:hover,
  .helper-type-card:hover,
  .support-card:hover,
  .partner-why-card:hover,
  .partner-opp-card:hover,
  .partner-offer-card:hover,
  .joinus-why-card:hover,
  .blog-card:hover,
  .vm-card:hover,
  .pricing-card:hover,
  .loyalty-card:hover,
  .gallery-card:hover {
    transform: none !important;
  }
}

/* ── MOBILE 480px ── */
@media (max-width: 480px) {
  :root { --topbar-h: 58px; }

  .about-hero-content,
  .services-hero-content,
  .pricing-hero-content,
  .faq-hero-content,
  .partnership-hero-content,
  .joinus-hero-content,
  .resources-hero-content,
  .contact-hero-content {
    padding-top: calc(var(--topbar-h) + 0.5rem) !important;
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
    padding-bottom: 2.5rem !important;
  }

  .contact-info-card { padding: 1.5rem 1.2rem; }
  .contact-info-card h3 { font-size: 1.2rem; }
  .contact-grid { gap: 1.5rem !important; }

  /* Reinforce border/pseudo removal */
  .why-card::before,         .why-card::after,
  .value-card::before,       .value-card::after,
  .service-card::before,     .service-card::after,
  .support-card::before,     .support-card::after,
  .partner-why-card::before, .partner-why-card::after,
  .partner-opp-card::before, .partner-opp-card::after,
  .joinus-why-card::before,  .joinus-why-card::after,
  .blog-card::before,        .blog-card::after,
  .vm-card::before,          .vm-card::after,
  .pricing-card::before,     .pricing-card::after,
  .cta-banner::before,       .cta-banner::after {
    display: none !important;
  }

  .why-card,
  .support-card,
  .partner-why-card,
  .joinus-why-card,
  .value-card,
  .service-card,
  .blog-card,
  .partner-opp-card {
    border: none !important;
  }
}

/* ============================================================
   VM-CARD CLIP FIX v3
   Root cause: about-grid uses align-items:stretch → right column
   height is locked to left column height → vision-mission gets
   height:100% → each vm-card gets flex:1 → cards can't grow
   beyond their allocated slice → text clips.

   Fix: break the height chain at every level.
   Paste at the VERY BOTTOM of index.css
   ============================================================ */

/* 1. Stop about-grid from stretching the right column to match left */
.about-grid {
  align-items: start !important;
}

/* 2. Right column wrapper — let it size naturally */
.about-grid > div:last-child {
  height: auto !important;
  align-self: start !important;
}

/* 3. vision-mission container — natural height, no 100% lock */
.about-grid > div:last-child .vision-mission,
.vision-mission {
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
  height: auto !important;        /* break the height chain */
  grid-template-columns: unset !important;
}

/* 4. Each vm-card — must NOT be flex:1 (that locks height to parent) */
.about-grid > div:last-child .vision-mission .vm-card,
.about-grid > div:last-child .vision-mission .vm-card.vm-card-img {
  flex: 0 0 auto !important;     /* don't stretch to fill parent */
  height: auto !important;
  min-height: 320px;
}

/* 5. Core vm-card-img rewrite — height driven by content, not parent */
.vm-card.vm-card-img {
  position: relative !important;
  display: block !important;     /* block, not flex — flex causes collapse */
  height: auto !important;
  min-height: 300px;
  overflow: hidden;
  border-radius: 20px;
  background: hsl(205, 100%, 8%);
  isolation: isolate;
}

/* 6. Background image: absolute fill */
.vm-card.vm-card-img .vm-card-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1;
  overflow: hidden;
}

.vm-card.vm-card-img .vm-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.vm-card.vm-card-img:hover .vm-card-bg img {
  transform: scale(1.06);
}

/* 7. Overlay: absolute fill */
.vm-card.vm-card-img .vm-card-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2;
  background: linear-gradient(
    to top,
    hsla(205, 100%, 8%, 0.96) 0%,
    hsla(205, 100%, 8%, 0.88) 20%,
    hsla(205, 100%, 8%, 0.65) 40%,
    hsla(205, 100%, 10%, 0.35) 60%,
    hsla(205, 100%, 12%, 0.12) 80%,
    transparent 100%
  );
}

/* 8. Inner text: relative so it's IN FLOW and drives card height.
      padding-top creates the visible image area above the text. */
.vm-card.vm-card-img .vm-card-inner {
  position: relative !important;  /* in-flow — this is what drives height */
  z-index: 3;
  padding: 200px 2rem 2.5rem 2rem; /* padding-top = image reveal area */
  box-sizing: border-box;
  width: 100%;
}

.vm-card.vm-card-img .vm-card-inner h3 {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.vm-card.vm-card-img .vm-card-inner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

/* ---- Nest Hub Max (1280×800) ---- */
@media (min-width: 1100px) and (max-width: 1300px) and (max-height: 850px) {
  .vm-card.vm-card-img .vm-card-inner {
    padding-top: 180px;
  }
}

/* ---- Nest Hub (1024×600) ---- */
@media (min-width: 900px) and (max-width: 1100px) and (max-height: 650px) {
  .vm-card.vm-card-img .vm-card-inner {
    padding-top: 150px;
    padding-bottom: 2rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
  .vm-card.vm-card-img .vm-card-inner h3 {
    font-size: 1.25rem;
  }
  .vm-card.vm-card-img .vm-card-inner p {
    font-size: 0.88rem;
  }
  .about-grid > div:last-child .vision-mission .vm-card.vm-card-img {
    min-height: 260px;
  }
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .vm-card.vm-card-img .vm-card-inner {
    padding-top: 170px;
  }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .vm-card.vm-card-img {
    min-height: 260px;
  }
  .vm-card.vm-card-img .vm-card-inner {
    padding: 160px 1.5rem 2rem 1.5rem;
  }
  .vm-card.vm-card-img .vm-card-inner h3 {
    font-size: 1.3rem;
  }
  .vm-card.vm-card-img .vm-card-inner p {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .vm-card.vm-card-img {
    min-height: 240px;
  }
  .vm-card.vm-card-img .vm-card-inner {
    padding: 140px 1.2rem 1.8rem 1.2rem;
  }
  .vm-card.vm-card-img .vm-card-inner h3 {
    font-size: 1.2rem;
  }
}