/* =====================================================================
   Nest Poliklinika — Design System
   Paleta: duboko granatno plava (brend) + živa plava + meko nebo-plava
   Tipografija: Fraunces (naslovi) + Plus Jakarta Sans (tekst, brend font)
   ===================================================================== */

html {
  overflow-x: hidden;
}

:root {
  --navy:        #10123f;
  --navy-2:      #191d6b;
  --navy-3:      #232a8c;
  --blue:        #2e3192;
  --blue-light:  #4f5eff;
  --sky:         #eef1fb;
  --sky-2:       #e3e8fb;
  --white:       #ffffff;
  --text:        #14162f;
  --text-soft:   #585c78;
  --text-faint:  #8b8fab;
  --border:      #e1e3f3;

  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans:  'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1220px;
  --header-container: 1440px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(16,18,63,0.06);
  --shadow-md: 0 16px 40px rgba(16,18,63,0.10);
  --shadow-blue: 0 10px 30px rgba(46,49,146,0.30);
}

/* ---------- Reset ---------- */
.np-page, .np-page *, .np-page *::before, .np-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.np-page {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.np-page [id] { scroll-margin-top: 110px; }
.np-page img { max-width: 100%; display: block; }
.np-page a { color: inherit; text-decoration: none; }
.np-page ul { list-style: none; }
.np-page button { font-family: inherit; cursor: pointer; }
.np-page svg { width: 1em; height: 1em; }

.np-page h1, .np-page h2, .np-page h3, .np-page h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.np-container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.np-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.np-eyebrow::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--blue);
  display: inline-block;
  flex-shrink: 0;
}
.np-section--dark .np-eyebrow,
.np-hero .np-eyebrow { color: #b7c0ff; }
.np-section--dark .np-eyebrow::before,
.np-hero .np-eyebrow::before { background: #b7c0ff; }

.np-section { padding: 100px 0; }
.np-section--tight { padding: 72px 0; }
.np-section--dark {
  background: radial-gradient(120% 160% at 85% -20%, var(--navy-3) 0%, var(--navy) 60%);
  color: rgba(255,255,255,0.86);
}
.np-section--dark h2, .np-section--dark h3 { color: var(--white); }
.np-section--sky { background: var(--sky); }

.np-head { max-width: 640px; margin-bottom: 56px; }
.np-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.np-head h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 14px 0 16px; }
.np-head p { color: var(--text-soft); font-size: 17px; }
.np-section--dark .np-head p { color: rgba(255,255,255,0.7); }

/* ---------- Buttons ---------- */
.np-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.np-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.np-btn:hover { transform: translateY(-2px); }

.np-btn--blue {
  background: linear-gradient(135deg, var(--blue-light), var(--blue) 70%);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.np-btn--blue:hover { box-shadow: 0 16px 34px rgba(46,49,146,0.42); }

.np-btn--outline-light { border-color: rgba(255,255,255,0.5); color: var(--white); }
.np-btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

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

.np-btn--dark { background: var(--navy); color: var(--white); }
.np-btn--dark:hover { background: var(--navy-2); }

.np-btn--sm { padding: 11px 22px; font-size: 14px; }
.np-btn--block { width: 100%; text-align: center; }

/* ---------- Header ---------- */
.np-header {
  position: sticky;
  top: 0;
  z-index: 500;
  width: 100%;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(16,18,63,0.08);
}
.np-header.is-scrolled { box-shadow: 0 8px 30px rgba(16,18,63,0.08); }
.np-header__inner {
  max-width: var(--header-container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: padding .3s ease;
}
.np-header.is-scrolled .np-header__inner { padding-top: 10px; padding-bottom: 10px; }

.np-logo { display: flex; align-items: center; gap: 12px; min-width: 0; flex-shrink: 1; }
.np-logo img { height: 48px; width: auto; flex-shrink: 0; }
.np-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.np-logo__name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.np-logo__title {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-top: 2px;
  white-space: nowrap;
}

.np-nav { display: flex; align-items: center; gap: 2px; }
.np-nav a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: 100px;
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}
.np-nav a:hover { background: rgba(46,49,146,0.07); }
.np-nav a.is-active { color: var(--blue); }

.np-header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.np-header__phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13.5px; color: var(--navy); white-space: nowrap; }
.np-header__phone svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }

