/* ═══════════════════════════════════════════════════════════════
   NEEV PATHAR — Suite design system
   TripDust / Booking-inspired utilitarian system, Forest Green + Gold.

   Rules (kept faithfully):
   - ONE brand colour (deep forest green) + ONE CTA colour (gold) + neutrals.
   - Inter only. No serif, no display face. Weights <= 800.
   - 4px corner radius. 1px borders for separation. Shadows used sparingly.
   - No keyframe animation beyond simple hover state changes.
   ═══════════════════════════════════════════════════════════════ */

body.nps-page {
  /* Brand — deep forest green */
  --nps-brand:       #1E3A30;
  --nps-brand-deep:  #142A22;
  --nps-brand-soft:  #EAF1EC;   /* pale mist tint */
  --nps-link:        #2F6B53;

  /* CTA — warm gold */
  --nps-cta:         #D2A24A;
  --nps-cta-deep:    #B98632;
  --nps-cta-soft:    #F7EFDF;

  /* Neutrals (warm) */
  --nps-text:        #1F2421;
  --nps-text-soft:   #46514B;
  --nps-text-muted:  #6B7770;
  --nps-bg:          #FFFFFF;
  --nps-bg-soft:     #F6F5F1;
  --nps-bg-alt:      #FBFAF7;
  --nps-border:      #E3E6E1;
  --nps-border-strong:#C7CCC6;

  /* Functional */
  --nps-success:     #2E7D32;
  --nps-warning:     #C0561F;

  /* Shape + type */
  --nps-radius:      4px;
  --nps-radius-pill: 999px;
  --nps-shadow:      0 1px 2px rgba(31,36,33,0.04);
  --nps-font:        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
  --nps-container:   1140px;
  --nps-container-narrow: 820px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.nps-page {
  font-family: var(--nps-font);
  color: var(--nps-text);
  background: var(--nps-bg);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--nps-link); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--nps-font); color: var(--nps-text); letter-spacing: -0.01em; line-height: 1.22; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--nps-cta-deep); outline-offset: 2px; }

.nps-skip { position: absolute; left: -9999px; }
.nps-skip:focus { left: 8px; top: 8px; background: #fff; padding: 8px 14px; border-radius: var(--nps-radius); z-index: 100; }

/* ───────────── Layout primitives ───────────── */
.nps-wrap { max-width: var(--nps-container); margin: 0 auto; padding: 0 16px; }
.nps-wrap--narrow { max-width: var(--nps-container-narrow); }
.nps-section { padding: 48px 0; }
.nps-section + .nps-section { border-top: 1px solid var(--nps-border); }
.nps-section--soft { background: var(--nps-bg-soft); }
.nps-section--alt  { background: var(--nps-bg-alt); }
.nps-section-head { max-width: 720px; margin: 0 0 24px; }
.nps-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.nps-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--nps-cta-deep); margin: 0 0 8px;
}
.nps-section-title { font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; margin: 0 0 6px; }
.nps-section-sub { font-size: 15px; color: var(--nps-text-muted); margin: 0; }

