* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #f5f7fa;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h2 {
  margin: 0 0 12px 0;
  font-size: 1.4rem;
  font-weight: 650;
}

h3 {
  margin: 0 0 8px 0;
  font-size: 1.05rem;
  font-weight: 650;
}

p {
  margin: 0 0 12px 0;
  color: #374151;
}

a {
  color: inherit;
}


.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 56px 0;
}

@media (max-width: 900px) {
  .section {
    padding: 44px 0;
  }
}
.app-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 44px 0;
}

.app-title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.app-subtitle {
  max-width: 720px;
  color: #4b5563;
  margin-top: 10px;
}
.app-actions {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 650;
  margin-right: 10px;
  border: 1px solid transparent;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.btn.primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.btn.secondary {
  background: #ffffff;
  border-color: #d1d5db;
  color: #111827;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.section {
  padding: 64px 0;
}

.panel {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}
ul, ol {
  margin: 12px 0 0 0;
  padding-left: 18px;
  color: #374151;
}

li {
  margin: 8px 0;
}

.steps h3 {
  margin-top: 18px;
}

.steps p {
  margin-bottom: 0;
}

.steps {
  max-width: 600px;
}

.footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 20px 0;
  font-size: 0.9rem;
  color: #6b7280;
}
.cta-box {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.cta-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 8px;
}

.muted {
  color: #6b7280;
  font-size: 0.9rem;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .cta-box {
    grid-template-columns: 1fr;
  }
}
/* ---- UI polish patch ---- */
/* ---- UI polish v2 (tokens + finer UI) ---- */

:root{
  --bg: #f5f7fa;
  --surface: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --border: #e5e7eb;

  --primary: #2563eb;

  --radius: 12px;
  --radius-sm: 8px;

  --shadow-sm: 0 6px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 26px rgba(0,0,0,0.08);

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 44px;
}

body{
  background: var(--bg);
  color: var(--text);
}

/* Typo rhythm */
h2{
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 var(--space-2) 0;
  letter-spacing: -0.02em;
}

h3{
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 var(--space-1) 0;
  letter-spacing: -0.01em;
}

p{
  color: #374151;
  margin: 0 0 var(--space-2) 0;
  max-width: 74ch;
}

/* Links: app-like, subtle */
a{
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Header: a bit more "product" */
.app-header{
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--space-6) 0;
}

.app-title{
  font-weight: 800;
  letter-spacing: -0.03em;
}

.app-subtitle{
  margin-top: var(--space-2);
  color: var(--muted);
  max-width: 78ch;
}

/* Buttons: more consistent and accessible */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, border-color 120ms ease;
  user-select: none;
}