.np-burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  flex-shrink: 0;
}
.np-burger svg { width: 20px; height: 20px; }

.np-mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  height: 100dvh;
  z-index: 999999;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 22px 26px 24px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.5,0,.2,1);
}
.np-mobile-nav.is-open { transform: translateY(0); }
.np-mobile-nav__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-shrink: 0; }
.np-mobile-nav__close {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.np-mobile-nav ul { display: flex; flex-direction: column; gap: 0; flex-shrink: 0; }
.np-mobile-nav a {
  font-family: var(--font-serif);
  font-size: 24px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: block;
}
.np-mobile-nav__footer { margin-top: auto; padding-top: 18px; flex-shrink: 0; }
.np-mobile-nav__footer .np-btn { width: 100%; text-align: center; }

/* ---------- Hero ---------- */
.np-hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% -10%, var(--navy-3) 0%, var(--navy) 55%, #060723 100%);
  color: var(--white);
  padding: 76px 0 110px;
  overflow: hidden;
}
.np-hero::before, .np-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
}
.np-hero::before { width: 520px; height: 520px; right: -160px; top: -180px; background: radial-gradient(circle at 30% 30%, rgba(79,94,255,0.4), transparent 70%); }
.np-hero::after { width: 420px; height: 420px; left: -140px; bottom: -160px; background: radial-gradient(circle at 60% 60%, rgba(255,255,255,0.06), transparent 70%); }

.np-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
.np-hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 9px 18px 9px 10px;
  border-radius: 100px;
  font-size: 13px; font-weight: 700;
  margin-bottom: 26px;
}
.np-hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #7f8cff; flex-shrink: 0; }
.np-hero h1 { font-size: clamp(36px, 4.6vw, 58px); color: var(--white); margin-bottom: 20px; }
.np-hero h1 em { font-style: normal; color: #99a4ff; }
.np-hero p.lead { font-size: 18px; color: rgba(255,255,255,0.72); max-width: 540px; margin-bottom: 38px; }
.np-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 54px; }
.np-hero__meta { display: flex; gap: 34px; flex-wrap: wrap; }
.np-hero__meta div { display: flex; flex-direction: column; }
.np-hero__meta strong { font-family: var(--font-serif); font-size: 26px; color: #99a4ff; }
.np-hero__meta span { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* Foto-okvir sa zlatno-plavim akcentom, deljen kroz hero i portret */
.np-photo-frame { position: relative; z-index: 2; }
.np-photo-frame::before {
  content: '';
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1.5px solid rgba(127,140,255,0.5);
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
}
.np-hero__visual {
  position: relative; z-index: 1;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 30px 60px rgba(3,4,20,0.5);
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-2), var(--navy) 70%);
}
.np-hero__photo { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.np-hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,7,35,0.85) 0%, rgba(6,7,35,0.1) 42%, transparent 62%);
}
.np-hero__visual .caption { position: absolute; z-index: 2; bottom: 26px; left: 26px; right: 26px; text-align: center; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

/* Mozaik tima u hero sekciji Početne — umesto fotografije jednog lekara */
.np-team-grid {
  position: relative; z-index: 1;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 30px 60px rgba(3,4,20,0.5);
  overflow: hidden;
  background: var(--navy-2);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  padding: 3px;
}
.np-team-grid__cell { position: relative; overflow: hidden; border-radius: 10px; background: var(--navy-3); }
.np-team-grid__cell img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.np-team-grid__cell.stat {
  grid-column: span 2;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  background: linear-gradient(120deg, var(--blue), var(--blue-light));
}
.np-team-grid__cell.stat div { text-align: center; }
.np-team-grid__cell.stat strong { display: block; font-family: var(--font-serif); font-size: 30px; color: var(--white); }
.np-team-grid__cell.stat span { font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.85); }

/* ---------- Stats strip ---------- */
.np-stats { background: var(--white); border-bottom: 1px solid var(--border); }
.np-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.np-stats__item { text-align: center; padding: 40px 16px; border-left: 1px solid var(--border); }
.np-stats__item:first-child { border-left: none; }
.np-stats__item strong { display: block; font-family: var(--font-serif); font-size: 34px; color: var(--navy); }
.np-stats__item span { display: block; margin-top: 6px; font-size: 13.5px; color: var(--text-soft); }

