/* ============================================================
   NewMe Budapest — design system
   Mobil-first. Root 16px, minden érték rem alapú.
   ============================================================ */

/* ---------- 1. Tokenek ---------- */
:root{
  /* Papír / tinta */
  --paper:        #FBFAF7;
  --paper-warm:   #F4F0E9;
  --paper-card:   #FFFFFF;
  --ink:          #10222B;
  --ink-70:       #3C5561;
  --ink-50:       #6B818B;
  --line:         #E4DED3;
  --line-soft:    #EFEBE3;

  /* Márka (a meglévő logóból és az élő CSS-ből) */
  --brand:        #2FC1FF;
  --brand-mid:    #0B93CC;
  --brand-deep:   #06526F;
  --brand-night:  #052F41;
  --brand-wash:   #EAF7FD;

  /* Meleg másodlagos akcent */
  --sand:         #6E6050;
  --sand-wash:    #F1ECE3;

  --wa:           #25D366;

  /* Tipográfia */
  --f-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --f-text:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Ritmus */
  --gap:      1.25rem;
  --pad-x:    1.25rem;
  --sec-y:    3.5rem;
  --maxw:     72rem;
  --maxw-txt: 40rem;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --sh-1: 0 1px 2px rgba(16,34,43,.06), 0 6px 18px -8px rgba(16,34,43,.14);
  --sh-2: 0 2px 4px rgba(16,34,43,.05), 0 22px 44px -22px rgba(16,34,43,.28);

  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (min-width: 48rem){
  :root{ --pad-x: 2rem; --sec-y: 5rem; --gap: 1.75rem; }
}
@media (min-width: 64rem){
  :root{ --pad-x: 2.5rem; --sec-y: 6.5rem; }
}

/* ---------- 2. Alap ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--f-text);
  font-size:1rem;
  line-height:1.65;
  font-feature-settings:"kern","liga","calt";
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg,video{ max-width:100%; height:auto; display:block; }
a{ color:var(--brand-deep); text-decoration-thickness:1px; text-underline-offset:.18em; }
a:hover{ color:var(--brand-mid); }
button{ font:inherit; }

::selection{ background:var(--brand); color:#04222F; }

:focus-visible{
  outline:2px solid var(--brand-mid);
  outline-offset:3px;
  border-radius:2px;
}

.nm-skip{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--ink); color:#fff; padding:.75rem 1.25rem; border-radius:0 0 var(--r-md) 0;
}
.nm-skip:focus{ left:0; color:#fff; }

/* ---------- 3. Tipográfia ---------- */
h1,h2,h3,h4,h5{
  font-family:var(--f-display);
  font-weight:600;
  line-height:1.14;
  letter-spacing:-.012em;
  color:var(--ink);
  margin:0 0 .6em;
  text-wrap:balance;
}
h1{ font-size:clamp(2rem, 7.2vw, 3.9rem); letter-spacing:-.022em; }
h2{ font-size:clamp(1.55rem, 5.2vw, 2.6rem); letter-spacing:-.018em; }
h3{ font-size:clamp(1.22rem, 3.6vw, 1.6rem); }
h4{ font-size:1.06rem; font-family:var(--f-text); font-weight:600; letter-spacing:-.005em; line-height:1.35; }
p{ margin:0 0 1.05em; text-wrap:pretty; }
p:last-child{ margin-bottom:0; }

.nm-lede{ font-size:clamp(1.06rem,2.6vw,1.22rem); line-height:1.6; color:var(--ink-70); }

.nm-eyebrow{
  display:flex; align-items:center; gap:.7rem;
  font-family:var(--f-text);
  font-size:.72rem; font-weight:600;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--sand);
  margin:0 0 1.1rem;
}
.nm-eyebrow::before{
  content:""; width:1.9rem; height:1px; background:currentColor; flex:none; opacity:.7;
}
.nm-eyebrow--center{ justify-content:center; }