.btn.primary{
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn.secondary{
  background: var(--surface);
  border-color: #d1d5db;
  color: var(--text);
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active{
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Focus ring (keyboard users) */
.btn:focus,
a:focus{
  outline: 3px solid rgba(37, 99, 235, 0.25);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Section spacing */
.section{
  padding: 56px 0;
}

@media (max-width: 900px){
  .section{ padding: 44px 0; }
}

/* Panels + Cards: more "UI component" */
.panel{
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 120ms ease, transform 120ms ease;
}

.card:hover{
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Lists: cleaner */
ul, ol{
  margin: var(--space-2) 0 0 0;
  padding-left: 18px;
  color: #374151;
}

li{ margin: 8px 0; }

/* Steps block (if you used .steps wrapper with h3/p) */
.steps h3{
  margin-top: 18px;
}

.steps p{
  margin-bottom: 0;
}

/* CTA layout (if used) */
.cta-box{
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-4);
}

.cta-item{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.muted{
  color: #6b7280;
  font-size: 0.9rem;
  margin-top: var(--space-2);
}

@media (max-width: 900px){
  .cta-box{ grid-template-columns: 1fr; }
}

/* Footer: restrained */
.footer{
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 0;
  color: #6b7280;
  font-size: 0.9rem;
}
/* ---- Hero UI mock ---- */
.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.hero-copy .app-subtitle{ margin-bottom: 18px; }

.hero-mock{
  display: flex;
  justify-content: flex-end;
}

.mock-window{
  width: 100%;
  max-width: 520px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.mock-topbar{
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
}

.dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: #d1d5db;
  display: inline-block;
}

.mock-title{
  justify-self: end;
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: 650;
}

.mock-body{
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 260px;
}

.mock-sidebar{
  border-right: 1px solid var(--border);
  padding: 12px;
  background: rgba(245,247,250,0.7);
}

.mock-navitem{
  padding: 8px 10px;
  border-radius: 10px;
  color: #374151;
  font-weight: 650;
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.mock-navitem.active{
  background: rgba(37,99,235,0.10);
  color: var(--text);
  border: 1px solid rgba(37,99,235,0.18);
}

.mock-main{
  padding: 12px;
}

.mock-kpis{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.mock-kpi{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  background: #ffffff;
}

.kpi-label{
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 650;
  margin-bottom: 6px;
}

.kpi-value{
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mock-table{
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.mock-row{
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr 0.9fr;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: #374151;
}

.mock-row:last-child{ border-bottom: 0; }

.mock-row.head{
  background: rgba(245,247,250,0.7);
  color: #6b7280;
  font-weight: 750;
  font-size: 0.82rem;
}

.pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 750;
  width: fit-content;
}

.pill.ok{
  background: rgba(16,185,129,0.10);
  border-color: rgba(16,185,129,0.25);
}

.pill.warn{
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.28);
}

.mock-footnote{
  margin-top: 10px;
  color: #6b7280;
  font-size: 0.82rem;
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-mock{ justify-content: flex-start; }
  .mock-body{ grid-template-columns: 140px 1fr; }
}
/* ---- Dark mode (auto) ---- */
@media (prefers-color-scheme: dark){
  :root{
    --bg: #0b1220;
    --surface: #0f172a;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --border: rgba(255,255,255,0.10);

    --shadow-sm: 0 6px 18px rgba(0,0,0,0.45);
    --shadow-md: 0 12px 30px rgba(0,0,0,0.55);
  }

  body{ background: var(--bg); color: var(--text); }
  p{ color: #cbd5e1; }

  .app-header{
    background: rgba(15,23,42,0.80);
    border-bottom-color: var(--border);
  }

  .panel{
    background: rgba(15,23,42,0.85);
    border-top-color: var(--border);
    border-bottom-color: var(--border);
  }

  .card, .cta-item, .mock-window, .mock-kpi, .mock-table{
    background: rgba(15,23,42,0.95);
    border-color: var(--border);
  }

  .mock-topbar{
    background: rgba(15,23,42,0.85);
    border-bottom-color: var(--border);
  }

  .mock-sidebar{
    background: rgba(2,6,23,0.35);
    border-right-color: var(--border);
  }

  .mock-row{
    border-bottom-color: var(--border);
    color: #cbd5e1;
  }

  .mock-row.head{
    background: rgba(2,6,23,0.35);
    color: #9ca3af;
  }

  .dot{ background: rgba(255,255,255,0.25); }

  .btn.secondary{
    background: rgba(15,23,42,0.95);
    border-color: var(--border);
    color: var(--text);
  }

  a:hover{
    text-decoration-color: rgba(229,231,235,0.7);
  }
}
/* ---- Top nav ---- */
.topnav{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.topnav a{
  font-weight: 750;
  font-size: 0.92rem;
  color: #374151;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.topnav a:hover{
  text-decoration: none;
  border-color: var(--border);
  background: rgba(245,247,250,0.7);
}

@media (prefers-color-scheme: dark){
  .topnav a{ color: #cbd5e1; }
  .topnav a:hover{ background: rgba(2,6,23,0.35); }
}
/* ---- Docs link chip ---- */
.app-actions{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.link-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.65);
  color: #374151;
  font-weight: 750;
  font-size: 0.92rem;
  text-decoration: none;
}

.link-chip:hover{
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

@media (prefers-color-scheme: dark){
  .link-chip{
    background: rgba(15,23,42,0.85);
    color: #cbd5e1;
    border-color: var(--border);
  }
}
html{
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* sticky header / topnav miatt */
}
.topnav a.active{
  border-color: rgba(37,99,235,0.25);
  background: rgba(37,99,235,0.10);
}
@media (prefers-color-scheme: dark){
  .topnav a.active{
    border-color: rgba(37,99,235,0.35);
    background: rgba(37,99,235,0.16);
  }
}
@media (prefers-reduced-motion: no-preference){
  .mock-window{
    animation: floaty 6.5s ease-in-out infinite;
  }
  @keyframes floaty{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-4px); }
  }
}
/* =========================================================
   M-Explorer UI BRIDGE (web -> app look)
   Tedd a main.css LEGALJÁRA
   ========================================================= */

/* Font: JetBrains Mono (ha nincs betöltve, fallback) */
body{
  font-family: "JetBrains Mono", ui-monospace, Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* Design tokenek a szoftverből */
:root{
  --bg: #0a0f1a;
  --surface: #0f172a;
  --surface-2: #111827;
  --surface-3: #020617;

  --text: #e5e7eb;
  --muted: #94a3b8;

  --border: #1e293b;
  --border-2: #334155;

  --primary: #38bdf8;
  --primary-2: #6366f1;

  --radius: 14px;
  --radius-sm: 10px;

  --shadow-sm: 0 12px 38px rgba(0,0,0,0.55);
  --shadow-md: 0 18px 45px rgba(15,23,42,0.95);

  --focus: 0 0 0 1px rgba(56,189,248,0.85);
}

/* Alap oldal */
body{
  background: var(--bg);
  color: var(--text);
}

p{ color: #cbd5e1; }
.muted{ color: var(--muted); }

/* Címsorok: a szoftverben system-ui jellegűek */
h1, h2, h3{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  letter-spacing: 0.02em;
}

h1{
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #a855f7, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header: app-szerű top panel */
.app-header{
  background: radial-gradient(circle at left top, var(--primary) 0, var(--surface) 48%, var(--surface-3) 100%);
  border-bottom: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 18px 40px rgba(15,23,42,0.9);
}

.app-title{ letter-spacing: 0.08em; text-transform: uppercase; }
.app-subtitle{ color: #cbd5f5; }

/* Topnav: pill gombok, mint a szoftver nav */
.topnav{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.topnav a{
  padding: 6px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid transparent;
  color: #cdd8f0;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
  transition: 0.15s;
}

.topnav a:hover{
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.topnav a.active{
  border-color: rgba(56,189,248,0.45);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.25);
  background: rgba(15,23,42,0.85);
}

/* Panelek / kártyák: szoftver-panel érzés */
.panel{
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.card, .cta-item{
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card:hover{
  box-shadow: 0 20px 55px rgba(0,0,0,0.8);
  transform: translateY(-1px);
}

/* Inputok (ha vannak a weben is): szoftveres mező */
input[type="text"], input[type="email"], textarea, select{
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  color: var(--text);
  padding: 8px 12px;
  outline: none;
}

input:focus, textarea:focus, select:focus{
  border-color: var(--primary);
  box-shadow: var(--focus);
}

/* Gombok: szoftver gomb gradient finoman */
.btn.primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #0b1120;
  border: none;
  box-shadow: 0 10px 25px rgba(15,23,42,0.9);
}

.btn.secondary{
  background: rgba(15,23,42,0.85);
  color: var(--text);
  border: 1px solid rgba(148,163,184,0.6);
}

.btn:hover{
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Docs chip: szoftver “chip” */
.link-chip{
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(148,163,184,0.6);
  color: var(--text);
}

.link-chip:hover{
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.35);
}

/* UI mock: húzzuk a szoftver paneljeihez */
.mock-window{
  background: var(--surface-2);
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 18px 40px rgba(15,23,42,0.95);
}

.mock-topbar{
  background: var(--surface-3);
  border-bottom: 1px solid var(--border);
}

.mock-sidebar{
  background: rgba(2,6,23,0.85);
  border-right: 1px solid var(--border);
}

.mock-navitem{
  color: #cbd5f5;
}

.mock-navitem.active{
  background: rgba(56,189,248,0.10);
  border: 1px solid rgba(56,189,248,0.22);
}

.mock-kpi, .mock-table{
  background: var(--surface-3);
  border-color: var(--border);
}

.mock-row{
  border-bottom-color: var(--border);
  color: #cbd5e1;
}

.mock-row.head{
  background: rgba(15,23,42,0.75);
  color: var(--muted);
}

/* Footer */
.footer{
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--muted);
}
/* ---- Lists: readability boost ---- */
ul li,
ol li{
  color: #e5e7eb;         /* világosabb */
  line-height: 1.55;
}

ul li::marker,
ol li::marker{
  color: rgba(56,189,248,0.85);   /* finom cyan marker */
}

/* Ha a listáid custom bullet nélküliek, ez maradhat. 
   Ha korábban átírtuk a listákat pseudo-bulletre, akkor ez is segít: */
.card ul li, .cta-item ul li{
  color: #e5e7eb;
}
/* ---- Card text contrast ---- */
.card p,
.card li{
  color: #e5e7eb;
}

.card h3{
  color: #f1f5f9;
}
/* ---- App-style top-line accent for cards ---- */
.card{
  position: relative;
  overflow: hidden;
}

.card::before{
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  opacity: 0.85;
}

/* Szekció-specifikus variációk (ha tetszik) */
#security .card::before{ background: linear-gradient(90deg, #38bdf8, #0ea5e9); }
#deployment .card::before{ background: linear-gradient(90deg, #22c55e, #38bdf8); }
#pricing .card::before{ background: linear-gradient(90deg, #a855f7, #6366f1); }
#docs .card::before{ background: linear-gradient(90deg, #fbbf24, #f97316); }
/* ---- Solution card (Mit old meg → M → Megoldás) ---- */
.solution-card{
  background: radial-gradient(circle at top left, #0f172a, #020617);
  border: 1px solid rgba(148,163,184,0.35);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow:
    0 18px 40px rgba(15,23,42,0.85),
    0 0 0 1px rgba(15,23,42,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

/* kör alakú logó tok */
.solution-logo{
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 20%, rgba(224,242,254,0.85), transparent 45%),
    radial-gradient(circle at bottom right, rgba(56,189,248,0.45), transparent 55%),
    #020617;
  border: 1px solid rgba(148,163,184,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 26px rgba(56,189,248,0.55),
    0 0 46px rgba(168,85,247,0.35);
}

/* maga az M */
.solution-letter{
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, #38bdf8, #a855f7, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* alatta a gondolati levezetés */
.solution-flow{
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cbd5f5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.solution-flow strong{
  color: #e5e7eb;
  font-weight: 700;
}

.solution-flow .arrow{
  opacity: 0.6;
}
@media (prefers-reduced-motion: no-preference){
  .solution-logo{
    animation: solFloat 6s ease-in-out infinite;
  }
  @keyframes solFloat{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-4px); }
  }
}
.mock-badge{
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbd5f5;
  background: rgba(15,23,42,0.75);
  border: 1px solid rgba(148,163,184,0.45);
  z-index: 5;
  backdrop-filter: blur(6px);
}
.mock-window{ position: relative; }
.mock-navitem{
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.mock-navitem:focus{
  outline: none;
  box-shadow: 0 0 0 1px rgba(56,189,248,0.35);
}
.mock-topbar{
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}

/* a három pötty marad balra, a cím középre kerül */
.mock-title{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

/* hogy biztosan legyen helye a pöttyöknek és ne lógjon rá */
.mock-topbar{
  padding-left: 56px;
}
/* --- FAQ grid + small button --- */
.faq-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px){
  .faq-grid{ grid-template-columns: 1fr; }
}

.btn.btn-small{
  padding: 8px 12px;
  font-size: 0.82rem;
  border-radius: 10px;
}
/* --- Hero bullet promise --- */
.hero-points{
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
  display: grid;
  gap: 10px;
  max-width: 72ch;
}

.hero-points li{
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.35);
  background: rgba(2,6,23,0.22);
}

.hp-ico{
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  color: #0b1120;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 25px rgba(15,23,42,0.65);
  margin-top: 1px;
}

.hero-points strong{
  color: #ffffff;
}

/* --- Requirements “minimum / tipikus” --- */
.req-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 900px){
  .req-grid{ grid-template-columns: 1fr; }
}

.req-card ul{
  margin-top: 10px;
}
/* --- Pricing polish --- */
.plan-who{
  margin-top: 12px;
  color: #e5e7eb;
  line-height: 1.55;
}

.plan-note{
  margin-top: 6px;
}

.pricing-cta{
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(148,163,184,0.35);
  background: rgba(2,6,23,0.35);
  box-shadow: var(--shadow-sm);
}

.pricing-cta-title{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: #f1f5f9;
}

.pricing-cta-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 900px){
  .pricing-cta{
    flex-direction: column;
    align-items: stretch;
  }
  .pricing-cta-actions{
    justify-content: flex-start;
  }
}
/* --- Contact CTA clarity --- */
.contact-points{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cp-item{
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(148,163,184,0.30);
  background: rgba(2,6,23,0.25);
}

.cp-title{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #f1f5f9;
  margin-bottom: 6px;
}

@media (max-width: 900px){
  .contact-points{
    grid-template-columns: 1fr;
  }
}
#limits .card h3{
  color: #f1f5f9;
}

#limits p{
  max-width: 80ch;
}
/* =========================
   MOCK WINDOW – overflow fix
   ========================= */

/* nagyobb ablak, stabil arány */
.mock-window{
  max-width: 620px;
}

/* sidebar keskenyebb, hogy több hely jusson jobbra */
.mock-body{
  grid-template-columns: 132px 1fr;
}

/* gombok rövidebbek + tördelhetők */
.mock-navitem{
  font-size: 0.85rem;
  padding: 8px 10px;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
}

/* KPI-k: auto-fit, ne 3 fix oszlop */
.mock-kpis{
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

/* KPI értékek: engedjük törni + kisebb betű */
.kpi-value{
  font-size: 1.05rem;
  line-height: 1.1;
  word-break: break-word;
}

/* Tábla: rugalmas oszlopok + ellipsis */
.mock-row{
  grid-template-columns: 1.2fr 0.75fr 1fr 0.9fr;
  gap: 10px;
  align-items: center;
}

.mock-row > div{
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* mobilon: table -> 2 oszlopos, hogy ne nyomja szét */
@media (max-width: 520px){
  .mock-body{ grid-template-columns: 1fr; }
  .mock-sidebar{ border-right: 0; border-bottom: 1px solid var(--border); }

  .mock-row{
    grid-template-columns: 1fr 0.9fr;
  }
  .mock-row.head{
    display: none; /* mobilon a head ritkán segít */
  }
  .mock-row > div:nth-child(3),
  .mock-row > div:nth-child(4){
    display: none; /* Utolsó művelet + Felhasználó elrejtve mobilon */
  }
}
/* =========================
   CARDS – product look
   ========================= */

.grid-3{
  gap: 18px; /* kevesebb "széthullás" */
}

.card{
  border: 1px solid rgba(148,163,184,0.18);
  background: linear-gradient(180deg, rgba(15,23,42,0.92), rgba(2,6,23,0.92));
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* finom “glow” a tetején, kevésbé apróhirdetéses */
.card::before{
  height: 2px;
  opacity: 0.95;
}

/* cím + szöveg ritmus */
.card h3{
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}
.card p{
  color: rgba(226,232,240,0.92);
}

/* hover: ne ugráljon túl sokat */
.card:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.6);
}
/* =========================
   SECTION TONES
   ========================= */

.tone-good .card::before{
  background: linear-gradient(90deg, rgba(56,189,248,0.95), rgba(99,102,241,0.85));
}

.tone-warn .card::before{
  background: linear-gradient(90deg, rgba(251,191,36,0.95), rgba(249,115,22,0.85));
}

/* opcionális: háttér is finoman más legyen, hogy érezhetően vált */
.tone-good{
  background: radial-gradient(circle at 20% 0%, rgba(56,189,248,0.10), transparent 45%);
}
.tone-warn{
  background: radial-gradient(circle at 20% 0%, rgba(251,191,36,0.10), transparent 45%);
}
/* =========================
   SCREENSHOTS
   ========================= */
.section-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section-head p{ margin: 0; max-width: 70ch; }

.shots-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.shot{
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.18);
  background: rgba(2,6,23,0.55);
  box-shadow: 0 18px 44px rgba(0,0,0,0.55);
  transform: translateZ(0);
}

.shot img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  filter: saturate(1.02) contrast(1.03);
}

.shot::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(2,6,23,0.92) 100%);
  pointer-events:none;
}

.shot-cap{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
}

.shot-title{
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #f1f5f9;
  margin-bottom: 4px;
}

.shot-sub{
  color: rgba(203,213,225,0.88);
  font-size: 0.9rem;
}

.shot:hover{
  box-shadow: 0 22px 60px rgba(0,0,0,0.75);
  transform: translateY(-1px);
}

.shot-large{
  grid-row: span 2;
}
.shot-wide{
  grid-column: 1 / -1;
}

.shots-cta{
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 16px;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.18);
  background: linear-gradient(135deg, rgba(56,189,248,0.12), rgba(99,102,241,0.10), rgba(2,6,23,0.75));
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.shots-cta-title{
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 850;
  color: #e5e7eb;
  margin-bottom: 6px;
}

@media (max-width: 920px){
  .section-head{ flex-direction: column; align-items: flex-start; }
  .shots-grid{ grid-template-columns: 1fr; }
  .shot-large{ grid-row: auto; }
}
/* =========================
   HOW – timeline steps
   ========================= */

.timeline{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.step{
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.18);
  background: linear-gradient(180deg, rgba(15,23,42,0.85), rgba(2,6,23,0.85));
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  overflow: hidden;
}

.step::before{
  content:"";
  position:absolute;
  left:0; top:0;
  width:100%;
  height:2px;
  background: linear-gradient(90deg, rgba(56,189,248,0.95), rgba(99,102,241,0.85));
  opacity: 0.95;
}

.step-ic{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(148,163,184,0.22);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.12);
}

.step-title{
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 850;
  color: #f1f5f9;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.step-text{
  color: rgba(203,213,225,0.92);
  line-height: 1.6;
}

/* nyilas “flow” érzet: finom jobbra mutató jel a kártya jobb oldalán */
.step::after{
  content:"→";
  position:absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(148,163,184,0.35);
  font-weight: 900;
  font-size: 22px;
  pointer-events: none;
}

/* az utolsó lépésnél ne mutasson tovább */
.step:last-child::after{
  content:"";
}

/* mobil: kényelmesebb */
@media (max-width: 520px){
  .step{
    grid-template-columns: 44px 1fr;
    padding: 14px 14px;
  }
  .step-ic{ width: 38px; height: 38px; border-radius: 12px; font-size: 18px; }
}
/* =========================

 USE CASES
   ========================= */

.usecases-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.uc-card{
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.18);
  background: linear-gradient(180deg, rgba(15,23,42,0.85), rgba(2,6,23,0.85));
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  overflow: hidden;
}

.uc-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.70);
}

.uc-top{
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 16px 16px 10px 16px;
  border-bottom: 1px solid rgba(148,163,184,0.12);
}

.uc-ic{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(148,163,184,0.22);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.10);
  font-size: 20px;
}

.uc-top h3{
  margin: 0 0 6px 0;
  color: #f1f5f9;
}

.uc-top p{ margin: 0; }

.uc-body{
  padding: 12px 16px 16px 16px;
}

.uc-list{
  margin: 0;
  padding-left: 18px;
}

.uc-list li{
  margin: 8px 0;
  color: rgba(229,231,235,0.95);
}

.uc-foot{
  margin-top: 10px;
  color: rgba(148,163,184,0.95);
  font-size: 0.9rem;
  border-top: 1px dashed rgba(148,163,184,0.22);
  padding-top: 10px;
}

.usecases-note{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.18);
  background: linear-gradient(135deg, rgba(56,189,248,0.10), rgba(99,102,241,0.08), rgba(2,6,23,0.75));
  box-shadow: 0 18px 40px rgba(0,0,0,0.40);
}

.usecases-note-title{
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 850;
  color: #e5e7eb;
  margin-bottom: 6px;
}

@media (max-width: 920px){
  .usecases-grid{ grid-template-columns: 1fr; }
}
/* =========================================================
   SECURITY USE CASES – mindennapos problémák
   ========================================================= */

#use-cases{
  position: relative;
}

#use-cases .grid-2{
  gap: 18px;
}

#use-cases .card{
  background:
    linear-gradient(180deg,
      rgba(15,23,42,0.92),
      rgba(2,6,23,0.92)
    );
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: 18px;
  padding: 22px 22px 24px;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(15,23,42,0.85);
  transition: transform .15s ease, box-shadow .15s ease;
}

#use-cases .card:hover{
  transform: translateY(-2px);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.75),
    inset 0 0 0 1px rgba(56,189,248,0.25);
}