/* ───────────── Buttons ───────────── */
.nps-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; min-height: 44px;
  border-radius: var(--nps-radius);
  font-weight: 600; font-size: 15px; line-height: 1.2;
  border: 1px solid transparent; cursor: pointer; font-family: inherit;
  text-decoration: none;
}
.nps-btn:hover { text-decoration: none; }
.nps-btn--lg { padding: 13px 26px; font-size: 16px; }
.nps-btn--primary { background: var(--nps-cta); color: var(--nps-text); }
.nps-btn--primary:hover { background: var(--nps-cta-deep); color: #fff; }
.nps-btn--wa { background: var(--nps-cta); color: var(--nps-text); font-weight: 700; }
.nps-btn--wa:hover { background: var(--nps-cta-deep); color: #fff; }
.nps-btn--solid { background: var(--nps-brand); color: #fff; }
.nps-btn--solid:hover { background: var(--nps-brand-deep); color: #fff; }
.nps-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.nps-btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.nps-btn--outline { background: transparent; color: var(--nps-brand); border-color: var(--nps-border-strong); }
.nps-btn--outline:hover { background: var(--nps-brand); color: #fff; border-color: var(--nps-brand); }

/* ───────────── Top bar + nav ───────────── */
.nps-top { background: var(--nps-brand); position: sticky; top: 0; z-index: 20; }
.nps-top__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 16px; }
.nps-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nps-brand img { height: 34px; width: auto; }
.nps-brand__text { display: flex; flex-direction: column; line-height: 1.05; gap: 2px; }
.nps-brand__mark { font-weight: 800; font-size: 17px; color: #fff; letter-spacing: -0.01em; }
.nps-brand__tag { font-size: 10px; color: rgba(255,255,255,0.72); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.nps-top__contact { display: flex; align-items: center; gap: 14px; }
.nps-contact { font-size: 13px; color: rgba(255,255,255,0.9); font-weight: 600; }
.nps-contact:hover { color: #fff; text-decoration: underline; }
.nps-contact--wa { background: var(--nps-cta); color: var(--nps-text); padding: 7px 13px; border-radius: var(--nps-radius); font-weight: 700; }
.nps-contact--wa:hover { background: var(--nps-cta-deep); color: #fff; text-decoration: none; }

.nps-top__rating { font-size: 13px; color: rgba(255,255,255,0.9); font-weight: 500; }
.nps-top__rating strong { color: var(--nps-cta); font-weight: 700; }
.nps-top__rating:hover { color: #fff; text-decoration: underline; }

.nps-nav { background: #fff; border-bottom: 1px solid var(--nps-border); position: sticky; top: 0; z-index: 19; }
.nps-nav__inner { position: relative; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nps-nav__links { display: flex; align-items: center; overflow: visible; }
.nps-nav__item { position: static; }
.nps-nav__link {
  display: inline-block; padding: 16px 16px; white-space: nowrap;
  color: var(--nps-text); font-weight: 500; font-size: 14px;
  border-bottom: 3px solid transparent;
}
.nps-nav__link:hover { color: var(--nps-link); text-decoration: none; }
.nps-nav__link.is-current { border-bottom-color: var(--nps-cta); color: var(--nps-brand); font-weight: 700; }
.nps-caret { font-size: 10px; color: var(--nps-muted, #94a3a0); }
.nps-nav__cta { margin-left: auto; min-height: 38px; padding: 8px 16px; font-size: 14px; }
.nps-burger { display: none; background: none; border: 0; padding: 10px 14px; cursor: pointer; }
.nps-burger span { display: block; width: 22px; height: 2px; background: var(--nps-text); margin: 4px 0; }

/* Mega menus — links always in DOM; only hidden visually on desktop. */
.nps-mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border: 1px solid var(--nps-border); border-top: 3px solid var(--nps-cta);
  box-shadow: 0 18px 40px rgba(31,36,33,0.10);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 30;
}
.nps-has-mega:hover .nps-mega, .nps-has-mega:focus-within .nps-mega { opacity: 1; visibility: visible; transform: none; }
.nps-mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 24px 16px; }
.nps-mega__head { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--nps-text-muted); margin: 0 0 12px; }
.nps-mega ul { list-style: none; margin: 0; padding: 0; }
.nps-mega li { margin-bottom: 9px; }
.nps-mega a { color: var(--nps-text); font-size: 14px; font-weight: 500; }
.nps-mega a:hover { color: var(--nps-brand); text-decoration: none; }
.nps-mega__more { color: var(--nps-link) !important; font-weight: 600 !important; }
.nps-mega__col--cta { background: var(--nps-brand-soft); border-radius: var(--nps-radius); padding: 18px; }
.nps-mega__col--cta p { font-size: 13px; color: var(--nps-text-soft); margin: 0 0 12px; }

/* Desktop defaults for the mobile-only nav bits (hidden on desktop). */
.nps-nav__row { display: inline-flex; align-items: center; }
.nps-nav__toggle, .nps-subnav, .nps-nav__mobile-actions { display: none; }

/* ───────────── Hero ───────────── */
.nps-hero { background: var(--nps-brand); color: #fff; padding: 56px 0 48px; }
.nps-hero__inner { max-width: 760px; }
.nps-hero__eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nps-cta); margin: 0 0 14px; }
.nps-hero__title { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; line-height: 1.12; color: #fff; margin: 0 0 14px; }
.nps-hero__sub { font-size: 16px; color: rgba(255,255,255,0.88); max-width: 600px; margin: 0 0 22px; }
.nps-hero__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.nps-hero__stats { list-style: none; display: flex; gap: 34px; flex-wrap: wrap; margin: 24px 0 0; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,0.2); }
.nps-hero__stats li { font-size: 12px; color: rgba(255,255,255,0.8); }
.nps-hero__stats strong { display: block; font-size: 20px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 2px; }
.nps-hero--image { position: relative; }
.nps-hero--image .nps-hero__media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.nps-hero--image .nps-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,42,34,0.92) 0%, rgba(20,42,34,0.72) 55%, rgba(20,42,34,0.45) 100%); }
.nps-hero--image .nps-wrap { position: relative; z-index: 2; }

/* ───────────── Trust / credentials strip ───────────── */
.nps-trust { background: var(--nps-brand-soft); border-bottom: 1px solid var(--nps-border); padding: 20px 0; }
.nps-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.nps-trust__item { border-left: 3px solid var(--nps-brand); padding-left: 12px; }
.nps-trust__item strong { display: block; font-size: 14px; font-weight: 700; color: var(--nps-brand); }
.nps-trust__item span { font-size: 12px; color: var(--nps-text-muted); }

/* ───────────── Process / how-it-works ───────────── */
.nps-steps { list-style: none; padding: 16px 0 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.nps-step { position: relative; background: var(--nps-bg-soft); border: 1px solid var(--nps-border); border-radius: var(--nps-radius); padding: 22px 18px 18px; }
.nps-step__num { position: absolute; top: -15px; left: 18px; width: 30px; height: 30px; border-radius: 50%; background: var(--nps-brand); color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.nps-step__title { margin: 8px 0 6px; font-size: 16px; font-weight: 700; }
.nps-step__desc { margin: 0; font-size: 13px; color: var(--nps-text-soft); }

/* ───────────── Why-us grid ───────────── */
.nps-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.nps-why__card { background: var(--nps-bg); border: 1px solid var(--nps-border); border-radius: var(--nps-radius); padding: 20px; }
.nps-why__card h3 { margin: 0 0 6px; font-size: 16px; font-weight: 700; }
.nps-why__card p { margin: 0; font-size: 14px; color: var(--nps-text-soft); }

/* ───────────── Service / link tiles ───────────── */
.nps-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.nps-tile { display: block; background: var(--nps-bg); border: 1px solid var(--nps-border); border-radius: var(--nps-radius); padding: 18px 18px; color: var(--nps-text); text-decoration: none; }
.nps-tile:hover { border-color: var(--nps-brand); text-decoration: none; }
.nps-tile h3 { margin: 0 0 4px; font-size: 16px; font-weight: 700; color: var(--nps-brand); }
.nps-tile p { margin: 0; font-size: 13px; color: var(--nps-text-muted); }

/* ───────────── Place grid + chips (cities / areas) ───────────── */
.nps-place-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; list-style: none; padding: 0; margin: 0; }
.nps-place { display: block; border: 1px solid var(--nps-border); border-radius: var(--nps-radius); padding: 12px 14px; color: var(--nps-text); font-weight: 600; font-size: 14px; text-decoration: none; }
.nps-place:hover { border-color: var(--nps-brand); color: var(--nps-brand); text-decoration: none; }
.nps-chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.nps-chip { display: inline-block; border: 1px solid var(--nps-border); border-radius: var(--nps-radius-pill); padding: 6px 14px; font-size: 13px; color: var(--nps-text-soft); text-decoration: none; }
.nps-chip:hover { border-color: var(--nps-brand); color: var(--nps-brand); text-decoration: none; }

/* ───────────── Gallery (portfolio) ───────────── */
.nps-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; list-style: none; padding: 0; margin: 0; }
.nps-gallery__item { position: relative; display: block; aspect-ratio: 4/3; border-radius: var(--nps-radius); overflow: hidden; border: 1px solid var(--nps-border); color: #fff; text-decoration: none; background: var(--nps-bg-soft); }
.nps-gallery__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nps-gallery__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(20,42,34,0.78) 100%); }
.nps-gallery__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px; z-index: 2; }
.nps-gallery__cap strong { display: block; font-size: 16px; font-weight: 700; color: #fff; }
.nps-gallery__cap span { font-size: 12px; color: rgba(255,255,255,0.85); }
.nps-gallery--plain .nps-gallery__item { aspect-ratio: 4/3; }
.nps-gallery--plain img { position: static; }

/* ───────────── Framed images (uniform mat + border) ───────────── */
.nps-frame { display: block; background: #fff; border: 1px solid var(--nps-border); padding: 6px; border-radius: var(--nps-radius); }
.nps-frame__inner { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 2px; background: var(--nps-bg-soft); }
.nps-frame__inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nps-frame--portrait .nps-frame__inner { aspect-ratio: 3 / 4; }
.nps-frame--wide .nps-frame__inner { aspect-ratio: 16 / 9; }
.nps-frames { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; list-style: none; padding: 0; margin: 0; }
.nps-frames--2 { grid-template-columns: repeat(2, 1fr); }
.nps-frame__cap { display: block; margin-top: 8px; font-size: 13px; color: var(--nps-text-muted); text-align: center; }
.nps-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: center; }
.nps-feature--flip { direction: rtl; } .nps-feature--flip > * { direction: ltr; }
@media (max-width: 820px) { .nps-feature { grid-template-columns: 1fr; } .nps-frames { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .nps-frames, .nps-frames--2 { grid-template-columns: 1fr; } }

/* ───────────── Cards (blog / feature) ───────────── */
.nps-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; list-style: none; padding: 0; margin: 0; }
.nps-card { display: flex; flex-direction: column; background: var(--nps-bg); border: 1px solid var(--nps-border); border-radius: var(--nps-radius); overflow: hidden; color: var(--nps-text); text-decoration: none; height: 100%; }
.nps-card:hover { border-color: var(--nps-brand); text-decoration: none; }
.nps-card__media { aspect-ratio: 16/9; background: var(--nps-bg-soft); }
.nps-card__media img { width: 100%; height: 100%; object-fit: cover; }
.nps-card__body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.nps-card__chip { align-self: flex-start; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--nps-brand); background: var(--nps-brand-soft); padding: 3px 8px; border-radius: var(--nps-radius); }
.nps-card__title { font-size: 16px; font-weight: 700; line-height: 1.3; margin: 2px 0 0; }
.nps-card__meta { font-size: 12px; color: var(--nps-text-muted); }
.nps-card__excerpt { font-size: 14px; color: var(--nps-text-soft); margin: 0; }

/* ───────────── Stats ───────────── */
.nps-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; list-style: none; padding: 0; margin: 0; text-align: center; }
.nps-stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--nps-brand); line-height: 1.1; }
.nps-stat span { font-size: 13px; color: var(--nps-text-muted); }

/* ───────────── Testimonials ───────────── */
.nps-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; list-style: none; padding: 0; margin: 0; }
.nps-quote { background: var(--nps-bg); border: 1px solid var(--nps-border); border-radius: var(--nps-radius); padding: 18px 20px; }
.nps-quote__stars { color: var(--nps-cta-deep); font-size: 13px; letter-spacing: 1px; margin: 0 0 8px; }
.nps-quote blockquote { margin: 0 0 10px; font-size: 14px; line-height: 1.6; color: var(--nps-text); }
.nps-quote__by { margin: 0; font-size: 13px; color: var(--nps-text-muted); }
.nps-quote__by strong { color: var(--nps-text); font-weight: 700; }

