/* Nehir Dalgıç Pompa — design system (colors, typography, components) */

:root {
  --navy: #061A2D;
  --navy2: #0A2E4D;
  --blue: #0A4D8C;
  --water: #00A8E8;
  --turq: #24C6DC;
  --bg-light: #F4F7F9;
  --white: #FFFFFF;
  --text: #17212B;
  --text-sec: #7A8A96;
  --text-sec2: #4A5A67;
  --text-sub: #3B4C5A;
  --muted: #A6B4BF;
  --danger: #E11E25;
  --danger-dark: #B3202B;
  --whatsapp: #1FAF57;
  --border: #EEF2F5;
  --border2: #E7EDF1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; margin: 0; }
p { margin: 0; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--water); }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--turq); color: var(--navy); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollLogos { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

.nhp-container { max-width: 1360px; margin: 0 auto; padding: 0 24px; }
.nhp-fade-up { animation: fadeUp .7s ease both; }

/* Buttons */
.nhp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; border-radius: 10px; font-weight: 700; font-size: 14.5px; padding: 13px 22px; cursor: pointer; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease; }
.nhp-btn:hover { color: inherit; }
.nhp-btn--primary { background: linear-gradient(135deg, var(--blue), var(--water)); color: #fff; box-shadow: 0 8px 20px rgba(10,77,140,.28); }
.nhp-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(10,77,140,.36); color: #fff; }
.nhp-btn--danger { background: linear-gradient(135deg, var(--danger), var(--danger-dark)); color: #fff; box-shadow: 0 10px 26px rgba(225,30,37,.35); }
.nhp-btn--danger:hover { transform: translateY(-2px); color: #fff; }
.nhp-btn--white { background: #fff; color: var(--blue); }
.nhp-btn--white:hover { transform: translateY(-2px); color: var(--blue); }
.nhp-btn--dark { background: var(--navy); color: #fff; }
.nhp-btn--dark:hover { color: #fff; }
.nhp-btn--outline { background: none; border: 1px solid var(--border2); color: var(--blue); }
.nhp-btn--ghost { background: var(--bg-light); color: var(--blue); }
.nhp-btn--whatsapp { background: var(--whatsapp); color: #fff; }
.nhp-btn--whatsapp:hover { color: #fff; }
.nhp-btn--block { width: 100%; }
.nhp-btn[disabled] { opacity: .7; cursor: default; }
.nhp-btn--outline-light { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.35); color: #fff; }
.nhp-btn--outline-light:hover { color: #fff; }

/* Utility bar + header */
.nhp-utility-bar { background: var(--navy); color: #C7D6E2; font-size: 12.5px; }
.nhp-utility-bar__inner { padding: 7px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nhp-utility-bar__left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.nhp-utility-bar__hours { opacity: .85; }

.nhp-header { position: sticky; top: 0; z-index: 200; background: #fff; border-bottom: 1px solid transparent; transition: background .25s ease, box-shadow .25s ease, border-color .25s ease; }
.nhp-header.is-scrolled { background: rgba(255,255,255,.96); border-bottom-color: var(--border2); box-shadow: 0 6px 20px rgba(6,26,45,.06); }
.nhp-header__inner { padding: 14px 24px; display: flex; align-items: center; gap: 32px; }
.nhp-logo { display: flex; align-items: center; gap: 10px; }
.nhp-logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.nhp-logo__line1 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 19px; color: var(--navy); letter-spacing: .2px; }
.nhp-logo__line2 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 11.5px; color: var(--blue); letter-spacing: 1.5px; }

.nhp-nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.nhp-nav-item { position: relative; }
.nhp-nav-item:hover .nhp-nav-menu { display: grid; }
.nhp-nav-btn { background: none; border: none; padding: 10px 14px; font-size: 14.5px; font-weight: 600; border-radius: 8px; display: inline-flex; align-items: center; gap: 5px; }
.nhp-nav-caret { font-size: 10px; opacity: .6; }
.nhp-nav-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; border-radius: 12px; box-shadow: 0 20px 48px rgba(6,26,45,.16); border: 1px solid var(--border); padding: 10px; min-width: 260px; grid-template-columns: 1fr; gap: 2px 20px; animation: fadeIn .15s ease; z-index: 10; }
.nhp-nav-menu--2col { min-width: 560px; grid-template-columns: 1fr 1fr; }
.nhp-nav-submenu-item { text-align: left; padding: 8px 10px; font-size: 13.5px; color: var(--text); border-radius: 7px; white-space: nowrap; }
.nhp-nav-submenu-item:hover { background: var(--bg-light); color: var(--blue); }

.nhp-header__actions { display: flex; align-items: center; gap: 10px; }
.nhp-burger { display: none; background: none; border: none; font-size: 22px; color: var(--navy); align-items: center; justify-content: center; }

.nhp-mobile-menu { position: fixed; inset: 0; background: #fff; z-index: 400; overflow: auto; padding: 20px 20px 100px; }
.nhp-mobile-menu__close-row { display: flex; justify-content: flex-end; margin-bottom: 16px; }
.nhp-mobile-menu__close-row button { background: none; border: none; font-size: 24px; }
.nhp-mnav-row { border-bottom: 1px solid var(--border); }
.nhp-mnav-toggle { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; padding: 16px 4px; font-size: 16px; font-weight: 700; color: var(--navy); text-align: left; }
.nhp-mnav-submenu { padding: 0 4px 14px 12px; display: flex; flex-direction: column; gap: 2px; }
.nhp-mnav-submenu-item { text-align: left; padding: 10px 8px; font-size: 14.5px; color: var(--text-sub); }

/* Hero */
.nhp-hero { position: relative; background: linear-gradient(120deg, var(--navy) 0%, var(--navy2) 55%, var(--blue) 100%); overflow: hidden; min-height: 640px; display: flex; align-items: center; }
.nhp-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.nhp-hero__inner { padding: 90px 24px 70px; position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.nhp-hero__eyebrow { display: inline-block; background: rgba(36,198,220,.14); border: 1px solid rgba(36,198,220,.4); color: #5FE3F2; font-size: 12.5px; font-weight: 700; letter-spacing: 1px; padding: 6px 14px; border-radius: 999px; margin-bottom: 22px; }
.nhp-hero h1 { color: #fff; font-size: clamp(36px, 5vw, 58px); font-weight: 800; line-height: 1.06; letter-spacing: -1px; }
.nhp-hero__lead { color: #C7D6E2; font-size: 17.5px; line-height: 1.65; max-width: 560px; margin-top: 22px; }
.nhp-hero__sub { color: #93A9BC; font-size: 14px; margin-top: 10px; }
.nhp-hero__ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.nhp-trust-row { display: grid; grid-template-columns: repeat(4, auto); gap: 28px; margin-top: 48px; }
.nhp-trust-row__icon { font-size: 20px; }
.nhp-trust-row__label { color: #DCEBF6; font-size: 12.5px; font-weight: 600; margin-top: 6px; max-width: 110px; line-height: 1.3; }
.nhp-hero__art { position: relative; }
.nhp-hero__art-frame { border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.15); }
.nhp-hero__art-inner { width: 100%; aspect-ratio: 4/5; background: linear-gradient(160deg,#0A2E4D 0%,#0A4D8C 55%,#00A8E8 100%); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.nhp-hero__art-svg { width: 66%; height: 92%; }
.nhp-badge-chip { position: absolute; top: 18px; left: 18px; display: flex; align-items: center; gap: 8px; background: rgba(6,26,45,.4); backdrop-filter: blur(4px); padding: 6px 12px; border-radius: 8px; }
.nhp-badge-chip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--turq); }
.nhp-badge-chip__text { color: #DCEBF6; font-size: 11.5px; font-weight: 700; letter-spacing: .4px; }
.nhp-hero__float-card { position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: 14px; padding: 16px 20px; box-shadow: 0 20px 40px rgba(0,0,0,.2); display: flex; align-items: center; gap: 12px; }
.nhp-hero__float-icon { width: 42px; height: 42px; border-radius: 10px; background: #EAF6FB; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.nhp-hero__float-title { font-weight: 800; font-size: 15px; color: var(--navy); }
.nhp-hero__float-sub { font-size: 12px; color: var(--text-sec); }

/* Section headers */
.nhp-section { padding: 88px 24px; max-width: 1360px; margin: 0 auto; }
.nhp-section--tight { padding-top: 70px; padding-bottom: 20px; }
.nhp-section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.nhp-section-head h2 { font-size: clamp(28px, 3.4vw, 38px); font-weight: 800; color: var(--navy); }
.nhp-section-head p { color: var(--text-sec2); font-size: 16px; margin-top: 14px; line-height: 1.6; }
.nhp-eyebrow { display: inline-block; color: var(--blue); font-weight: 700; font-size: 14.5px; margin-bottom: 12px; }

/* Category / solution cards */
.nhp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.nhp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.nhp-card { text-align: left; background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; box-shadow: 0 1px 3px rgba(6,26,45,.04); display: block; }
.nhp-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px rgba(6,26,45,.12); color: inherit; }
.nhp-card__image { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-light); }
.nhp-card__image img { width: 100%; height: 100%; object-fit: cover; }
.nhp-card__image--placeholder { display: flex; align-items: center; justify-content: center; font-size: 34px; color: rgba(255,255,255,.85); }
.nhp-card__body { padding: 18px; }
.nhp-card__title { font-weight: 700; font-size: 15.5px; color: var(--navy); }
.nhp-card__desc { font-size: 13px; color: var(--text-sec); margin-top: 6px; line-height: 1.45; }
.nhp-card__link { font-size: 13px; font-weight: 700; color: var(--blue); margin-top: 12px; display: flex; align-items: center; gap: 5px; }

/* About */
.nhp-about { background: var(--bg-light); padding: 90px 0; }
.nhp-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.nhp-about__media { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(6,26,45,.1); aspect-ratio: 5/4; position: relative; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.nhp-about h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: var(--navy); }
.nhp-about p { color: var(--text-sec2); font-size: 15.5px; line-height: 1.75; margin-top: 18px; }
.nhp-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.nhp-stat__value { font-size: clamp(24px, 2.6vw, 30px); font-weight: 800; color: var(--blue); }
.nhp-stat__label { font-size: 12.5px; color: var(--text-sec); margin-top: 4px; font-weight: 600; }
.nhp-footnote { font-size: 11px; color: var(--muted); margin-top: 18px; }

/* Applications */
.nhp-app-card { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 5/4; box-shadow: 0 4px 16px rgba(6,26,45,.08); display: block; }
.nhp-app-card__bg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }
.nhp-app-card__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,26,45,.92) 0%, rgba(6,26,45,.15) 65%, rgba(6,26,45,0) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.nhp-app-card__title { color: #fff; font-weight: 800; font-size: 17px; }
.nhp-app-card__desc { color: #C7D6E2; font-size: 13px; margin-top: 6px; line-height: 1.4; }
.nhp-app-card__cta { margin-top: 14px; align-self: flex-start; background: rgba(255,255,255,.15); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.3); color: #fff; padding: 9px 16px; border-radius: 9px; font-size: 13px; font-weight: 700; }

/* Pump selector */
.nhp-selector-wrap { background: linear-gradient(135deg,#EAF6FB,#F4F7F9); padding: 90px 0; }
.nhp-selector { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.nhp-selector__card { background: #fff; border-radius: 20px; box-shadow: 0 20px 60px rgba(6,26,45,.1); padding: 36px; }
.nhp-selector__progress { display: flex; gap: 8px; margin-bottom: 32px; }
.nhp-selector__progress-bar { flex: 1; height: 5px; border-radius: 3px; background: var(--border2); transition: background .3s ease; }
.nhp-selector__progress-bar.is-done { background: var(--blue); }
.nhp-selector__step-label { font-size: 13px; font-weight: 700; color: var(--blue); letter-spacing: .5px; margin-bottom: 6px; }
.nhp-selector__title { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 22px; }
.nhp-option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.nhp-option-btn { text-align: left; padding: 16px; border-radius: 12px; border: 2px solid var(--border2); background: var(--bg-light); font-size: 14.5px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 10px; }
.nhp-option-btn:hover { border-color: var(--blue); background: #EAF6FB; color: var(--text); }
.nhp-option-btn__icon { font-size: 20px; }
.nhp-selector__back { margin-top: 22px; background: none; border: none; color: var(--text-sec); font-size: 13.5px; font-weight: 600; }
.nhp-selector__result-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.nhp-suggest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.nhp-suggest-card { text-align: left; background: var(--bg-light); border: none; border-radius: 12px; padding: 16px; display: block; }
.nhp-suggest-card:hover { background: #EAF6FB; color: inherit; }
.nhp-suggest-card__name { font-weight: 700; font-size: 14px; color: var(--navy); }
.nhp-suggest-card__cta { font-size: 12px; color: var(--blue); margin-top: 8px; font-weight: 700; }
.nhp-selector__reset { margin-top: 24px; background: none; border: 1px solid var(--border2); color: var(--text-sec2); padding: 10px 18px; border-radius: 9px; font-size: 13.5px; font-weight: 600; }

/* Why us */
.nhp-why { background: var(--navy); padding: 90px 0; }
.nhp-why .nhp-section-head h2 { color: #fff; }
.nhp-why .nhp-section-head p { color: #93A9BC; }
.nhp-grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nhp-why-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 26px; transition: background .2s ease; }
.nhp-why-card:hover { background: rgba(255,255,255,.07); }
.nhp-why-card__icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--water)); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.nhp-why-card__title { font-weight: 700; font-size: 16px; color: #fff; margin-top: 16px; }
.nhp-why-card__desc { font-size: 13.5px; color: #93A9BC; margin-top: 8px; line-height: 1.5; }

/* Product cards */
.nhp-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.nhp-pcard { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; height: 100%; }
.nhp-pcard:hover { transform: translateY(-6px); box-shadow: 0 22px 40px rgba(6,26,45,.12); }
.nhp-pcard__image { aspect-ratio: 4/3; background: var(--bg-light); position: relative; overflow: hidden; }
.nhp-pcard__image img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.nhp-pcard__image--placeholder { display: flex; align-items: center; justify-content: center; font-size: 30px; }
.nhp-pcard__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.nhp-pcard__model { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: .4px; }
.nhp-pcard__name { font-weight: 700; font-size: 15.5px; color: var(--navy); margin-top: 6px; line-height: 1.3; }
.nhp-pcard__app { font-size: 12.5px; color: var(--text-sec); margin-top: 6px; }
.nhp-pcard__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid #F0F3F5; }
.nhp-pcard__spec-label { font-size: 10.5px; color: var(--muted); font-weight: 700; }
.nhp-pcard__spec-value { font-size: 13px; font-weight: 700; color: var(--text); }
.nhp-pcard__actions { display: flex; gap: 8px; margin-top: 16px; }
.nhp-pcard__actions .nhp-btn { flex: 1; padding: 10px; font-size: 13px; }

/* Services */
.nhp-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.nhp-service-item { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.nhp-service-item span:first-child { font-size: 22px; }
.nhp-service-item span:last-child { font-weight: 600; font-size: 14.5px; color: var(--text); }

/* Partners */
.nhp-partners-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.nhp-partner-item { background: var(--bg-light); border: 1px solid var(--border); border-radius: 14px; padding: 22px 14px; display: flex; align-items: center; justify-content: center; text-align: center; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.nhp-partner-item:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(6,26,45,.1); background: #fff; }
.nhp-partner-item span { font-weight: 800; font-size: 14.5px; color: var(--blue); letter-spacing: .2px; }

/* Reference logos strip */
.nhp-refs { background: #fff; border-top: 1px solid var(--border); padding: 60px 0; overflow: hidden; }
.nhp-refs__label { font-size: 13px; font-weight: 700; color: var(--text-sec); letter-spacing: 1px; text-align: center; margin-bottom: 40px; }
.nhp-refs__track { display: flex; gap: 64px; width: max-content; animation: scrollLogos 26s linear infinite; }
.nhp-refs__logo { width: 130px; height: 56px; display: flex; align-items: center; justify-content: center; filter: grayscale(1); opacity: .55; transition: filter .2s ease, opacity .2s ease; }
.nhp-refs__logo:hover { filter: grayscale(0); opacity: 1; }
.nhp-refs__logo span { font-weight: 800; font-size: 15px; color: var(--blue); border: 1.5px dashed #C7D6E2; padding: 10px 18px; border-radius: 8px; width: 100%; text-align: center; }

/* CTA band */
.nhp-cta { background: linear-gradient(120deg, var(--navy), var(--blue)); padding: 80px 24px; text-align: center; }
.nhp-cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; max-width: 700px; margin: 0 auto; }
.nhp-cta p { color: #C7D6E2; font-size: 15.5px; margin-top: 16px; max-width: 560px; margin-left: auto; margin-right: auto; }
.nhp-cta__ctas { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }

/* Generic content page */
.nhp-page, .nhp-page--md, .nhp-page--lg, .nhp-page--xl { max-width: 800px; margin: 0 auto; padding: 80px 24px 100px; }
.nhp-page--md { max-width: 900px; }
.nhp-page--lg { max-width: 1100px; }
.nhp-page--xl { max-width: 1200px; }
.nhp-page h1, .nhp-page--md h1, .nhp-page--lg h1, .nhp-page--xl h1 { font-size: clamp(28px, 3.6vw, 38px); font-weight: 800; color: var(--navy); }
.nhp-page-head { text-align: center; margin-bottom: 44px; }
.nhp-page-head--tight { margin-bottom: 36px; }
.nhp-body-text { color: var(--text-sec2); font-size: 15.5px; line-height: 1.8; }
.nhp-body-text + .nhp-body-text { margin-top: 16px; }
.nhp-page h2, .nhp-page--md h2, .nhp-page--lg h2, .nhp-page--xl h2 { font-size: 16.5px; font-weight: 800; color: var(--navy); margin-top: 32px; }
.nhp-page h2 + .nhp-body-text { margin-top: 10px; }

/* Mission / quality / two-col cards */
.nhp-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.nhp-mv-card { background: var(--bg-light); border-radius: 18px; padding: 32px; }
.nhp-mv-card__icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--water)); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.nhp-mv-card h2 { font-size: 19px; font-weight: 800; color: var(--navy); margin-top: 18px; }
.nhp-mv-card p { color: var(--text-sec2); font-size: 14.5px; line-height: 1.75; margin-top: 12px; }
.nhp-mv-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.nhp-value-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px; text-align: center; }
.nhp-value-card__icon { font-size: 24px; }
.nhp-value-card__label { font-weight: 700; font-size: 13.5px; color: var(--navy); margin-top: 12px; }
.nhp-principle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 36px; }
.nhp-principle { display: flex; gap: 14px; align-items: flex-start; background: var(--bg-light); border-radius: 14px; padding: 20px; }
.nhp-principle__title { font-weight: 700; font-size: 14px; color: var(--navy); }
.nhp-principle__desc { font-size: 13px; color: var(--text-sec); margin-top: 6px; line-height: 1.5; }

/* Contact */
.nhp-contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.nhp-contact-info-item { display: flex; gap: 14px; align-items: flex-start; background: var(--bg-light); border-radius: 14px; padding: 18px; }
.nhp-contact-info-item__label { font-weight: 700; font-size: 14px; color: var(--navy); }
.nhp-contact-info-item__value { font-size: 13.5px; color: var(--text-sec2); margin-top: 4px; }
.nhp-branches-label { font-size: 13px; font-weight: 700; color: var(--text-sec); letter-spacing: .5px; margin-bottom: 22px; }
.nhp-branches-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.nhp-branch__name { font-weight: 700; font-size: 14.5px; color: var(--navy); margin-bottom: 4px; }
.nhp-branch__address { font-size: 13px; color: var(--text-sec); margin-bottom: 10px; }
.nhp-branch__blurb { font-size: 13px; color: var(--text-sec2); line-height: 1.6; margin-bottom: 12px; }
.nhp-branch__map { border-radius: 14px; overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--border2); }
.nhp-branch__map iframe { width: 100%; height: 100%; border: 0; }

/* Solutions */
.nhp-breadcrumb { font-size: 13px; color: var(--text-sec); margin-bottom: 14px; }
.nhp-solution-block { margin-top: 40px; }
.nhp-solution-block__label { font-size: 13px; font-weight: 700; color: var(--text-sec); letter-spacing: .5px; margin-bottom: 16px; }

/* Products page (listing) */
.nhp-pp-crumb { font-size: 13px; color: var(--text-sec); margin-bottom: 18px; }
.nhp-pp-title { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 28px; }
.nhp-pp-toolbar { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
.nhp-pp-search { flex: 1; min-width: 220px; display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--border2); border-radius: 11px; padding: 11px 14px; background: #fff; }
.nhp-pp-search input { border: none; outline: none; flex: 1; font-size: 14px; }
.nhp-pp-sort { border: 1.5px solid var(--border2); border-radius: 11px; padding: 11px 14px; font-size: 13.5px; font-weight: 600; color: var(--text); background: #fff; }
.nhp-pp-viewtoggle { display: flex; border: 1.5px solid var(--border2); border-radius: 11px; overflow: hidden; }
.nhp-pp-viewtoggle button { width: 40px; height: 40px; background: #fff; border: none; font-size: 15px; }
.nhp-pp-viewtoggle button.is-active { background: #EAF6FB; }
.nhp-pp-filterbtn { display: none; border: 1.5px solid var(--border2); border-radius: 11px; padding: 11px 16px; font-size: 13.5px; font-weight: 700; background: #fff; }
.nhp-pp-count { font-size: 13px; color: var(--text-sec); margin-bottom: 20px; }
.nhp-pp-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.nhp-pp-filters { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 20px; position: sticky; top: 90px; }
.nhp-pp-filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.nhp-pp-filters__head-title { font-weight: 800; font-size: 14.5px; color: var(--navy); }
.nhp-pp-filters__clear { background: none; border: none; color: var(--blue); font-size: 12.5px; font-weight: 700; }
.nhp-filter-group { margin-bottom: 20px; }
.nhp-filter-group__label { font-size: 12.5px; font-weight: 700; color: var(--text-sub); margin-bottom: 10px; }
.nhp-filter-group__options { display: flex; flex-direction: column; gap: 8px; }
.nhp-filter-option { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text-sub); cursor: pointer; }
.nhp-filter-option input { width: 16px; height: 16px; accent-color: var(--blue); }
.nhp-pp-results.is-list { display: flex; flex-direction: column; gap: 14px; }
.nhp-pp-results.is-list .nhp-pcard { flex-direction: row; }
.nhp-pp-results.is-list .nhp-pcard__image { width: 220px; flex-shrink: 0; aspect-ratio: auto; }
.nhp-pp-empty { text-align: center; padding: 80px 20px; color: var(--text-sec); }
.nhp-pp-empty__icon { font-size: 36px; margin-bottom: 14px; }
.nhp-mobile-filter-drawer { position: fixed; inset: 0; background: rgba(6,26,45,.5); z-index: 500; display: none; justify-content: flex-start; }
.nhp-mobile-filter-drawer.is-open { display: flex; }
.nhp-mobile-filter-drawer__panel { background: #fff; width: min(320px,85vw); height: 100%; padding: 20px; overflow: auto; }
.nhp-mobile-filter-drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.nhp-mobile-filter-drawer__head button { background: none; border: none; font-size: 20px; }

/* Product detail */
.nhp-pd-top { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.nhp-pd-back { background: none; border: none; color: var(--blue); font-size: 13.5px; font-weight: 700; margin-bottom: 20px; display: inline-block; }
.nhp-pd-gallery { border-radius: 18px; overflow: hidden; aspect-ratio: 1/1; background: var(--bg-light); margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.nhp-pd-gallery img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.nhp-pd-gallery--placeholder { font-size: 48px; }
.nhp-pd-model { font-size: 12px; font-weight: 700; color: var(--blue); letter-spacing: .5px; }
.nhp-pd-title { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--navy); margin-top: 8px; }
.nhp-pd-desc { color: var(--text-sec2); font-size: 14.5px; margin-top: 12px; line-height: 1.6; }
.nhp-pd-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.nhp-pd-tag { background: var(--bg-light); color: var(--text-sub); font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 8px; }
.nhp-pd-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; padding: 18px; background: var(--bg-light); border-radius: 14px; }
.nhp-pd-summary__label { font-size: 10.5px; color: var(--text-sec); font-weight: 700; }
.nhp-pd-summary__value { font-size: 14.5px; font-weight: 800; color: var(--navy); margin-top: 4px; }
.nhp-pd-ctas { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.nhp-pd-ctas .nhp-btn { flex: 1; min-width: 160px; padding: 14px; }
.nhp-pd-tabs-wrap { margin-top: 56px; }
.nhp-pd-tabs { display: flex; gap: 4px; border-bottom: 1.5px solid var(--border); overflow-x: auto; }
.nhp-pd-tab { background: none; border: none; padding: 14px 18px; font-size: 13.5px; font-weight: 700; color: var(--text-sec); border-bottom: 2.5px solid transparent; white-space: nowrap; }
.nhp-pd-tab.is-active { color: var(--blue); border-bottom-color: var(--blue); }
.nhp-pd-tabpanel { padding: 32px 4px; }
.nhp-pd-tabpanel[hidden] { display: none; }
.nhp-pd-tabpanel--overview { max-width: 760px; color: var(--text-sec2); font-size: 14.5px; line-height: 1.75; }
.nhp-pd-specs-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.nhp-pd-specs-table td { padding: 12px 10px; border-bottom: 1px solid #F0F3F5; }
.nhp-pd-specs-table td:first-child { font-size: 13.5px; color: var(--text-sec); font-weight: 600; width: 45%; }
.nhp-pd-specs-table td:last-child { font-size: 14px; color: var(--text); font-weight: 700; }
.nhp-pd-curve { background: var(--bg-light); border-radius: 16px; padding: 30px; display: flex; align-items: center; justify-content: center; }
.nhp-pd-curve svg { width: 100%; max-width: 520px; }
.nhp-pd-curve-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.nhp-pd-dims-box { background: var(--bg-light); border-radius: 16px; aspect-ratio: 16/9; max-width: 600px; display: flex; align-items: center; justify-content: center; color: var(--text-sec); font-size: 13.5px; border: 1px dashed #C7D6E2; }
.nhp-pd-related { margin-top: 64px; }
.nhp-pd-related h2 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }

/* Forms */
.nhp-form-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 30px; }
.nhp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nhp-field { display: flex; flex-direction: column; }
.nhp-field--full { grid-column: 1/-1; }
.nhp-field label { font-size: 12.5px; font-weight: 700; color: var(--text-sub); }
.nhp-field input, .nhp-field select, .nhp-field textarea { width: 100%; margin-top: 6px; border: 1.5px solid var(--border2); border-radius: 9px; padding: 11px 13px; font-size: 14px; background: #fff; }
.nhp-field textarea { resize: vertical; }
.nhp-field.has-error input, .nhp-field.has-error textarea { border-color: var(--danger); }
.nhp-field.has-error .nhp-checkbox-row { color: var(--danger); }
.nhp-field.has-error .nhp-checkbox-row input[type="checkbox"] { outline: 2px solid var(--danger); outline-offset: 2px; }
.nhp-field-error { font-size: 12px; color: var(--danger); margin-top: 4px; display: none; }
.nhp-field.has-error .nhp-field-error { display: block; }
.nhp-file-drop { display: flex; align-items: center; gap: 10px; background: var(--bg-light); border-radius: 10px; padding: 12px 14px; cursor: pointer; border: 1.5px dashed #C7D6E2; }
.nhp-file-drop span:last-child { font-size: 13px; color: var(--text-sec2); }
.nhp-file-name { font-size: 12px; color: var(--blue); margin-top: 6px; display: none; }
.nhp-checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-sec2); }
.nhp-checkbox-row input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; }
.nhp-radio-row { display: flex; gap: 16px; flex-wrap: wrap; }
.nhp-radio-option { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-sub); }
.nhp-radio-option input { accent-color: var(--blue); }
.nhp-quote-items { margin-top: 28px; background: var(--bg-light); border-radius: 14px; padding: 18px; }
.nhp-quote-items__label { font-weight: 700; font-size: 13.5px; color: var(--text-sub); margin-bottom: 12px; }
.nhp-quote-item { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 10px; padding: 10px 12px; }
.nhp-form-success { text-align: center; padding: 70px 20px; background: var(--bg-light); border-radius: 20px; animation: fadeUp .4s ease both; }
.nhp-form-success__icon { font-size: 44px; }
.nhp-form-success h1 { font-size: 24px; font-weight: 800; color: var(--navy); margin-top: 18px; }
.nhp-form-success__num { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 800; color: var(--blue); margin-top: 8px; letter-spacing: .5px; }
.nhp-form-success p { color: var(--text-sec); font-size: 13.5px; margin-top: 18px; max-width: 420px; margin-left: auto; margin-right: auto; }
[hidden] { display: none !important; }

/* Support page */
.nhp-faq-list { display: flex; flex-direction: column; gap: 10px; }
.nhp-faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.nhp-faq-item__q { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; padding: 16px 18px; text-align: left; font-weight: 700; font-size: 14px; color: var(--navy); }
.nhp-faq-item__arrow { font-size: 13px; color: var(--text-sec); }
.nhp-faq-item__a { padding: 0 18px 18px; color: var(--text-sec2); font-size: 13.5px; line-height: 1.6; }

/* Footer */
.nhp-footer { background: var(--navy); color: #93A9BC; padding: 64px 0 0; }
.nhp-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.nhp-footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.nhp-footer__brand span { font-family: 'Manrope', sans-serif; font-weight: 800; color: #fff; font-size: 15.5px; }
.nhp-footer__tagline { font-size: 13px; line-height: 1.6; max-width: 280px; }
.nhp-footer__col-title { color: #fff; font-weight: 700; font-size: 13.5px; margin-bottom: 16px; }
.nhp-footer__links { display: flex; flex-direction: column; gap: 10px; }
.nhp-footer__links a { color: #93A9BC; font-size: 13.5px; }
.nhp-footer__links a:hover { color: #fff; }
.nhp-footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 12px; font-size: 12.5px; }
.nhp-footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.nhp-footer__legal a { color: #93A9BC; font-size: 12.5px; }
.nhp-footer__legal a:hover { color: #fff; }

/* Fixed tools */
.nhp-fixed-tools { position: fixed; right: 22px; bottom: 88px; z-index: 300; display: flex; flex-direction: column; gap: 12px; }
.nhp-scroll-top { width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--border2); box-shadow: 0 8px 20px rgba(6,26,45,.15); font-size: 17px; color: var(--blue); }
.nhp-whatsapp-fab { width: 52px; height: 52px; border-radius: 50%; background: var(--whatsapp); border: none; box-shadow: 0 10px 24px rgba(31,175,87,.4); font-size: 24px; color: #fff; display: flex; align-items: center; justify-content: center; }
.nhp-whatsapp-fab:hover { color: #fff; }
.nhp-mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 250; background: #fff; border-top: 1px solid var(--border); display: none; grid-template-columns: repeat(3, 1fr); box-shadow: 0 -6px 20px rgba(6,26,45,.08); }
.nhp-mobile-bar a { background: none; border: none; padding: 12px 0; display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 11.5px; font-weight: 700; color: var(--blue); }
.nhp-mobile-bar a:nth-child(2) { color: var(--whatsapp); }
.nhp-mobile-bar a:nth-child(2):hover { color: var(--whatsapp); }
.nhp-mobile-bar__cta { color: var(--danger) !important; }
.nhp-mobile-bar span { font-size: 18px; }

/* Not found */
.nhp-404 { text-align: center; padding: 140px 24px; min-height: 50vh; }
.nhp-404 .nhp-eyebrow-code { font-size: 64px; font-weight: 800; color: var(--blue); }

/* Responsive */
@media (max-width: 980px) {
  main { display: flex; flex-direction: column; }
  .nhp-mobile-first { order: -1; }
  .nhp-hero__inner { grid-template-columns: 1fr; }
  .nhp-grid-4, .nhp-product-grid { grid-template-columns: repeat(2, 1fr); }
  .nhp-about__grid { grid-template-columns: 1fr; }
  .nhp-contact-info-grid, .nhp-branches-grid { grid-template-columns: 1fr; }
  .nhp-grid-3, .nhp-grid-3col, .nhp-service-grid { grid-template-columns: repeat(2, 1fr); }
  .nhp-partners-grid { grid-template-columns: repeat(3, 1fr); }
  .nhp-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .nhp-mv-grid { grid-template-columns: 1fr; }
  .nhp-mv-values { grid-template-columns: repeat(2, 1fr); }
  .nhp-nav { display: none; }
  .nhp-burger { display: flex; }
  .nhp-mobile-bar { display: grid; }
  .nhp-pp-layout { grid-template-columns: 1fr; }
  .nhp-pp-filters { display: none; }
  .nhp-pp-filterbtn { display: inline-block; }
  .nhp-pd-top, .nhp-pd-related .nhp-product-grid { grid-template-columns: 1fr; }
  .nhp-pd-related .nhp-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nhp-pd-top { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nhp-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nhp-grid-4, .nhp-grid-3, .nhp-grid-3col, .nhp-service-grid, .nhp-product-grid, .nhp-suggest-grid, .nhp-option-grid {
    grid-template-columns: 1fr;
  }
  .nhp-partners-grid { grid-template-columns: repeat(2, 1fr); }
  .nhp-contact-info-grid { grid-template-columns: 1fr; }
  .nhp-footer__grid { grid-template-columns: 1fr; }
  .nhp-trust-row { grid-template-columns: repeat(2, 1fr); }
  .nhp-fixed-tools { bottom: 78px; }
  .nhp-pp-results:not(.is-list) { grid-template-columns: 1fr; }
  .nhp-pp-results.is-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
}
.nhp-pp-results.is-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) and (min-width: 601px) {
  .nhp-pp-results.is-grid { grid-template-columns: repeat(2, 1fr); }
}