/* Cím: problémaközpontú, hangsúlyos */
#use-cases h3{
  margin-bottom: 10px;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: 0.01em;
}

/* Szöveg: jól olvasható, nem szürke massza */
#use-cases p{
  color: #cbd5e1;
  max-width: none;
}

/* A „megoldás” bekezdés vizuálisan elkülönítve */
#use-cases .card p + p{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(148,163,184,0.22);
  color: #e5e7eb;
}

/* Finom bal oldali akcentus – nem zöld/piros, hanem „security” */
#use-cases .card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(
    180deg,
    rgba(56,189,248,0.9),
    rgba(99,102,241,0.9)
  );
  opacity: 0.85;
  border-radius: 4px 0 0 4px;
}

/* Alsó összegzés szöveg */
#use-cases .muted{
  color: #94a3b8;
  font-size: 0.95rem;
}

/* Mobil */
@media (max-width: 900px){
  #use-cases .grid-2{
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   Pricing cards
   ========================================================= */

.price-card{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.price-tag{
  text-align: right;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.22);
  background: rgba(2,6,23,0.55);
}

.price-from{
  font-size: 0.75rem;
  color: rgba(148,163,184,0.9);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.price-amt{
  font-size: 1.25rem;
  font-weight: 900;
  color: #e5e7eb;
  letter-spacing: -0.02em;
}

.price-note{
  font-size: 0.8rem;
  color: rgba(148,163,184,0.9);
  margin-top: 2px;
}

.price-desc{
  color: #cbd5e1;
}

.price-list{
  margin: 0;
  padding-left: 18px;
}

.price-foot{
  margin-top: auto;
  display: grid;
  gap: 12px;
}

.price-includes{
  font-size: 0.9rem;
  color: rgba(148,163,184,0.95);
  padding-top: 12px;
  border-top: 1px dashed rgba(148,163,184,0.22);
}

/* Kiemelt csomag (Pro) */
.price-card.featured{
  border-color: rgba(56,189,248,0.35);
  box-shadow:
    0 26px 70px rgba(0,0,0,0.8),
    inset 0 0 0 1px rgba(56,189,248,0.18);
}

.price-card.featured .price-tag{
  border-color: rgba(56,189,248,0.35);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.18);
}
  DOCS (EULA / PRIVACY / AI POLICY) – SKIN
   Append to the END of main.css
   ========================================================= */

/* Only apply on docs pages if they have body/docs class OR contain long-form doc layout.
   Recommended: add <body class="docs"> to docs/*.html (optional).
   Works even without it, using main.section + container heuristics. */

body.docs,
body.docs main.section,
main.section .container h1 + .muted,
main.section .container h1 + p.muted {
  /* no-op selector group to keep specificity stable */
}

/* If you CAN: add <body class="docs"> to all docs pages.
   If you don't, styles still apply via main.section + container. */
body.docs {
  background: var(--bg);
}

/* Doc page layout */
body.docs main.section,
main.section.docs,
main.section[data-doc="true"],
main.section .container:has(h1):has(hr) {
  /* keep landing untouched; these only hit typical doc pages */
}

body.docs main.section,
main.section.docs {
  padding-top: 36px;
  padding-bottom: 56px;
}

/* Make doc container narrower and more readable */
body.docs .container,
main.section .container {
  max-width: 920px;
}

/* Document "paper" card (auto if body.docs exists) */
body.docs main.section .container {
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
  padding: 28px 24px;
}

/* If you do NOT want the paper card on landing sections, this ensures it only appears on docs pages */
body:not(.docs) main.section .container {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 24px; /* keep your original spacing */
  max-width: 1100px; /* keep your landing width */
}

/* Title + meta */
body.docs h1 {
  margin: 0 0 8px 0;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  letter-spacing: 0.02em;
}

body.docs .muted {
  margin-top: 0;
  margin-bottom: 18px;
  color: rgba(148, 163, 184, 0.92);
}

/* Divider */
body.docs hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, rgba(56,189,248,0.55), rgba(99,102,241,0.35), rgba(34,197,94,0.25));
  opacity: 0.7;
  margin: 18px 0 22px;
}

