/* ================================================================
   neo-v2.css — NeoHealth UAE Complete Redesign
   Based on neohomehealthcare.com design system
   Font: Manrope | Primary: #24324A | Accent: #6D5BD0
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy:       #24324A;
  --navy2:      #1a2535;
  --purple:     #6D5BD0;
  --soft:       #FAFAFC;
  --softpurple: #F8F6FF;
  --ink:        #111827;
  --muted:      #5F6673;
  --line:       #E8E8EE;
  --wa:         #25D366;
  --shadow:     0 14px 38px rgba(36,50,74,.09);
  --r:          14px;
  --rl:         22px;
}

/* Kill existing Bootstrap nav & footer */
.navbar, nav.navbar, .main-header, .site-header, div.navbar,
header:not(.nh-trust):not(.nh-nav) { display: none !important; }

footer:not(.nh-footer), .footer, .footer-sec,
.footer-area, .site-footer, .footer-wrapper { display: none !important; }

body {
  background: var(--navy) !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  margin: 0 !important;
  padding: 0 !important;
}

.nh * { box-sizing: border-box; }
.nh a { text-decoration: none; color: inherit; }
.nh h1,.nh h2,.nh h3 { letter-spacing:-.025em; line-height:1.1; margin:0; }
.nh p { margin:0; }

.nh-wrap { max-width:1120px; margin:0 auto; padding:0 24px; }

/* TRUST STRIP */
.nh-trust {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  text-align: center;
  padding: 9px 20px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: block !important;
}

/* NAV */
.nh-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  font-family: 'Manrope', system-ui, sans-serif;
  display: block !important;
}

.nh-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nh-logo img { height: 28px; width: auto; display: block; }

.nh-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nh-nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 13px;
  border-radius: 9px;
  transition: background .15s;
  display: block;
  white-space: nowrap;
}

.nh-nav-links a:hover { background: var(--soft); }

.nh-nav-drop { position: relative; }

.nh-nav-drop > a::after {
  content: '▾';
  font-size: 11px;
  margin-left: 4px;
  opacity: .5;
}

.nh-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 8px;
  min-width: 210px;
  box-shadow: var(--shadow);
  z-index: 200;
}

.nh-nav-drop:hover .nh-drop-menu { display: block; }

.nh-drop-menu a {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 9px 12px;
  border-radius: 8px;
}

.nh-drop-menu a:hover { background: var(--soft); }

.nh-nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.nh-nav-call {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink) !important;
  padding: 9px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: border-color .15s;
  white-space: nowrap;
  text-decoration: none !important;
}

.nh-nav-call:hover { border-color: var(--ink); }

.nh-nav-wa {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: white !important;
  background: var(--wa);
  padding: 9px 16px;
  border-radius: 10px;
  transition: background .15s;
  white-space: nowrap;
  text-decoration: none !important;
}

.nh-nav-wa:hover { background: #20bb5a; }

.nh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nh-hamburger span { display:block; width:22px; height:2px; background:var(--ink); border-radius:2px; transition:all .2s; }

.nh-mob-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--line);
  padding: 12px 24px 20px;
}

.nh-mob-menu.open { display: flex; }

.nh-mob-menu a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  text-decoration: none !important;
}

.nh-mob-menu a:last-child { border-bottom: none; }

/* HERO */
.nh-hero {
  position: relative;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.nh-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .32;
}

.nh-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 24px 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.nh-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,.58);
  letter-spacing: .3px;
  margin-bottom: 22px;
  font-family: 'Manrope', system-ui, sans-serif;
}

.nh-hero-kicker::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.35);
  border-radius: 2px;
  flex-shrink: 0;
}

.nh-hero h1 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 700;
  color: white;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 22px;
}

.nh-hero-sub {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,.62);
  line-height: 1.62;
  margin-bottom: 40px;
  max-width: 42ch;
  font-family: 'Manrope', system-ui, sans-serif;
}