/* ---------- 4. Elrendezés ---------- */
.nm-wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad-x); }
.nm-wrap--narrow{ max-width:52rem; }
.nm-section{ padding-block:var(--sec-y); }
.nm-section--tight{ padding-block:calc(var(--sec-y) * .62); }
.nm-section--paper{ background:var(--paper-warm); }
.nm-section--night{ background:var(--brand-night); color:#DCEEF6; }
.nm-section--night h1,.nm-section--night h2,.nm-section--night h3,.nm-section--night h4{ color:#fff; }
.nm-section--night .nm-eyebrow{ color:#7ED6F7; }
.nm-section--night a{ color:#9FE2FF; }

.nm-grid{ display:grid; gap:var(--gap); }
@media (min-width:56rem){
  .nm-grid--2{ grid-template-columns:repeat(2,1fr); align-items:center; gap:clamp(2rem,5vw,4.5rem); }
  .nm-grid--2-wide{ grid-template-columns:1.05fr .95fr; align-items:center; gap:clamp(2rem,5vw,4.5rem); }
  .nm-grid--3{ grid-template-columns:repeat(3,1fr); }
  .nm-grid--4{ grid-template-columns:repeat(4,1fr); }
  .nm-order-first{ order:-1; }
}
@media (min-width:36rem) and (max-width:55.99rem){
  .nm-grid--3,.nm-grid--4{ grid-template-columns:repeat(2,1fr); }
}

/* ---------- 5. Gombok ---------- */
.nm-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  min-height:3rem; padding:.85rem 1.5rem;
  font-family:var(--f-text); font-size:.95rem; font-weight:600; letter-spacing:-.005em;
  border:1px solid transparent; border-radius:var(--r-md);
  text-decoration:none; cursor:pointer;
  transition:transform .18s var(--ease), box-shadow .22s var(--ease), background-color .18s var(--ease), color .18s var(--ease);
}
.nm-btn svg{ width:1.05em; height:1.05em; flex:none; }
.nm-btn:hover{ transform:translateY(-1px); }
.nm-btn:active{ transform:translateY(0); }

.nm-btn--primary{ background:var(--ink); color:#fff; box-shadow:var(--sh-1); }
.nm-btn--primary:hover{ background:#08303F; color:#fff; box-shadow:var(--sh-2); }

.nm-btn--brand{ background:var(--brand); color:#052F41; box-shadow:0 8px 22px -10px rgba(47,193,255,.85); }
.nm-btn--brand:hover{ background:#12B4FA; color:#042534; }

.nm-btn--ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.nm-btn--ghost:hover{ background:var(--paper-card); border-color:var(--ink-50); color:var(--ink); }

.nm-btn--wa{ background:var(--wa); color:#04351A; }
.nm-btn--wa:hover{ background:#1FBF5B; color:#04351A; }

.nm-btn--wide{ width:100%; }
@media (min-width:30rem){ .nm-btn--wide{ width:auto; } }

.nm-btnrow{ display:flex; flex-wrap:wrap; gap:.75rem; margin-top:1.75rem; }

.nm-arrow{
  display:inline-flex; align-items:center; gap:.5rem; min-height:2.25rem;
  font-weight:600; font-size:.95rem; text-decoration:none;
  color:var(--brand-deep); border-bottom:1px solid rgba(6,82,111,.28);
  padding-bottom:.15rem;
  transition:gap .2s var(--ease), border-color .2s var(--ease);
}
.nm-arrow:hover{ gap:.8rem; border-color:var(--brand-mid); }
.nm-arrow svg{ width:.9em; height:.9em; }

/* ---------- 6. Fejléc ---------- */
.nm-topbar{
  background:var(--brand-night); color:#B9DDEC;
  font-size:.8rem; letter-spacing:.01em;
}
.nm-topbar .nm-wrap{ display:flex; align-items:center; justify-content:center; gap:1.5rem; min-height:2.4rem; flex-wrap:wrap; }
.nm-topbar a{ color:#CBE9F6; text-decoration:none; display:inline-flex; align-items:center; gap:.42rem; min-height:2.4rem; padding-block:.3rem; }
.nm-topbar a:hover{ color:#fff; text-decoration:underline; }
.nm-topbar svg{ width:.9rem; height:.9rem; opacity:.8; }
.nm-topbar__sep{ display:none; }
@media (min-width:48rem){
  .nm-topbar .nm-wrap{ justify-content:flex-end; gap:1.75rem; }
  .nm-topbar__sep{ display:block; margin-right:auto; opacity:.65; }
}

.nm-header{
  position:sticky; top:0; z-index:90;
  background:rgba(251,250,247,.86);
  backdrop-filter:saturate(1.4) blur(12px);
  -webkit-backdrop-filter:saturate(1.4) blur(12px);
  border-bottom:1px solid var(--line-soft);
  transition:box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.nm-header.is-stuck{ box-shadow:0 1px 0 var(--line), 0 10px 28px -22px rgba(16,34,43,.5); }
.nm-header__inner{ display:flex; align-items:center; gap:1rem; min-height:4.25rem; }
@media (min-width:64rem){ .nm-header__inner{ min-height:5.25rem; } }

.nm-logo{ display:block; flex:none; margin-right:auto; }
.nm-logo img{ width:auto; height:2.6rem; }
@media (min-width:64rem){ .nm-logo img{ height:3.25rem; } }

.nm-nav{ display:none; }
@media (min-width:64rem){
  .nm-nav{ display:block; }
  .nm-nav > ul{ display:flex; align-items:center; gap:.15rem; list-style:none; margin:0; padding:0; }
  .nm-nav li{ position:relative; }
  .nm-nav a{
    display:flex; align-items:center; gap:.3rem;
    padding:.6rem .78rem; border-radius:var(--r-sm);
    font-size:.9rem; font-weight:500; color:var(--ink); text-decoration:none;
    white-space:nowrap; transition:color .18s var(--ease), background-color .18s var(--ease);
  }
  .nm-nav a:hover{ color:var(--brand-deep); background:var(--brand-wash); }
  .nm-nav a[aria-current="page"]{ color:var(--brand-deep); }
  .nm-nav a[aria-current="page"]::after{
    content:""; position:absolute; left:.78rem; right:.78rem; bottom:.28rem; height:2px;
    background:var(--brand); border-radius:2px;
  }
  .nm-nav .nm-caret{ width:.62rem; height:.62rem; opacity:.55; transition:transform .2s var(--ease); }
  .nm-nav li:hover > a .nm-caret,
  .nm-nav li:focus-within > a .nm-caret{ transform:rotate(180deg); }

  .nm-nav .sub-menu{
    position:absolute; top:calc(100% + .35rem); left:0; z-index:20;
    min-width:16.5rem; margin:0; padding:.45rem; list-style:none;
    background:var(--paper-card); border:1px solid var(--line);
    border-radius:var(--r-md); box-shadow:var(--sh-2);
    opacity:0; visibility:hidden; transform:translateY(-6px);
    transition:opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  }
  .nm-nav li:hover > .sub-menu,
  .nm-nav li:focus-within > .sub-menu{ opacity:1; visibility:visible; transform:translateY(0); }
  .nm-nav .sub-menu a{ padding:.6rem .7rem; font-weight:500; }
}

.nm-header__cta{ display:none; }
@media (min-width:64rem){ .nm-header__cta{ display:inline-flex; margin-left:.75rem; } }

.nm-burger{
  display:inline-flex; flex-direction:column; align-items:center; justify-content:center;
  width:2.9rem; height:2.9rem; margin-right:-.4rem;
  background:transparent; border:1px solid var(--line); border-radius:var(--r-md);
  color:var(--ink); cursor:pointer;
}
.nm-burger:hover{ background:var(--paper-card); }
@media (min-width:64rem){ .nm-burger{ display:none; } }
.nm-burger span{ display:block; width:1.15rem; height:1.5px; background:currentColor; border-radius:2px; transition:transform .25s var(--ease), opacity .18s var(--ease); }
.nm-burger span + span{ margin-top:4px; }
.nm-burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(5.5px) rotate(45deg); }
.nm-burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nm-burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-5.5px) rotate(-45deg); }

.nm-drawer{
  position:fixed; inset:0; z-index:95;
  background:var(--paper);
  padding:0 var(--pad-x) 7rem;
  overflow-y:auto; overscroll-behavior:contain;
  opacity:0; visibility:hidden; transform:translateY(-.5rem);
  transition:opacity .24s var(--ease), transform .24s var(--ease), visibility .24s;
}
.nm-drawer.is-open{ opacity:1; visibility:visible; transform:none; }

body.nm-locked{ overflow:hidden; }
/* A fiók saját fejléce: logó + bezáró gomb. Így a bezárás soha nem függ attól,
   hogy az oldal fejléce hol van, és a hamburger gombbal sem takarhatja semmi. */
.nm-drawer__top{
  position:sticky; top:0; z-index:2;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  min-height:4.25rem; margin-bottom:.75rem;
  background:var(--paper); border-bottom:1px solid var(--line-soft);
}
.nm-drawer__top .nm-logo{ margin:0; }
.nm-drawer__top .nm-logo img{ height:2.6rem; width:auto; }
.nm-close{
  display:inline-flex; align-items:center; justify-content:center; flex:none;
  width:2.9rem; height:2.9rem; margin-right:-.4rem;
  background:transparent; border:1px solid var(--line); border-radius:var(--r-md);
  color:var(--ink); cursor:pointer;
  transition:background-color .18s var(--ease), border-color .18s var(--ease);
}
.nm-close:hover{ background:var(--paper-card); border-color:var(--ink-50); }
.nm-close svg{ width:1.25rem; height:1.25rem; }

.nm-drawer ul{ list-style:none; margin:0; padding:0; }
.nm-drawer > ul > li{ border-bottom:1px solid var(--line-soft); }
.nm-drawer > ul a{
  display:block; padding:.95rem 0;
  font-family:var(--f-display); font-size:1.24rem; font-weight:600; letter-spacing:-.015em;
  color:var(--ink); text-decoration:none;
}
.nm-drawer > ul a[aria-current="page"]{ color:var(--brand-deep); }
.nm-drawer .sub-menu{ padding:0 0 .9rem .95rem; border-left:1px solid var(--line); margin-left:.15rem; }
.nm-drawer .sub-menu a{ font-family:var(--f-text); font-size:1rem; font-weight:500; padding:.5rem 0; color:var(--ink-70); }
.nm-drawer__foot{ margin-top:2rem; display:grid; gap:.7rem; }
/* Biztosíték: a fiókban lévő gombok soha ne örököljék a menü-link tipográfiát. */
.nm-drawer .nm-btn{
  display:inline-flex; align-items:center; justify-content:center;
  font-family:var(--f-text); font-size:.95rem; font-weight:600; letter-spacing:-.005em;
  padding:.85rem 1.5rem; width:100%; text-align:center;
}

/* ---------- 7. Hero ---------- */
.nm-hero{ position:relative; padding-block:2.75rem 0; overflow:hidden; }
@media (min-width:64rem){ .nm-hero{ padding-block:4rem 0; } }
.nm-hero__grid{ display:grid; gap:2rem; align-items:center; }
@media (min-width:56rem){
  .nm-hero__grid{ grid-template-columns:1.08fr .92fr; gap:clamp(2rem,5vw,4rem); }
}
.nm-hero h1{ margin-bottom:.5em; }
.nm-hero__media{ position:relative; }
.nm-hero__media img{
  width:100%; border-radius:var(--r-lg);
  aspect-ratio:4/3; object-fit:cover;
  box-shadow:var(--sh-2);
}
@media (min-width:56rem){ .nm-hero__media img{ aspect-ratio:5/6; } }
.nm-hero__rule{ height:1px; background:var(--line); margin-top:var(--sec-y); }

.nm-hero--compact{ padding-block:1.25rem 0; }
.nm-hero--compact h1{ font-size:clamp(1.85rem,6vw,3.15rem); }

.nm-crumbs{ font-size:.78rem; color:var(--ink-50); padding-block:1rem .25rem; }
.nm-crumbs ol{ display:flex; flex-wrap:wrap; align-items:center; gap:.4rem; list-style:none; margin:0; padding:0; }
.nm-crumbs a{ color:var(--ink-50); text-decoration:none; }
.nm-crumbs a:hover{ color:var(--brand-deep); text-decoration:underline; }
.nm-crumbs li + li::before{ content:"/"; margin-right:.4rem; opacity:.45; }
.nm-crumbs [aria-current]{ color:var(--ink-70); }

/* ---------- 8. Tartalmi elemek ---------- */
.nm-prose{ max-width:var(--maxw-txt); }
.nm-prose--wide{ max-width:46rem; }
.nm-prose h2{ margin-top:2.25rem; }
.nm-prose h2:first-child{ margin-top:0; }
.nm-prose h3{ margin-top:1.9rem; }
.nm-prose ul{ list-style:none; margin:0 0 1.3em; padding:0; }
.nm-prose ul li{ position:relative; padding-left:1.6rem; margin-bottom:.6rem; }
.nm-prose ul li::before{
  content:""; position:absolute; left:.15rem; top:.66em;
  width:.45rem; height:.45rem; border-radius:50%;
  background:var(--brand); box-shadow:0 0 0 3px var(--brand-wash);
}
.nm-prose ol{ padding-left:1.25rem; margin:0 0 1.3em; }
.nm-prose ol li{ margin-bottom:.6rem; padding-left:.25rem; }
.nm-prose strong{ font-weight:600; color:var(--ink); }

.nm-standfirst{
  border-left:2px solid var(--brand);
  padding-left:1.25rem;
  font-size:clamp(1.02rem,2.4vw,1.14rem);
  line-height:1.62;
  color:var(--ink-70);
}

/* Számozott sorok — ikon-kártyák helyett szerkesztőségi lista */
.nm-rows{ list-style:none; margin:0; padding:0; border-top:1px solid var(--line); }
.nm-rows li{
  display:grid; gap:.35rem 1.25rem;
  grid-template-columns:auto 1fr;
  padding:1.4rem 0;
  border-bottom:1px solid var(--line);
}
@media (min-width:48rem){
  .nm-rows li{ grid-template-columns:3.5rem 15rem 1fr; align-items:start; gap:1.75rem; padding:1.75rem 0; }
}
.nm-rows__num{
  font-family:var(--f-display); font-size:.9rem; font-weight:600;
  color:var(--sand); letter-spacing:.04em; padding-top:.28rem;
}
.nm-rows__t{ font-family:var(--f-display); font-size:1.14rem; font-weight:600; line-height:1.28; letter-spacing:-.012em; margin:0; }
.nm-rows__d{ grid-column:1 / -1; color:var(--ink-70); font-size:.97rem; margin:0; }
@media (min-width:48rem){ .nm-rows__d{ grid-column:3; } }

.nm-card{
  background:var(--paper-card);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:1.5rem;
  transition:border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.nm-card:hover{ border-color:#CFE8F5; box-shadow:var(--sh-1); }
.nm-card h3{ margin-bottom:.45em; }
.nm-card p{ color:var(--ink-70); font-size:.97rem; }
.nm-card__icon{ width:2.4rem; height:2.4rem; color:var(--brand-mid); margin-bottom:1.1rem; }
.nm-card__icon svg{ width:100%; height:100%; }

.nm-svc{
  display:flex; flex-direction:column;
  background:var(--paper-card); border:1px solid var(--line);
  border-radius:var(--r-lg); overflow:hidden;
  transition:box-shadow .25s var(--ease), transform .25s var(--ease);
}
.nm-svc:hover{ box-shadow:var(--sh-2); transform:translateY(-3px); }
.nm-svc__img{ position:relative; aspect-ratio:16/10; overflow:hidden; background:var(--paper-warm); }
.nm-svc__img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.nm-svc:hover .nm-svc__img img{ transform:scale(1.035); }
.nm-svc__body{ padding:1.5rem; display:flex; flex-direction:column; flex:1; }
.nm-svc__body h3 a{ color:inherit; text-decoration:none; }
.nm-svc__body h3 a:hover{ color:var(--brand-deep); }
.nm-svc__body p{ color:var(--ink-70); font-size:.96rem; }
.nm-svc__body .nm-arrow{ margin-top:auto; align-self:flex-start; padding-top:1.1rem; }

.nm-quote{ display:grid; gap:1.75rem; }
@media (min-width:56rem){ .nm-quote{ grid-template-columns:.9fr 1.1fr; gap:clamp(2rem,5vw,4rem); align-items:center; } }
.nm-quote blockquote{
  margin:0;
  font-family:var(--f-display); font-weight:400; font-style:italic;
  font-size:clamp(1.35rem,4vw,2.05rem); line-height:1.3; letter-spacing:-.018em;
}
.nm-quote__sig{ max-width:14rem; margin-top:1.5rem; opacity:.85; }
.nm-quote__who{ margin-top:1rem; font-size:.9rem; color:var(--ink-50); }
.nm-quote__who strong{ display:block; font-size:1.02rem; color:var(--ink); font-weight:600; }

.nm-trust{ display:grid; gap:1.75rem; }
@media (min-width:40rem){ .nm-trust{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:64rem){ .nm-trust{ grid-template-columns:repeat(4,1fr); gap:2rem; } }
.nm-trust__i{ border-top:2px solid var(--brand); padding-top:1.1rem; }
.nm-trust__i h3{ font-size:1.06rem; font-family:var(--f-text); font-weight:600; margin-bottom:.4em; letter-spacing:-.005em; }
.nm-trust__i p{ font-size:.94rem; color:var(--ink-70); margin:0; }

.nm-cta{ position:relative; overflow:hidden; }
.nm-cta::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(60% 120% at 88% 0%, rgba(47,193,255,.20), transparent 62%),
    radial-gradient(50% 110% at 6% 100%, rgba(47,193,255,.10), transparent 60%);
  pointer-events:none;
}
.nm-cta .nm-wrap{ position:relative; }
.nm-cta__grid{ display:grid; gap:1.5rem; }
@media (min-width:56rem){ .nm-cta__grid{ grid-template-columns:1.15fr .85fr; align-items:center; gap:3rem; } }
.nm-cta p{ color:#B7DAE8; }

.nm-contact{ display:grid; gap:1.25rem; }
@media (min-width:48rem){ .nm-contact{ grid-template-columns:repeat(3,1fr); gap:1.5rem; } }
.nm-contact__i{
  background:var(--paper-card); border:1px solid var(--line);
  border-radius:var(--r-lg); padding:1.4rem;
}
.nm-contact__k{ font-size:.74rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--sand); margin:0 0 .7em; }
.nm-contact__i p{ margin:0 0 .4em; font-size:1.02rem; }
.nm-contact__i a{ display:inline-block; font-weight:600; text-decoration:none; padding-block:.28rem; }
.nm-contact__i a:hover{ text-decoration:underline; }
.nm-contact__i address{ font-style:normal; color:var(--ink-70); font-size:.97rem; }

/* Elementor űrlap tartó */
.nm-formwrap{
  background:var(--paper-card); border:1px solid var(--line);
  border-radius:var(--r-lg); padding:1.5rem; box-shadow:var(--sh-1);
}
@media (min-width:48rem){ .nm-formwrap{ padding:2.25rem; } }
.nm-formwrap h2{ font-size:clamp(1.4rem,4vw,1.9rem); }
.nm-formslot{
  border:1px dashed #C9DCE6; border-radius:var(--r-md);
  padding:1.25rem; background:var(--brand-wash);
  color:var(--brand-deep); font-size:.9rem; line-height:1.55;
}

/* Elementor Form widget stílusa, ha a slotba kerül */
.nm-formwrap .elementor-field-group label,
.nm-formwrap .elementor-field-label{
  font-size:.82rem; font-weight:600; letter-spacing:.01em; color:var(--ink-70); margin-bottom:.35rem;
}
.nm-formwrap .elementor-field-textual{
  width:100%; min-height:3rem; padding:.7rem .9rem;
  background:var(--paper); border:1px solid var(--line); border-radius:var(--r-md);
  font-family:var(--f-text); font-size:1rem; color:var(--ink);
  transition:border-color .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.nm-formwrap .elementor-field-textual:focus{
  outline:0; background:#fff; border-color:var(--brand);
  box-shadow:0 0 0 3px rgba(47,193,255,.22);
}
.nm-formwrap textarea.elementor-field-textual{ min-height:7.5rem; resize:vertical; }
.nm-formwrap .elementor-button[type="submit"]{
  min-height:3rem; padding:.85rem 1.75rem; border:0; border-radius:var(--r-md);
  background:var(--ink); color:#fff; font-weight:600; font-size:.95rem; cursor:pointer;
  transition:background-color .18s var(--ease), transform .18s var(--ease);
}
.nm-formwrap .elementor-button[type="submit"]:hover{ background:#08303F; transform:translateY(-1px); }

.nm-video{
  position:relative; display:block; border-radius:var(--r-lg); overflow:hidden;
  aspect-ratio:16/9; background:var(--brand-night); box-shadow:var(--sh-2);
}
.nm-video img{ width:100%; height:100%; object-fit:cover; opacity:.62; transition:opacity .3s var(--ease), transform .6s var(--ease); }
.nm-video:hover img{ opacity:.5; transform:scale(1.03); }
.nm-video__play{
  position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.9rem;
  color:#fff; font-weight:600; font-size:.92rem; letter-spacing:.02em;
}
.nm-video__play span:first-child{
  display:grid; place-items:center; width:4rem; height:4rem;
  border-radius:50%; background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.5);
  backdrop-filter:blur(4px);
  transition:background-color .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.nm-video:hover .nm-video__play span:first-child{ background:var(--brand); transform:scale(1.06); color:#052F41; }
.nm-video__play svg{ width:1.35rem; height:1.35rem; margin-left:.15rem; }

.nm-map{ border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--sh-1); }
.nm-map iframe{ display:block; width:100%; height:22rem; border:0; filter:grayscale(.28) contrast(1.03); }
@media (min-width:64rem){ .nm-map iframe{ height:26rem; } }

/* ---------- 9. Lábléc ---------- */
.nm-footer{ background:var(--brand-night); color:#A9CEDF; padding-block:3.25rem 0; }
.nm-footer h4{
  font-size:.74rem; letter-spacing:.15em; text-transform:uppercase;
  color:#6FB9D6; margin-bottom:1.1em; font-family:var(--f-text);
}
.nm-footer__grid{ display:grid; gap:2.25rem; }
@media (min-width:48rem){ .nm-footer__grid{ grid-template-columns:repeat(2,1fr); gap:2.5rem; } }
@media (min-width:64rem){ .nm-footer__grid{ grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:3rem; } }
.nm-footer__logo img{ height:3.4rem; width:auto; }
.nm-footer__about{ margin-top:1.25rem; font-size:.94rem; line-height:1.6; color:#93BFD3; max-width:24rem; }
.nm-footer ul{ list-style:none; margin:0; padding:0; }
.nm-footer li{ margin-bottom:.25rem; }
.nm-footer a{ display:inline-block; color:#CBE7F3; text-decoration:none; font-size:.94rem; padding-block:.32rem; min-height:1.6rem; }
.nm-footer a:hover{ color:#fff; text-decoration:underline; }
.nm-footer address{ font-style:normal; font-size:.94rem; line-height:1.6; color:#93BFD3; }

.nm-social{ display:flex; gap:.6rem; margin-top:1.5rem; }
.nm-social a{
  display:grid; place-items:center; width:2.5rem; height:2.5rem;
  border:1px solid rgba(255,255,255,.16); border-radius:var(--r-md); color:#CBE7F3;
  transition:background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.nm-social a:hover{ background:var(--brand); border-color:var(--brand); color:#052F41; }
.nm-social svg{ width:1.1rem; height:1.1rem; }

.nm-footer__bar{
  margin-top:3rem; padding-block:1.35rem;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex; flex-direction:column; gap:.6rem;
  font-size:.84rem; color:#7FAEC5;
}
@media (min-width:48rem){ .nm-footer__bar{ flex-direction:row; align-items:center; justify-content:space-between; } }
.nm-footer__bar a{ display:inline-block; font-size:.84rem; padding-block:.3rem; }

/* ---------- 10. Mobil művelet sáv ---------- */
.nm-actionbar{
  position:fixed; left:0; right:0; bottom:0; z-index:80;
  display:grid; grid-template-columns:repeat(3,1fr);
  background:rgba(251,250,247,.94);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border-top:1px solid var(--line);
  padding-bottom:env(safe-area-inset-bottom);
}
.nm-actionbar a{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.22rem;
  min-height:3.6rem; padding:.45rem .3rem;
  font-size:.68rem; font-weight:600; letter-spacing:.01em;
  color:var(--ink); text-decoration:none; text-align:center;
}
.nm-actionbar a + a{ border-left:1px solid var(--line-soft); }
.nm-actionbar svg{ width:1.15rem; height:1.15rem; }
.nm-actionbar a:nth-child(2) svg{ color:var(--wa); }
.nm-actionbar a:nth-child(3){ background:var(--brand); color:#052F41; }
body{ padding-bottom:3.9rem; }
@media (min-width:64rem){
  .nm-actionbar{ display:none; }
  body{ padding-bottom:0; }
}

/* ---------- 11. Segédosztályok ---------- */
.nm-vh{ position:absolute!important; width:1px; height:1px; margin:-1px; padding:0; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
.nm-center{ text-align:center; }
.nm-mt-0{ margin-top:0; }
.nm-mb-0{ margin-bottom:0; }
.nm-rule{ height:1px; background:var(--line); border:0; margin:0; }

.nm-js .nm-reveal{ opacity:0; transform:translateY(14px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.nm-js .nm-reveal.is-in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .nm-js .nm-reveal{ opacity:1; transform:none; } }

@media print{
  .nm-header,.nm-topbar,.nm-actionbar,.nm-drawer,.nm-footer,.nm-video{ display:none!important; }
  body{ background:#fff; padding:0; }
}