/* ---------- Page banner (interne stranice) ---------- */
.np-page-banner {
  position: relative;
  background: radial-gradient(120% 160% at 85% -20%, var(--navy-3) 0%, var(--navy) 55%, #060723 100%);
  color: var(--white);
  padding: 64px 0 84px;
  overflow: hidden;
  text-align: center;
}
.np-page-banner::before {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  right: -140px; top: -200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(79,94,255,0.35), transparent 70%);
}
.np-page-banner .np-container { position: relative; z-index: 2; }
.np-page-banner .np-eyebrow { justify-content: center; color: #b7c0ff; }
.np-page-banner .np-eyebrow::before { background: #b7c0ff; }
.np-page-banner h1 { color: var(--white); font-size: clamp(32px, 4.4vw, 50px); margin: 16px 0 14px; }
.np-page-banner p { color: rgba(255,255,255,0.68); max-width: 600px; margin: 0 auto; font-size: 17px; }
.np-breadcrumb { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 20px; }
.np-breadcrumb a:hover { color: var(--white); }

/* ---------- Grid / kartice ---------- */
.np-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.np-grid--3 { grid-template-columns: repeat(3, 1fr); }
.np-grid--2 { grid-template-columns: repeat(2, 1fr); }

.np-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.np-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(46,49,146,0.35); }
.np-card__icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: var(--navy);
  color: #b7c0ff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background .3s ease, color .3s ease;
}
.np-card__icon svg { width: 26px; height: 26px; }
.np-card:hover .np-card__icon { background: var(--blue); color: var(--white); }
.np-card h3 { font-size: 19px; margin-bottom: 10px; }
.np-card p { color: var(--text-soft); font-size: 14.5px; }
.np-card a.np-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--blue); }
.np-card a.np-card__link svg { width: 14px; height: 14px; transition: transform .25s ease; }
.np-card a.np-card__link:hover svg { transform: translateX(4px); }
.np-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--sky);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* Doktor kartica (tim pregled) */
.np-doctor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.np-doctor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.np-doctor-card__photo { aspect-ratio: 3/4; overflow: hidden; background: var(--sky); }
.np-doctor-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.np-doctor-card__body { padding: 22px; }
.np-doctor-card__body h3 { font-size: 18px; margin-bottom: 6px; }
.np-doctor-card__body p { font-size: 13.5px; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.np-doctor-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--navy); }
.np-doctor-card__link svg { width: 14px; height: 14px; transition: transform .25s ease; }
.np-doctor-card:hover .np-doctor-card__link svg { transform: translateX(4px); }

/* ---------- Timeline ---------- */
.np-timeline { position: relative; max-width: 780px; margin: 0 auto; padding-left: 34px; border-left: 2px solid var(--border); }
.np-timeline__item { position: relative; padding-bottom: 44px; }
.np-timeline__item:last-child { padding-bottom: 0; }
.np-timeline__item::before {
  content: ''; position: absolute; left: -41px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--blue);
}
.np-timeline__year { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.np-timeline__item h3 { font-size: 19px; margin-bottom: 8px; }
.np-timeline__item p { color: var(--text-soft); font-size: 15px; max-width: 560px; }

/* ---------- Bio / O nama ---------- */
.np-bio { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.np-bio__portrait-frame { position: sticky; top: 110px; }
.np-bio__portrait {
  position: relative; z-index: 1;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--sky);
}
.np-bio__photo { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.np-bio__text p { color: var(--text-soft); margin-bottom: 18px; font-size: 16.5px; }
.np-bio__text h1, .np-bio__text h2 { font-size: 30px; margin-bottom: 6px; }
.np-bio__text .np-doctor-title { color: var(--blue); font-weight: 700; font-size: 15px; margin-bottom: 20px; display: block; }
.np-bio__pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.np-pillar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 22px 18px; }
.np-pillar svg { width: 24px; height: 24px; color: var(--blue); margin-bottom: 12px; }
.np-pillar h4 { font-family: var(--font-sans); font-size: 15px; margin-bottom: 6px; }
.np-pillar p { font-size: 13.5px; color: var(--text-soft); }

.np-credentials { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.np-credentials li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--navy); font-weight: 600; }
.np-credentials li svg { width: 14px; height: 14px; padding: 5px; box-sizing: content-box; color: var(--blue); background: var(--sky); border-radius: 50%; flex-shrink: 0; margin-top: 1px; }