/* ───────────── FAQ ───────────── */
.nps-faq { max-width: 820px; }
.nps-faq__item { border: 1px solid var(--nps-border); border-radius: var(--nps-radius); margin-bottom: 8px; background: var(--nps-bg); }
.nps-faq__item summary { cursor: pointer; padding: 14px 18px; font-weight: 600; font-size: 15px; list-style: none; }
.nps-faq__item summary::-webkit-details-marker { display: none; }
.nps-faq__item[open] summary { border-bottom: 1px solid var(--nps-border); color: var(--nps-brand); }
.nps-faq__item .nps-faq__a { padding: 14px 18px; font-size: 14px; color: var(--nps-text-soft); }

/* ───────────── Prose / narrative ───────────── */
.nps-page-intro { padding-top: 40px; padding-bottom: 8px; }
.nps-lede { font-size: 17px; color: var(--nps-text-soft); max-width: 760px; }
.nps-prose { max-width: 820px; font-size: 15px; color: var(--nps-text-soft); }
.nps-prose h2 { font-size: 22px; margin: 1.4em 0 .5em; color: var(--nps-text); }
.nps-prose h3 { font-size: 18px; margin: 1.2em 0 .4em; }
.nps-prose ul, .nps-prose ol { padding-left: 1.2em; }
.nps-prose li { margin-bottom: .4em; }
.nps-prose img { border-radius: var(--nps-radius); margin: 1em 0; }
/* In-content contextual links: dark text, subtle underline for accessibility, brand on hover. */
.nps-prose a { color: var(--nps-text); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; text-decoration-color: var(--nps-border-strong); font-weight: 500; }
.nps-prose a:hover { color: var(--nps-brand); text-decoration-color: var(--nps-cta); }