.nh-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.nh-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; background: white;
  color: var(--navy) !important; font-family: 'Manrope', system-ui, sans-serif;
  font-size: 15px; font-weight: 700; border-radius: 12px;
  letter-spacing: -.01em; transition: all .18s; white-space: nowrap;
  text-decoration: none !important;
}
.nh-btn-primary:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }

.nh-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; background: rgba(255,255,255,.1);
  color: white !important; font-family: 'Manrope', system-ui, sans-serif;
  font-size: 15px; font-weight: 700; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.2); letter-spacing: -.01em;
  transition: all .18s; white-space: nowrap; text-decoration: none !important;
}
.nh-btn-ghost:hover { background: rgba(255,255,255,.17); border-color: rgba(255,255,255,.4); }

.nh-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; background: transparent;
  color: var(--ink) !important; font-family: 'Manrope', system-ui, sans-serif;
  font-size: 14px; font-weight: 700; border-radius: 10px;
  border: 1.5px solid var(--line); letter-spacing: -.01em;
  transition: all .18s; white-space: nowrap; text-decoration: none !important;
}
.nh-btn-outline:hover { border-color: var(--ink); }

.nh-btn-outline-navy {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; background: transparent;
  color: white !important; font-family: 'Manrope', system-ui, sans-serif;
  font-size: 15px; font-weight: 700; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.28); letter-spacing: -.01em;
  transition: all .18s; white-space: nowrap; text-decoration: none !important;
}
.nh-btn-outline-navy:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }

.nh-btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; background: var(--wa); color: white !important;
  font-family: 'Manrope', system-ui, sans-serif; font-size: 15px; font-weight: 700;
  border-radius: 12px; transition: all .18s; white-space: nowrap;
  text-decoration: none !important;
}
.nh-btn-wa:hover { background: #20bb5a; transform: translateY(-1px); }

/* Hero card */
.nh-hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nh-mini-svc {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px; padding: 14px; color: white;
  text-decoration: none !important; transition: all .18s;
  font-family: 'Manrope', system-ui, sans-serif;
}
.nh-mini-svc:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }

.nh-mini-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.14); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.nh-mini-icon img { width: 26px; height: 26px; object-fit: contain; filter: brightness(0) invert(1) opacity(.85); }

.nh-mini-svc strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; color: white; }
.nh-mini-svc small { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.58); }

/* STATS */
.nh-stats {
  background: white;
  border-bottom: 1px solid var(--line);
  font-family: 'Manrope', system-ui, sans-serif;
  display: block !important;
}

.nh-stats-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}

.nh-stat { padding: 28px 16px; text-align: center; border-right: 1px solid var(--line); }
.nh-stat:last-child { border-right: none; }

.nh-stat-num {
  display: block; font-size: 38px; font-weight: 800;
  color: var(--navy); line-height: 1; letter-spacing: -.04em; margin-bottom: 5px;
}

.nh-stat-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; }

/* SECTIONS */
.nh-section { padding: 88px 0; font-family: 'Manrope', system-ui, sans-serif; display: block !important; }
.nh-section.soft       { background: var(--soft); }
.nh-section.white      { background: white; }
.nh-section.navy       { background: var(--navy); }
.nh-section.softpurple { background: var(--softpurple); }

.nh-sec-eye {
  display: block; font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 9px;
}
.nh-section.navy .nh-sec-eye { color: rgba(255,255,255,.38); }

.nh-sec-title {
  font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--ink);
  line-height: 1.12; letter-spacing: -.025em;
}
.nh-section.navy .nh-sec-title { color: white; }

.nh-sec-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 48px; gap: 20px; flex-wrap: wrap;
}

/* SERVICES */
.nh-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 11px; }

.nh-svc-card {
  background: white; border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 14px 18px; text-align: center; text-decoration: none !important;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: 'Manrope', system-ui, sans-serif; transition: all .18s;
}
.nh-svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(109,91,208,.22); }
.nh-svc-card img { width: 42px; height: 42px; object-fit: contain; display: block; }
.nh-svc-card span { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.3; }