/* ---------- Service full detail (grana medicine) ---------- */
.np-service-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 42px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.np-service-full:last-child { margin-bottom: 0; }
.np-service-full__head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.np-service-full__icon {
  width: 56px; height: 56px; border-radius: 15px;
  background: var(--sky); color: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.np-service-full__icon svg { width: 26px; height: 26px; }
.np-service-full h3 { font-size: 22px; }
.np-service-full__body p { color: var(--text-soft); line-height: 1.75; margin-bottom: 16px; }
.np-service-full__body p:last-of-type { margin-bottom: 22px; }
.np-service-full__highlights { display: flex; flex-direction: column; gap: 12px; }
.np-service-full__highlights li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--navy); font-weight: 600; }
.np-service-full__highlights li svg { width: 14px; height: 14px; padding: 5px; box-sizing: content-box; color: var(--blue); background: var(--sky); border-radius: 50%; flex-shrink: 0; }

/* "Kada posetiti specijalistu" simptom grid — koristi se na single-service */
.np-symptom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.np-symptom {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}
.np-symptom__icon {
  width: 46px; height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.np-symptom__icon svg { width: 20px; height: 20px; }
.np-symptom p { font-size: 13.5px; font-weight: 600; color: var(--navy); }

/* ---------- FAQ ---------- */
.np-faq { max-width: 780px; margin: 0 auto; }
.np-faq__item { border-bottom: 1px solid var(--border); }
.np-faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; background: none; border: none; text-align: left;
  font-family: var(--font-serif); font-size: 19px; color: var(--navy);
}
.np-faq__q svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; transition: transform .3s ease; }
.np-faq__item.is-open .np-faq__q svg { transform: rotate(180deg); }
.np-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.np-faq__a p { padding: 0 4px 26px; color: var(--text-soft); max-width: 640px; }

/* ---------- CTA banner ---------- */
.np-cta {
  position: relative;
  background: radial-gradient(120% 160% at 85% 20%, var(--navy-3) 0%, var(--navy) 60%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  overflow: hidden;
}
.np-cta h2 { color: var(--white); font-size: clamp(26px,3vw,36px); margin-bottom: 12px; }
.np-cta p { color: rgba(255,255,255,0.7); max-width: 460px; }
.np-cta__actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.np-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.np-info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 30px; }
.np-info-item { display: flex; gap: 16px; align-items: flex-start; }
.np-info-item__icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--navy); color: #b7c0ff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.np-info-item__icon svg { width: 21px; height: 21px; }
.np-info-item h4 { font-family: var(--font-sans); font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-faint); margin-bottom: 4px; }
.np-info-item p, .np-info-item a { font-size: 16px; font-weight: 600; color: var(--navy); }
.np-info-item .hours-row { display: flex; justify-content: space-between; font-weight: 500; font-size: 14.5px; color: var(--text-soft); max-width: 260px; }

.np-map { width: 100%; aspect-ratio: 16/11; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.np-map iframe { width: 100%; height: 100%; border: 0; }

.np-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.np-form-card h3 { font-size: 24px; margin-bottom: 8px; }
.np-form-card > p { color: var(--text-soft); margin-bottom: 26px; font-size: 14.5px; }

.np-field { margin-bottom: 18px; }
.np-field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; color: var(--navy); }
.np-field input, .np-field select, .np-field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--sky);
  transition: border-color .2s ease, background .2s ease;
}
.np-field input:focus, .np-field select:focus, .np-field textarea:focus { outline: none; border-color: var(--blue); background: var(--white); }
.np-field textarea { min-height: 120px; resize: vertical; }
.np-hp { position: absolute; left: -9999px; opacity: 0; }