/* ───────────── Founder / author E-E-A-T ───────────── */
.nps-founder__card { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; background: var(--nps-bg-alt); border: 1px solid var(--nps-border); border-radius: var(--nps-radius); padding: 32px; }
.nps-founder__name { font-size: 24px; margin: 6px 0 2px; color: var(--nps-text); }
.nps-founder__role { color: var(--nps-cta-deep); font-weight: 600; margin: 0 0 14px; }
.nps-founder__creds { background: var(--nps-bg); border: 1px solid var(--nps-border); border-radius: var(--nps-radius); padding: 18px 20px; }
.nps-founder__creds h3 { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--nps-text-muted); margin: 0 0 8px; }
.nps-founder__creds ul { list-style: none; padding: 0; margin: 0; }
.nps-founder__creds li { padding: 10px 0; border-bottom: 1px solid var(--nps-border); display: flex; flex-direction: column; gap: 2px; }
.nps-founder__creds li:last-child { border-bottom: 0; padding-bottom: 0; }
.nps-founder__creds strong { color: var(--nps-text); font-size: 14px; }
.nps-founder__creds span { color: var(--nps-text-soft); font-size: 13px; }
.nps-authorbox { margin-top: 30px; background: var(--nps-bg-alt); border: 1px solid var(--nps-border); border-left: 3px solid var(--nps-cta); border-radius: var(--nps-radius); padding: 22px 24px; }
.nps-authorbox__name { font-size: 18px; margin: 0 0 4px; color: var(--nps-text); }
.nps-authorbox__role { color: var(--nps-text-muted); font-size: 13px; margin: 0 0 10px; }
.nps-authorbox p { font-size: 14px; color: var(--nps-text-soft); margin: 0 0 10px; }
.nps-authorbox p:last-child { margin-bottom: 0; }
@media (max-width: 860px) { .nps-founder__card { grid-template-columns: 1fr; gap: 20px; padding: 22px; } }