/* Headings */
body.docs h2 {
  margin: 22px 0 10px;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}

body.docs h3 {
  margin: 16px 0 8px;
  font-size: 1.02rem;
}

/* Paragraph readability */
body.docs p {
  max-width: 85ch;
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.95);
}

/* Strong + emphasis */
body.docs strong {
  color: #ffffff;
}

/* Lists */
body.docs ul,
body.docs ol {
  margin: 10px 0 14px;
  padding-left: 20px;
}

body.docs li {
  margin: 8px 0;
  color: rgba(226, 232, 240, 0.95);
}

body.docs ul li::marker,
body.docs ol li::marker {
  color: rgba(56, 189, 248, 0.9);
}

/* Links inside text */
body.docs a {
  color: rgba(125, 211, 252, 0.95);
  text-decoration: none;
}

body.docs a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* PDF button area */
body.docs .btn.secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.75);
  color: rgba(226, 232, 240, 0.98);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

body.docs .btn.secondary:hover {
  border-color: rgba(56,189,248,0.7);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.22), 0 16px 32px rgba(0,0,0,0.42);
  transform: translateY(-1px);
}

/* Make the PDF button not look huge on mobile */
@media (max-width: 540px) {
  body.docs main.section .container {
    padding: 22px 16px;
  }
  body.docs .btn.secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Optional: small "callout" style you can use later in docs */
body.docs .doc-callout {
  margin: 14px 0;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(56,189,248,0.22);
  background: rgba(56,189,248,0.06);
  color: rgba(226, 232, 240, 0.98);
}

/* Print-friendly (if they print from browser instead of PDF) */
@media print {
  body.docs {
    background: #ffffff !important;
    color: #000 !important;
  }
  body.docs main.section .container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  body.docs a {
    color: #000 !important;
    text-decoration: underline !important;
  }
  body.docs .btn {
    display: none !important;
  }
  body.docs hr {
    background: #ddd !important;
  }
}
/* =========================================================
   SITE FOOTER
   ========================================================= */
.site-footer{
  margin-top: 40px;
  background: rgba(2,6,23,0.88);
  border-top: 1px solid rgba(148,163,184,0.22);
  box-shadow: 0 -18px 45px rgba(0,0,0,0.35);
}

.footer-grid{
  padding: 26px 24px 18px;
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 22px;
  align-items: start;
}

.footer-brand{
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-logo{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #0b1120;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

.footer-title{
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.footer-sub{
  margin-top: 4px;
  color: rgba(148,163,184,0.95);
  font-size: 0.85rem;
}

.footer-links{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.footer-col-title{
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226,232,240,0.95);
  margin-bottom: 10px;
}

.site-footer a{
  display: inline-block;
  color: rgba(203,213,225,0.95);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 0;
}

.site-footer a:hover{
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact .footer-mini{
  margin-top: 10px;
  color: rgba(148,163,184,0.95);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-bottom{
  padding: 14px 24px 18px;
  border-top: 1px solid rgba(148,163,184,0.14);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(148,163,184,0.95);
  font-size: 0.85rem;
}

.footer-bottom-links{
  display: flex;
  gap: 12px;
  align-items: center;
}

.to-top{
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.25);
  background: rgba(15,23,42,0.55);
}

.to-top:hover{
  border-color: rgba(56,189,248,0.55);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: 1fr;
  }
  .footer-links{
    grid-template-columns: 1fr;
  }
  .footer-bottom{
    flex-direction: column;
  }
}
/* =========================
   Footer layout (M-Explorer)
   ========================= */

.site-footer{
  margin-top: 64px;
  border-top: 1px solid var(--border);
  background: radial-gradient(circle at top left, rgba(56,189,248,0.10), transparent 45%),
              radial-gradient(circle at top right, rgba(99,102,241,0.10), transparent 45%),
              var(--surface-2);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 26px;
  padding: 28px 0 18px 0;
  align-items: start;
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: #0b1120;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

.footer-title{
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.footer-sub{
  margin-top: 2px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
}

.footer-links{
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 16px;
}

.footer-col{
  padding: 12px 12px 10px 12px;
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: 14px;
  background: rgba(2,6,23,0.35);
}

.footer-col-title{
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #cbd5f5;
  margin-bottom: 10px;
}

.footer-col a{
  display: block;
  padding: 7px 8px;
  border-radius: 10px;
  color: #e5e7eb;
  font-size: 0.86rem;
  text-decoration: none;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.03);
  margin-bottom: 8px;
}

.footer-col a:last-child{ margin-bottom: 0; }

.footer-col a:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(56,189,248,0.25);
  text-decoration: none;
}

.footer-contact .footer-col-title{
  margin-bottom: 10px;
}

.footer-contact a{
  display: inline-block;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.22);
  background: rgba(15,23,42,0.65);
  color: #e5e7eb;
  text-decoration: none;
}

.footer-contact a:hover{
  border-color: rgba(56,189,248,0.35);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.18);
}

.footer-mini{
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 0 20px 0;
  border-top: 1px solid rgba(148,163,184,0.18);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-bottom-links a{
  color: #e5e7eb;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.18);
  background: rgba(2,6,23,0.35);
}

.footer-bottom-links a:hover{
  border-color: rgba(56,189,248,0.35);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1020px){
  .footer-grid{
    grid-template-columns: 1fr;
  }
  .footer-links{
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 620px){
  .footer-links{
    grid-template-columns: 1fr;
  }
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ===== Footer logo FIX ===== */

.footer-logo{
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;

  display: grid;
  place-items: center;

  border-radius: 14px;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);

  flex-shrink: 0;      /* <<< EZ A KRITIKUS */
}

.mx-logo-svg{
  width: 34px;
  height: 34px;
  display: block;
}
/* ====== MX Topbar / Header upgrade ====== */
:root{
  --mx-bg: rgba(2, 6, 23, .62);
  --mx-stroke: rgba(148, 163, 184, .22);
  --mx-stroke-2: rgba(148, 163, 184, .14);
  --mx-text: #e5e7eb;
  --mx-muted: rgba(203, 213, 225, .72);
  --mx-glow: rgba(56, 189, 248, .18);
  --mx-glow2: rgba(168, 85, 247, .14);
  --mx-accent: #38bdf8;
}

.mx-topbar{
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 14px 0 10px;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(2,6,23,.78), rgba(2,6,23,.35));
  border-bottom: 1px solid var(--mx-stroke-2);
}

.mx-topbar-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.mx-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: var(--mx-text);
  min-width: 220px;
}
.mx-mark{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .04em;
  background: radial-gradient(120% 120% at 20% 20%, rgba(56,189,248,.25), rgba(2,6,23,.0)),
              rgba(2,6,23,.9);
  border: 1px solid var(--mx-stroke);
  box-shadow: 0 18px 50px rgba(0,0,0,.35), 0 0 0 1px rgba(56,189,248,.10) inset;
}
.mx-brand-title{
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #38bdf8, #a855f7, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mx-brand-sub{
  display:block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--mx-muted);
}

.mx-nav{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.mx-navlink{
  color: var(--mx-muted);
  text-decoration:none;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.mx-navlink:hover{
  color: var(--mx-text);
  background: rgba(15, 23, 42, .55);
  border-color: var(--mx-stroke-2);
  transform: translateY(-1px);
}
.mx-navlink.is-active{
  color: var(--mx-text);
  background: linear-gradient(135deg, rgba(56,189,248,.18), rgba(168,85,247,.14));
  border-color: rgba(56,189,248,.22);
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
}

.mx-nav-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-left: 8px;
  padding-left: 10px;
  border-left: 1px solid var(--mx-stroke-2);
}

.mx-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid var(--mx-stroke);
  color: var(--mx-text);
  background: rgba(2, 6, 23, .55);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.mx-btn:hover{ transform: translateY(-1px); filter: brightness(1.08); }
.mx-btn.primary{
  border-color: rgba(56,189,248,.28);
  background: linear-gradient(135deg, rgba(56,189,248,.35), rgba(99,102,241,.25));
}
.mx-btn.ghost{
  background: rgba(2,6,23,.35);
  border-color: var(--mx-stroke-2);
}

.mx-lang{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  text-decoration:none;
  color: var(--mx-text);
  font-weight: 900;
  border: 1px solid var(--mx-stroke-2);
  background: rgba(2,6,23,.35);
}

/* pillbar */
.mx-pillbar{
  max-width: 1100px;
  margin: 10px auto 0;
  padding: 0 18px 6px;
  display:flex;
  gap: 10px;
  overflow:auto;
  scrollbar-width: none;
}
.mx-pillbar::-webkit-scrollbar{ display:none; }

.mx-pill{
  flex: 0 0 auto;
  text-decoration:none;
  color: var(--mx-muted);
  font-weight: 800;
  font-size: 12px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--mx-stroke-2);
  background: rgba(15,23,42,.35);
  transition: transform .15s ease, color .15s ease, border-color .15s ease, background .15s ease;
}
.mx-pill:hover{
  color: var(--mx-text);
  border-color: rgba(56,189,248,.22);
  background: rgba(15,23,42,.55);
  transform: translateY(-1px);
}
.mx-pill.is-active{
  color: var(--mx-text);
  border-color: rgba(56,189,248,.26);
  background: linear-gradient(135deg, rgba(56,189,248,.16), rgba(168,85,247,.12));
}

/* Burger (mobile) */
.mx-burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--mx-stroke-2);
  background: rgba(2,6,23,.45);
  padding: 10px;
}
.mx-burger span{
  display:block;
  height: 2px;
  background: rgba(229,231,235,.9);
  border-radius: 999px;
}
.mx-burger span + span{ margin-top: 7px; }