.np-form-notice { padding: 14px 18px; border-radius: 12px; font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.np-form-notice--success { background: #e1f3e7; color: #1c6b41; }
.np-form-notice--error { background: #fbe7e7; color: #9c2b2b; }

/* ---------- Footer ---------- */
.np-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 76px 0 30px; }
.np-footer__top { display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.np-footer__brand { display: flex; align-items: center; gap: 12px; }
.np-footer__brand img { height: 44px; width: auto; flex-shrink: 0; }
.np-footer__brand .np-logo__name { color: var(--white); font-size: 20px; }
.np-footer__brand-text { margin-top: 16px; max-width: 300px; font-size: 14.5px; color: rgba(255,255,255,0.55); }
.np-footer h4 { font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: #b7c0ff; margin-bottom: 18px; }
.np-footer ul { display: flex; flex-direction: column; gap: 11px; }
.np-footer ul a, .np-footer ul span { font-size: 14.5px; color: rgba(255,255,255,0.68); }
.np-footer ul a:hover { color: var(--white); }
.np-footer__social { display: inline-flex; align-items: center; gap: 10px; margin-top: 6px; padding: 10px 16px; border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; font-size: 13.5px; font-weight: 700; }
.np-footer__social svg { width: 16px; height: 16px; }
.np-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13px; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 10px; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.6,.3,1), transform .7s cubic-bezier(.2,.6,.3,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .np-nav, .np-header__phone { display: none; }
  .np-burger { display: flex; }
  .np-header__actions { gap: 10px; }
  .np-header__actions .np-btn { padding: 11px 18px; font-size: 13.5px; }
  .np-burger { width: 40px; height: 40px; }
}

@media (max-width: 1024px) {
  .np-hero__grid { grid-template-columns: 1fr; }
  .np-hero__visual-frame { max-width: 380px; margin: 0 auto; }
  .np-grid { grid-template-columns: repeat(2, 1fr); }
  .np-symptom-grid { grid-template-columns: repeat(2, 1fr); }
  .np-bio { grid-template-columns: 1fr; }
  .np-bio__portrait-frame { position: static; max-width: 340px; margin: 0 auto 24px; }
  .np-bio__pillars { grid-template-columns: 1fr; }
  .np-contact-grid { grid-template-columns: 1fr; }
  .np-footer__top { grid-template-columns: 1fr 1fr; }
  .np-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .np-stats__item:nth-child(3) { border-left: none; }
}

@media (max-width: 860px) {
  .np-section { padding: 68px 0; }
  .np-cta { flex-direction: column; text-align: center; padding: 46px 30px; }
  .np-cta__actions { justify-content: center; }
}

@media (max-width: 600px) {
  .np-header__inner { padding-top: 12px; padding-bottom: 12px; gap: 12px; }
  .np-header.is-scrolled .np-header__inner { padding-top: 9px; padding-bottom: 9px; }
  .np-logo img { height: 38px; }
  .np-logo__name { font-size: 15px; }
  .np-logo__title { font-size: 8.5px; }
  .np-header__actions { gap: 8px; }
  .np-header__actions .np-btn { padding: 9px 14px; font-size: 12.5px; }
  .np-header__actions .np-btn svg { width: 14px; height: 14px; }
}

@media (max-width: 420px) {
  .np-logo__text { display: none; }
  .np-header__inner { padding-top: 14px; padding-bottom: 14px; }
  .np-header__actions { width: 100%; justify-content: space-between; }
}

@media (max-width: 620px) {
  .np-container { padding-left: 20px; padding-right: 20px; }
  .np-grid, .np-grid--3 { grid-template-columns: 1fr; }
  .np-symptom-grid { grid-template-columns: 1fr 1fr; }
  .np-hero { padding: 44px 0 60px; }
  .np-hero__meta { gap: 22px; }
  .np-hero__visual-frame { max-width: 300px; }
  .np-photo-frame::before { inset: 12px -10px -10px 12px; }
  .np-stats__grid { grid-template-columns: 1fr 1fr; }
  .np-service-full { padding: 26px 22px; border-radius: var(--radius-md); }
  .np-service-full__head { gap: 14px; margin-bottom: 16px; }
  .np-service-full__icon { width: 46px; height: 46px; }
  .np-service-full__icon svg { width: 21px; height: 21px; }
  .np-service-full h3 { font-size: 19px; }
  .np-footer__top { grid-template-columns: 1fr; }
  .np-form-card { padding: 26px; }
}

@media (max-height: 640px) {
  .np-mobile-nav__top { margin-bottom: 14px; }
  .np-mobile-nav a { font-size: 19px; padding: 7px 0; }
  .np-mobile-nav__footer { padding-top: 10px; }
}