/* ───────────── Breadcrumbs ───────────── */
.nps-crumbs { font-size: 12px; color: var(--nps-text-muted); padding: 12px 0; }
.nps-crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.nps-crumbs li::after { content: "›"; margin-left: 6px; color: var(--nps-border-strong); }
.nps-crumbs li:last-child::after { content: ""; }
.nps-crumbs a { color: var(--nps-text-muted); }
.nps-crumbs a:hover { color: var(--nps-brand); }

/* ───────────── Final CTA band ───────────── */
.nps-cta-band { background: var(--nps-brand); color: #fff; padding: 28px 0; }
.nps-cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.nps-cta-band__title { font-size: 20px; font-weight: 700; color: #fff; margin: 0 0 4px; }
.nps-cta-band__sub { color: rgba(255,255,255,0.85); font-size: 14px; margin: 0; }
.nps-cta-band__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ───────────── Forms ───────────── */
.nps-form { display: grid; gap: 12px; max-width: 520px; }
.nps-form label { font-size: 13px; font-weight: 600; color: var(--nps-text-soft); display: block; margin-bottom: 4px; }
.nps-form input, .nps-form textarea {
  width: 100%; padding: 11px 13px; font-size: 15px; font-family: inherit;
  border: 1px solid var(--nps-border-strong); border-radius: var(--nps-radius);
  background: #fff; color: var(--nps-text);
}
.nps-form input:focus, .nps-form textarea:focus { outline: none; border-color: var(--nps-brand); }
.nps-form textarea { min-height: 120px; resize: vertical; }
.nps-form__hp { position: absolute; left: -9999px; }
.nps-form__msg { font-size: 14px; }
.nps-form__msg.is-ok { color: var(--nps-success); }
.nps-form__msg.is-err { color: var(--nps-warning); }
.nps-form__note { font-size: 13px; color: var(--nps-text-muted); margin: 2px 0 0; }

/* contact split */
.nps-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.nps-info-list { list-style: none; padding: 0; margin: 0; }
.nps-info-list li { padding: 10px 0; border-bottom: 1px solid var(--nps-border); font-size: 14px; }
.nps-info-list strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--nps-text-muted); margin-bottom: 2px; }
.nps-map { border: 1px solid var(--nps-border); border-radius: var(--nps-radius); overflow: hidden; }
.nps-map iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ───────────── HTML sitemap ───────────── */
.nps-sitemap { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px 32px; align-items: start; }
.nps-sitemap__col h2 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--nps-brand); border-bottom: 1px solid var(--nps-border); padding-bottom: 8px; margin: 0 0 12px; }
.nps-sitemap__col ul { list-style: none; padding: 0; margin: 0; }
.nps-sitemap__col li { margin-bottom: 8px; font-size: 14px; }
.nps-sitemap__col a { color: var(--nps-text-soft); }
.nps-sitemap__col a:hover { color: var(--nps-brand); }