/* Mobile layout */
@media (max-width: 920px){
  .mx-burger{ display:inline-flex; flex-direction:column; justify-content:center; }
  .mx-nav{
    position: fixed;
    inset: 72px 12px auto 12px;
    display:none;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--mx-stroke);
    background: rgba(2,6,23,.86);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
  }
  .mx-nav.is-open{ display:flex; flex-direction:column; align-items:stretch; }
  .mx-navlink{ padding: 12px 12px; }
  .mx-nav-actions{
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    width: 100%;
    justify-content: flex-start;
  }
}
/* ===== HERO: komolyabb arányok ===== */
.app-header {
  padding: 46px 0 28px;             /* kevesebb magasság */
}

.hero-grid {
  align-items: start;               /* ne középre húzza */
  gap: 34px;
}

/* A hero szöveg ne legyen túl széles: enterprise hatás */
.hero-copy {
  max-width: 72ch;
}

.app-title {
  letter-spacing: 0.04em;
  line-height: 0.98;
  margin: 0 0 10px;
}

/* Ide jön az új szlogen (subtitle) */
.app-subtitle {
  max-width: 70ch;
  line-height: 1.55;
  opacity: 0.92;
  margin: 0 0 18px;
}

/* CTA-k ne essenek szét, legyen feszesebb */
.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