/* TEAM */
.nh-team-scroll-wrap {
  overflow-x: auto; margin: 0 -24px; padding: 0 24px 20px;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.15) transparent;
}
.nh-team-scroll-wrap::-webkit-scrollbar { height: 3px; }
.nh-team-scroll-wrap::-webkit-scrollbar-track { background: transparent; }
.nh-team-scroll-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 2px; }

.nh-team-row { display: flex; gap: 14px; width: max-content; }

.nh-nurse-card {
  width: 218px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10); border-radius: var(--rl);
  overflow: hidden; flex-shrink: 0; font-family: 'Manrope', system-ui, sans-serif;
  transition: all .18s; text-decoration: none !important; color: inherit; display: block;
}
.nh-nurse-card:hover { background: rgba(255,255,255,.10); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.25); }

.nh-nurse-photo { width: 100%; height: 240px; object-fit: cover; object-position: top center; display: block; }

.nh-nurse-body { padding: 15px 15px 17px; }
.nh-nurse-body h3 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 3px; line-height: 1.2; letter-spacing: -.02em; }
.nh-nurse-role { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.46); margin-bottom: 10px; }

.nh-nurse-meta { display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; }
.nh-nurse-meta span { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.34); }

.nh-nurse-link { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.52) !important; text-decoration: none !important; transition: color .15s; }
.nh-nurse-link:hover { color: white !important; }

/* PROMISE */
.nh-promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.nh-promise-title {
  font-size: clamp(24px, 2.8vw, 34px); font-weight: 800; color: var(--ink);
  letter-spacing: -.025em; line-height: 1.15; margin-bottom: 14px;
}
.nh-promise-desc { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }

.nh-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.nh-checklist li { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 600; color: var(--ink); }
.nh-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--softpurple) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236D5BD0'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center / 13px;
}

.nh-cta-box { background: var(--softpurple); border: 1px solid rgba(109,91,208,.14); border-radius: 22px; padding: 34px; }
.nh-cta-box-label { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--purple); display: block; margin-bottom: 12px; }
.nh-cta-box h3 { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -.025em; margin-bottom: 10px; }
.nh-cta-box p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 0; }
.nh-cta-box ul { list-style: none; padding: 0; margin: 14px 0 26px; display: flex; flex-direction: column; gap: 7px; }
.nh-cta-box ul li { font-size: 14px; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.nh-cta-box ul li::before { content: '→'; color: var(--purple); font-weight: 700; }

/* TESTIMONIALS */
.nh-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.nh-testi-card {
  background: white; border: 1px solid var(--line); border-radius: var(--rl);
  padding: 26px 24px; display: flex; flex-direction: column;
  justify-content: space-between; gap: 18px;
  font-family: 'Manrope', system-ui, sans-serif; transition: box-shadow .18s;
}
.nh-testi-card:hover { box-shadow: var(--shadow); }
.nh-testi-quote { font-size: 15px; color: var(--ink); line-height: 1.72; flex-grow: 1; }
.nh-testi-author h4 { font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; margin-bottom: 2px; }
.nh-testi-author span { font-size: 12px; color: var(--muted); font-weight: 500; }

/* BLOG */
.nh-blog-tabs.nav {
  list-style: none; margin: 0 0 30px; padding: 0;
  display: flex; flex-wrap: wrap;
  border-bottom: 1.5px solid var(--line);
}
.nh-blog-tabs .nav-link {
  font-family: 'Manrope', system-ui, sans-serif; font-size: 14px; font-weight: 700;
  color: var(--muted); background: none; border: none;
  border-bottom: 2px solid transparent; border-radius: 0;
  padding: 11px 20px; margin-bottom: -1.5px; cursor: pointer; transition: all .15s;
}
.nh-blog-tabs .nav-link.active,
.nh-blog-tabs .nav-link:hover { color: var(--ink); border-bottom-color: var(--navy); background: none; }

.m-center-list-inner .m-center-box {
  background: white; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; font-family: 'Manrope', system-ui, sans-serif; transition: all .18s;
}
.m-center-list-inner .m-center-box:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.m-center-list-inner .m-center-img img { width: 100%; height: 198px; object-fit: cover; display: block; }
.m-center-list-inner .m-center-cont { padding: 18px; }
.m-center-list-inner .m-center-cont h3 { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 7px; letter-spacing: -.01em; }
.m-center-list-inner .m-c-meta { font-size: 12px; color: var(--muted); display: block; margin-bottom: 9px; }
.m-center-list-inner .m-center-cont p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.m-center-list-inner .m-c-link { font-size: 13px; font-weight: 700; color: var(--purple) !important; display: inline-flex; align-items: center; gap: 5px; text-decoration: none !important; }

/* FINAL CTA */
.nh-final {
  background: var(--navy); padding: 96px 24px;
  text-align: center; font-family: 'Manrope', system-ui, sans-serif;
  display: block !important;
}
.nh-final h2 { font-size: clamp(30px, 3.8vw, 50px); font-weight: 800; color: white; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; }
.nh-final > .nh-final-sub { font-size: 17px; color: rgba(255,255,255,.52); line-height: 1.65; max-width: 44ch; margin: 0 auto 44px; }
.nh-final-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.nh-footer { background: var(--navy2); font-family: 'Manrope', system-ui, sans-serif; padding: 56px 0 0; display: block !important; }

.nh-footer-grid {
  max-width: 1120px; margin: 0 auto; padding: 0 24px 48px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}

.nh-footer-brand img { height: 26px; margin-bottom: 16px; display: block; filter: brightness(0) invert(1); }
.nh-footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.42); line-height: 1.75; max-width: 28ch; margin-bottom: 20px; }