/* ───────────── Footer ───────────── */
.nps-footer { background: var(--nps-brand-deep); color: rgba(255,255,255,0.80); padding: 44px 0 0; font-size: 14px; }
.nps-footer a { color: rgba(255,255,255,0.80); }
.nps-footer a:hover { color: #fff; }
.nps-footer h3 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px; }
.nps-footer ul { list-style: none; padding: 0; margin: 0; }
.nps-footer li { margin-bottom: 9px; }
.nps-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.nps-footer__brand .nps-brand__mark { color: #fff; font-size: 17px; font-weight: 800; display: block; }
.nps-footer__desc { margin: 10px 0 14px; max-width: 38ch; color: rgba(255,255,255,0.68); }
.nps-footer__nap { font-style: normal; display: grid; gap: 4px; margin: 0 0 12px; }
.nps-footer__rating { display: inline-block; margin-bottom: 12px; }
.nps-footer__rating strong { color: var(--nps-cta); }
.nps-footer__links-inline { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; }
.nps-footer__locations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
.nps-footer__loc-list { columns: 2; column-gap: 18px; }
.nps-footer__loc-list li { break-inside: avoid; }
.nps-footer__bottom { padding: 16px 0; font-size: 12px; color: rgba(255,255,255,0.55); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ───────────── Sticky mobile CTA ───────────── */
.nps-sticky-cta { display: none; }

/* ───────────── Responsive ───────────── */
@media (max-width: 980px) {
  .nps-trust__grid, .nps-steps, .nps-stats { grid-template-columns: repeat(2, 1fr); }
  .nps-why, .nps-quotes, .nps-cards, .nps-gallery { grid-template-columns: repeat(2, 1fr); }
  .nps-footer__top { grid-template-columns: 1fr 1fr; }
  .nps-footer__locations { grid-template-columns: 1fr; }
  .nps-footer__loc-list { columns: 3; }
  .nps-contact-grid { grid-template-columns: 1fr; }
}
/* ── Mobile / tablet nav drawer (clean accordion) ── */
@media (max-width: 860px) {
  .nps-burger { display: block; order: 0; }
  .nps-nav__cta { order: 1; margin-left: auto; }
  .nps-mega { display: none !important; }
  .nps-caret { display: none; }

  .nps-nav__links { display: none; order: 3; width: 100%; }
  .nps-nav.is-open .nps-nav__links {
    display: block; border-top: 1px solid var(--nps-border);
    max-height: calc(100vh - 112px); overflow-y: auto;
    margin: 6px -16px 0; padding: 4px 0 8px;
  }

  .nps-nav__item { display: block; border-bottom: 1px solid var(--nps-border); }
  .nps-nav__row { display: flex; align-items: stretch; justify-content: space-between; }
  .nps-nav__links > .nps-nav__link { display: block; padding: 15px 16px; font-size: 16px; font-weight: 600; border-bottom: 1px solid var(--nps-border); }
  .nps-nav__row .nps-nav__link { flex: 1; padding: 15px 16px; font-size: 16px; font-weight: 600; border-bottom: 0; }
  .nps-nav__link.is-current { color: var(--nps-brand); border-bottom-color: var(--nps-border); }

  .nps-nav__toggle { display: flex; align-items: center; justify-content: center; width: 54px; flex: 0 0 54px; background: none; border: 0; border-left: 1px solid var(--nps-border); cursor: pointer; }
  .nps-nav__toggle span { width: 9px; height: 9px; border-right: 2px solid var(--nps-text-muted); border-bottom: 2px solid var(--nps-text-muted); transform: rotate(45deg) translateY(-2px); transition: transform .2s ease; }
  .nps-has-mega.is-expanded .nps-nav__toggle span { transform: rotate(-135deg) translateY(-2px); }

  .nps-subnav { display: none; flex-direction: column; background: var(--nps-bg-soft); }
  .nps-has-mega.is-expanded .nps-subnav { display: flex; }
  .nps-subnav a { padding: 13px 16px 13px 30px; font-size: 15px; color: var(--nps-text-soft); border-top: 1px solid var(--nps-border); }
  .nps-subnav a:hover { color: var(--nps-brand); text-decoration: none; }
  .nps-subnav__more { color: var(--nps-link) !important; font-weight: 600; }

  .nps-nav__mobile-actions { display: block; padding: 16px; }
  .nps-nav__mobile-actions > .nps-btn { width: 100%; justify-content: center; margin-bottom: 10px; }
  .nps-nav__mobile-contact { display: flex; gap: 10px; }
  .nps-nav__mobile-contact .nps-btn { flex: 1; justify-content: center; }

  .nps-top__contact .nps-contact:not(.nps-contact--wa), .nps-top__rating { display: none; }
}

@media (max-width: 640px) {
  body.nps-page { font-size: 14px; }
  .nps-section { padding: 36px 0; }
  .nps-why, .nps-quotes, .nps-cards, .nps-gallery, .nps-trust__grid, .nps-steps, .nps-stats { grid-template-columns: 1fr; }
  .nps-footer__top, .nps-footer__locations { grid-template-columns: 1fr; }
  .nps-footer__loc-list { columns: 2; }
  .nps-sticky-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    background: #fff; border-top: 1px solid var(--nps-border); padding: 8px;
    gap: 8px;
  }
  .nps-sticky-cta .nps-btn { flex: 1; justify-content: center; min-height: 46px; }
  main.nps-main { padding-bottom: 64px; }
}

@media print { .nps-top, .nps-nav, .nps-cta-band, .nps-sticky-cta, .nps-footer { display: none; } }