/* Ha vannak “chip” linkek, legyen kevésbé játékos */
.link-chip {
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}

/* ===== A hero-points most már külön szekció: nyugodtabb stílus ===== */
.hero-benefits {
  padding: 18px 0 34px;
}

.hero-benefits .hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* “enterprise kártya” érzet, nem hero-elem */
.hero-benefits .hero-points li {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(2, 6, 23, .35);
  border-radius: 16px;
  padding: 14px 14px;
  min-height: 78px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hero-benefits .hp-ico {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(56, 189, 248, .18);
  border: 1px solid rgba(56, 189, 248, .28);
  flex: 0 0 auto;
  margin-top: 2px;
}

.hero-benefits .hero-points strong {
  font-weight: 800;
}

/* ===== Mobil / tablet töréspontok ===== */
@media (max-width: 980px) {
  .app-header { padding: 34px 0 18px; }
  .hero-benefits .hero-points { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .app-title { font-size: clamp(34px, 8vw, 48px); }
  .app-subtitle { font-size: 15px; }
  .app-actions { gap: 8px; }
}
/* ===== NAV: feszes, prémium ===== */
.topnav {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(2, 6, 23, .55);
  backdrop-filter: blur(10px);
}

/* linkek */
.topnav a {
  opacity: .86;
  transition: opacity .15s ease, transform .15s ease;
}
.topnav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* aktív */
.topnav a.active {
  opacity: 1;
  border: 1px solid rgba(56,189,248,.35);
  background: rgba(56,189,248,.10);
}
.mx-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0b1220;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mx-topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mx-brand { color: #fff; text-decoration: none; font-weight: 700; }

.mx-burger {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: transparent;
  margin-left: auto;
}
.mx-burger span {
  display: block;
  height: 2px;
  margin: 6px 10px;
  background: #fff;
  opacity: .85;
}

.mx-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  min-width: 0;
}

.mx-navlink {
  color: rgba(255,255,255,.86);
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}
.mx-navlink:hover { background: rgba(255,255,255,.06); }

.mx-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,.10);
}