.nh-footer-socials { display: flex; gap: 8px; }
.nh-footer-socials a { width: 34px; height: 34px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.nh-footer-socials a:hover { background: rgba(255,255,255,.15); }
.nh-footer-socials a img { width: 16px; height: 16px; filter: brightness(0) invert(1) opacity(.7); }

.nh-footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.nh-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.nh-footer-col ul a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.58); transition: color .15s; display: block; text-decoration: none !important; }
.nh-footer-col ul a:hover { color: white; }

.nh-footer-bottom {
  max-width: 1120px; margin: 0 auto; padding: 20px 24px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.nh-footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.28); margin: 0; }
.nh-footer-bottom a { font-size: 12.5px; color: rgba(255,255,255,.38); font-weight: 600; transition: color .15s; text-decoration: none !important; }
.nh-footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* FLOAT WHATSAPP */
.nh-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.38); transition: all .18s;
  text-decoration: none !important;
}
.nh-float:hover { transform: scale(1.08); box-shadow: 0 12px 36px rgba(37,211,102,.5); }
.nh-float svg { width: 26px; height: 26px; fill: white; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nh-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .nh-nav-links, .nh-nav-call { display: none; }
  .nh-hamburger { display: flex; }
  .nh-hero-inner { grid-template-columns: 1fr; }
  .nh-hero-card { max-width: 520px; }
  .nh-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .nh-stat:nth-child(2) { border-right: none; }
  .nh-stat:nth-child(3) { border-top: 1px solid var(--line); }
  .nh-stat:nth-child(4) { border-top: 1px solid var(--line); border-right: none; }
  .nh-promise-grid { grid-template-columns: 1fr; gap: 40px; }
  .nh-testi-grid { grid-template-columns: repeat(2, 1fr); }
  .nh-sec-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .nh-hero { min-height: 100svh; }
  .nh-hero-inner { padding: 72px 24px 56px; }
  .nh-hero h1 { font-size: 38px; }
  .nh-hero-sub { font-size: 15.5px; }
  .nh-hero-actions { flex-direction: column; align-items: flex-start; }
  .nh-section { padding: 64px 0; }
  .nh-services-grid { grid-template-columns: repeat(2, 1fr); }
  .nh-testi-grid { grid-template-columns: 1fr; }
  .nh-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nh-final h2 { font-size: 30px; }
  .nh-nav-wa span { display: none; }
  .nh-stat-num { font-size: 30px; }
}