.mx-dropdown { position: relative; }
.mx-ddbtn { display: inline-flex; align-items: center; gap: 6px; }
.mx-caret { font-size: 12px; opacity: .8; }

.mx-ddpanel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #0f1a2f;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.mx-ddpanel a {
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  color: rgba(255,255,255,.90);
  text-decoration: none;
}
.mx-ddpanel a:hover { background: rgba(255,255,255,.06); }

/* Desktop: hover/focus open */
@media (min-width: 901px) {
  .mx-dropdown:hover .mx-ddpanel,
  .mx-dropdown:focus-within .mx-ddpanel {
    display: block;
  }
}

/* Mobile: hamburger layout */
@media (max-width: 900px) {
  .mx-burger { display: inline-block; }

  .mx-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 62px;
    background: #0f1a2f;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .mx-nav.is-open { display: flex; }

  .mx-nav-actions {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.10);
    padding-top: 10px;
    justify-content: space-between;
  }

  /* Mobile dropdown -> accordion */
  .mx-ddpanel {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    box-shadow: none;
    border-radius: 12px;
    margin-top: 6px;
  }
  .mx-dropdown.is-open .mx-ddpanel { display: block; }
}
.mx-dropdown { position: relative; }

.mx-dropdown::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:10px;          /* híd vastagsága */
}
.mx-ddpanel{ top: calc(100% + 8px); } /* maradhat */
.mx-topbar-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between; /* ez fontos */
  gap: 12px;
}

.mx-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 8px;
  margin-left: 16px;
  flex-wrap: nowrap;  /* ne tördelje szét desktopon */
}

.mx-brand{ flex: 0 0 auto; }
.mx-nav{ flex: 1 1 auto; min-width: 0; }
.mx-nav-actions{ flex: 0 0 auto; }
@media (max-width: 1050px){
  .mx-burger{ display:inline-block; }
  .mx-nav{ display:none; }
  .mx-nav.is-open{ display:flex; }
}
/* ===== Cooperation / Timeline cards ===== */

.timeline-cards{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.timeline-cards .timeline-step{
  grid-column: span 6;              /* 2 oszlop desktopon */
  display:flex;
  gap: 14px;
  align-items:flex-start;

  padding: 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.timeline-cards .timeline-step:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
}

.timeline-cards .step-num{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;

  border: 1px solid rgba(255,255,255,.16);
  background: rgba(2,6,23,.65);
}

.timeline-cards .step-body h3{
  margin: 2px 0 8px;
  font-size: 1.06rem;
}

.timeline-cards .step-body p{
  margin: 0 0 10px;
}

.timeline-cards .step-body ul{
  margin: 0 0 10px;
  padding-left: 18px;
}

.timeline-cards .step-body .muted{
  margin-top: 8px;
  opacity: .82;
}

/* Tablet: 1 oszlop */
@media (max-width: 980px){
  .timeline-cards .timeline-step{ grid-column: span 12; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .timeline-cards .timeline-step{
    transition: none;
  }
  .timeline-cards .timeline-step:hover{
    transform: none;
  }
}
.intl-notice {
  margin: 16px auto 0;
  padding: 14px 22px;
  max-width: 1100px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.18),
    rgba(37, 99, 235, 0.28)
  );

  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 14px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.35);

  font-size: 0.95rem;
  line-height: 1.5;
}

.intl-notice strong {
  color: #e5f0ff;
  font-weight: 700;
  white-space: nowrap;
}

.intl-notice a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.intl-notice a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.intl-notice a:hover::after {
  opacity: 1;
}
@media (max-width: 640px) {
  .intl-notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.9rem;
  }

  .intl-notice strong {
    white-space: normal;
  }
}
.intl-notice:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 32px rgba(59, 130, 246, 0.25);
}