:root {
  --bg: #0E0D13;          /* page background (sötét) */
  --bg2: #15141C;         /* alternating soft sections */
  --dark: #1A1922;        /* cards (elevált sötét felület) */
  --dark2: #15141C;       /* panels / alt sections (alias of bg2) */
  --border: #2A2833;      /* finom sötét keretek */
  --gold: #F0913C;        /* PRIMARY accent — brand orange */
  --gold-d: #DE7C24;      /* darker orange (button hover) */
  --gold2: #84B83F;       /* SECONDARY accent — brand green */
  --white: #F5F4F8;       /* headings / strong text (világos) */
  --muted: #9A95A6;       /* muted text */
  --text: #BDB9C7;        /* body text (világosszürke) */
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 4px 20px rgba(0,0,0,0.35);
  --shadow-lg: 0 16px 44px rgba(0,0,0,0.55);
  --maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── BRAND LOGO ─── */
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; }
.brand-logo { position: relative; display: inline-block; line-height: 0; }
.brand-img { height: 65px; width: auto; display: block; }
.brand--sm .brand-img { height: 65px; width: auto; }
.brand-logo .swap { position: absolute; top: 0; left: 0; opacity: 0; transition: opacity .25s ease; }
.brand:hover .brand-logo .swap { opacity: 1; }
@media (max-width: 500px) { .brand-img { height: 70px; } }

/* ─── HOME HERO ─── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem max(1.5rem, calc((100% - var(--maxw)) / 2)) 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg, .page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 82% 8%, rgba(240,145,60,0.14), transparent 60%),
    radial-gradient(ellipse 50% 55% at 2% 100%, rgba(132,184,63,0.13), transparent 58%),
    radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1.6px);
  background-size: auto, auto, 26px 26px;
}
.hero-tag, .section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-tag::before, .section-tag::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 16ch;
}
.hero h1 em { font-style: normal; color: var(--gold); display: block; }
.hero-mid { margin-top: .7rem; font-size: clamp(1.05rem, 1.8vw, 1.45rem); font-weight: 600; letter-spacing: -0.01em; color: var(--gold2); }
.hero-sub { margin-top: 1.4rem; font-size: 1.12rem; color: var(--text); max-width: 52ch; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; width: 100%; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .hero-right { order: -1; }
}
.hero-actions { margin-top: 2.5rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-scroll { display: none; }

/* ─── PAGE HERO (subpages) ─── */
.page-hero { padding: 11rem max(1.5rem, calc((100% - var(--maxw)) / 2)) 4.5rem; position: relative; overflow: hidden; }
.page-hero-inner { position: relative; max-width: 64rem; }
.page-hero h1 em { display: block; }
.page-hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; max-width: var(--maxw); }
.page-hero-grid .page-hero-inner { max-width: none; }
.hero-media img { width: 100%; max-width: 480px; height: auto; display: block; margin: 0 auto; }
@media (max-width: 900px) { .page-hero-grid { grid-template-columns: 1fr; gap: 2rem; } .hero-media { order: -1; max-width: 360px; margin: 0 auto; } }
.page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 20ch;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.lead { margin-top: 1.5rem; font-size: 1.12rem; color: var(--text); max-width: 58ch; }
.lead + .lead { margin-top: .8rem; }

/* ─── BUTTONS ─── */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: .85rem 1.7rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: background .2s, transform .15s, box-shadow .2s, border-color .2s, color .2s;
}
.btn-primary { color: #fff; background: var(--gold); box-shadow: 0 6px 18px rgba(240,145,60,0.30); }
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(132,184,63,0.38); }
.btn-primary:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.video-wrap { max-width: 900px; margin: 2.5rem auto 0; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: #000; }
.video-wrap iframe { width: 100%; height: 100%; display: block; border: 0; }
.btn-green { color: #fff; background: var(--gold2); box-shadow: 0 6px 18px rgba(132,184,63,0.30); }
.btn-green:hover { background: #74a534; box-shadow: 0 10px 24px rgba(132,184,63,0.42); }

/* ─── Nemzetközi marketplace „felugró" grafika ─── */
.mp-burst { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 520px; margin: 0 auto; }
.mp-tile { aspect-ratio: 1; background: #fff; border-radius: 18px; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(0,0,0,0.42); animation: mpPop 4s ease-in-out infinite; }
.mp-tile img { max-width: 74%; max-height: 74%; object-fit: contain; }
@keyframes mpPop {
  0%, 55%, 100% { transform: scale(1); }
  64% { transform: scale(1.22); }
  74% { transform: scale(0.95); }
  84% { transform: scale(1.08); }
  92% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) { .mp-tile { animation: none; } }

/* ─── Futárlogók — egy helyben, felvillanva (mint a marketplace-logók) ─── */
.courier-grid { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.courier-logo { flex: 0 0 auto; width: 108px; height: 56px; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,0.35); animation: mpPop 4s ease-in-out infinite; }
.courier-logo img { max-width: 76%; max-height: 62%; object-fit: contain; }
@media (prefers-reduced-motion: reduce) { .courier-logo { animation: none; } }

/* ─── Nemzetközi piacterek — soros (táblázatos) lista ─── */
.mp-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.mp-row { display: flex; align-items: center; gap: 1.4rem; padding: 1.3rem 1.5rem; background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; transition: border-color .2s, transform .2s, box-shadow .2s; }
.mp-row:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.mp-row-ic { flex: 0 0 auto; width: 78px; height: 78px; background: #fff; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.mp-row-ic img { max-width: 70%; max-height: 70%; object-fit: contain; }
.mp-row-txt { flex: 1; }
.mp-row-txt h3 { color: var(--white); font-size: 1.2rem; margin-bottom: .35rem; letter-spacing: -0.01em; }
.mp-row-txt p { color: var(--muted); font-size: .95rem; line-height: 1.55; }
.mp-row-arrow { flex: 0 0 auto; color: var(--gold); font-size: 1.3rem; }
@media (max-width: 560px) { .mp-row { gap: 1rem; padding: 1.1rem; } .mp-row-ic { width: 60px; height: 60px; border-radius: 13px; } .mp-row-arrow { display: none; } }

/* ─── Heró márka-logó (marketplace/integráció oldalak) ─── */
.hero-brand { display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 28px; padding: 3rem 2.5rem; max-width: 380px; margin: 0 auto; box-shadow: var(--shadow-lg); }
.hero-brand img { max-width: 100%; max-height: 150px; object-fit: contain; }
.btn-ghost { color: var(--white); background: var(--dark); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--gold2); color: var(--gold2); transform: translateY(-2px); }
.cta-row { margin-top: 2rem; display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }

/* ─── SECTION LAYOUT ─── */
/* teljes szélességű szekció, a tartalom középre zárva max 1200px-re */
section { padding: 6.5rem max(1.5rem, calc((100% - var(--maxw)) / 2)); position: relative; }
section.alt, .profit-section { background: var(--bg2); }

h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.08;
  max-width: 24ch;
}

/* ── Visszafogott összekötő a szekciók között ── */
.section-divider {
  display: block;
  border: none;
  height: 30px;
  margin: 0;
  position: relative;
  background: transparent;
  overflow: visible;
}
.section-divider::before {
  content: '';
  position: absolute; left: 50%; top: 7px; bottom: 7px; width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  opacity: .22;
}
.section-divider::after {
  content: '';
  position: absolute; left: 50%; top: 50%; width: 6px; height: 6px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: var(--gold2); opacity: .5;
}

.block-head { max-width: 60rem; margin-bottom: 3.5rem; }
.block-head p { margin-top: 1.2rem; font-size: 1.1rem; color: var(--text); max-width: 60ch; }

/* ─── PROSE / LISTS ─── */
.prose { max-width: 62rem; }
.prose p { color: var(--text); margin-bottom: 1.1rem; font-size: 1.08rem; }
.prose p strong { color: var(--white); font-weight: 700; }

.checklist, .arrowlist, .xlist { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin: 1.6rem 0; }
.checklist li, .arrowlist li, .xlist li { padding-left: 1.8rem; position: relative; color: var(--text); font-size: 1rem; }
.checklist li::before {
  content: '✓'; position: absolute; left: 0; top: .05em;
  color: var(--gold2); font-weight: 800;
}
.arrowlist li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.xlist li::before { content: '✕'; position: absolute; left: 0; color: #E0564F; font-weight: 700; }

/* ─── SPLIT + PANELS ─── */
/* ─── AL-OLDAL ELEMEK: pullquote, article, faq, card-link ─── */
.pullquote { max-width: 60ch; margin: 2rem 0; padding: 1.4rem 1.8rem; border-left: 3px solid var(--gold); background: var(--dark); border-radius: var(--radius-sm); font-size: 1.15rem; font-style: italic; color: var(--white); }
.pullquote span { display: block; margin-top: .7rem; font-size: .9rem; font-style: normal; color: var(--muted); }
.article { max-width: 70ch; margin: 0 auto; color: var(--text); }
.article h2 { font-size: 1.45rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin: 2.2rem 0 .8rem; }
.article p { margin-bottom: 1.1rem; font-size: 1.05rem; line-height: 1.75; }
.card-link { display: inline-block; margin-top: 1rem; color: var(--gold); font-weight: 600; font-size: .95rem; }
.faq { max-width: 64rem; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--dark); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 1.1rem 1.4rem; font-weight: 600; color: var(--white); list-style: none; position: relative; padding-right: 3rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.4rem; font-weight: 700; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-a { padding: 0 1.4rem 1.2rem; color: var(--text); }

/* ─── KINEK / célcsoport fotós kártyák ─── */
.kinek-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.kinek-card { display: flex; flex-direction: column; gap: 1.2rem; }
.kinek-photo { position: relative; display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 3 / 4; transition: border-color .2s, transform .2s, box-shadow .2s; }
.kinek-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kinek-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,14,0.88) 0%, rgba(10,10,14,0.3) 42%, transparent 72%); }
.kinek-label { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.1rem; z-index: 2; color: #fff; font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; line-height: 1.15; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.kinek-card:hover .kinek-photo { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.kinek-body { display: flex; flex-direction: column; flex: 1; gap: 1.3rem; padding: 1.6rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--dark); transition: border-color .2s; }
.kinek-card:hover .kinek-body { border-color: var(--gold); }
.kinek-body p { color: var(--text); font-size: 0.95rem; line-height: 1.65; flex: 1; }
.kinek-body .btn-primary { display: flex; width: 100%; text-align: center; justify-content: center; text-transform: uppercase; font-size: .78rem; letter-spacing: .02em; }
@media (max-width: 980px) { .kinek-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .kinek-grid { grid-template-columns: 1fr; } }

/* ─── HERO HÁTTÉRVIDEÓ ─── */
.page-hero.has-video { background: var(--dark); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(10,10,14,0.93) 0%, rgba(10,10,14,0.78) 42%, rgba(10,10,14,0.55) 100%); }
.page-hero.has-video .page-hero-inner { position: relative; z-index: 2; }

/* ─── INTEGRÁCIÓS HUB (központi dashboard + csatornák) ─── */
.hub { position: relative; width: 100%; max-width: 560px; margin: 0 auto; aspect-ratio: 1000 / 820; }
.hub-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hub-lines line { fill: none; stroke-width: 2; vector-effect: non-scaling-stroke; }
.hub-line-orange { stroke: var(--gold);  stroke-dasharray: 5 11; opacity: .6;  animation: hubFlow 1.1s linear infinite; }
.hub-line-green  { stroke: var(--gold2); stroke-dasharray: 5 11; stroke-dashoffset: 8; opacity: .55; animation: hubFlowRev 1.1s linear infinite; }
@keyframes hubFlow    { to { stroke-dashoffset: -16; } }
@keyframes hubFlowRev { to { stroke-dashoffset:  16; } }
@media (prefers-reduced-motion: reduce) { .hub-line-orange, .hub-line-green { animation: none; } }
.hub-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 52%; z-index: 3; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: var(--dark); box-shadow: var(--shadow-lg); cursor: zoom-in; transition: transform .35s ease, box-shadow .35s ease; }
.hub-center:hover { transform: translate(-50%,-50%) scale(1.18); z-index: 6; box-shadow: 0 22px 55px rgba(0,0,0,0.6); }

/* ─── "Bármely webáruház" összekötő jelvény ─── */
.connect-badge { display: inline-flex; align-items: center; justify-content: center; width: 100px; height: 100px; border-radius: 50%; background: rgba(240,145,60,0.12); border: 1px solid var(--border); color: var(--gold); }
.connect-badge svg { width: 50px; height: 50px; }

/* ─── PROBLÉMA-BLOKK (háttérképes, jobbra igazított szöveg) ─── */
.problem-block { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--dark) url('/assets/fulfillment/5pl.hufullfilment-logisztika-problemablokk.png') center/cover no-repeat; min-height: 580px; display: flex; align-items: center; }
.problem-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,14,0) 0%, rgba(10,10,14,0.15) 30%, rgba(10,10,14,0.82) 58%, rgba(10,10,14,0.93) 100%); }
.problem-content { position: relative; z-index: 2; max-width: 560px; margin-left: auto; margin-right: clamp(0px, 2vw, 1.6rem); padding: 3rem 3.2rem; }
.problem-kicker { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; font-size: .95rem; margin: 0; }
.problem-content h2 { color: var(--white); margin: .5rem 0 1.4rem; font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.02em; }
.problem-box { border: 1px solid var(--border); border-radius: var(--radius-sm); background: rgba(0,0,0,0.4); padding: 1.1rem 1.4rem; margin: 0 0 1.6rem; }
.problem-box li { color: var(--white); font-weight: 600; }
.problem-box.xlist li::before { content: '\2297'; color: var(--gold); font-weight: 700; }
.problem-content p { color: var(--text); margin-bottom: 1.1rem; }
.problem-content .problem-emph { color: var(--white); font-weight: 600; }
.problem-cta { text-transform: uppercase; font-size: .82rem; letter-spacing: .02em; }
@media (max-width: 1100px) and (min-width: 761px) {
  .problem-overlay { background: linear-gradient(90deg, rgba(10,10,14,0.25) 0%, rgba(10,10,14,0.72) 42%, rgba(10,10,14,0.93) 100%); }
  .problem-content { max-width: 470px; padding: 2.4rem 2.6rem; }
}
@media (max-width: 760px) {
  .problem-block { min-height: 0; }
  .problem-overlay { background: linear-gradient(180deg, rgba(10,10,14,0.5) 0%, rgba(10,10,14,0.88) 48%); }
  .problem-content { max-width: none; margin-left: 0; margin-right: 0; padding: 12rem 1.4rem 2rem; }
}
.hub-center .ai-screen-bar { display: flex; gap: 4px; padding: 6px 8px; background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--border); }
.hub-center .ai-screen-bar i { width: 7px; height: 7px; border-radius: 50%; background: #555; }
.hub-center img { display: block; width: 100%; height: auto; }
.hub-node { position: absolute; transform: translate(-50%,-50%); z-index: 2; }
.hub-ico { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 17px; box-shadow: 0 8px 20px rgba(0,0,0,0.35); border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.hub-node:hover .hub-ico { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,0.45); }
.hub-ico img { max-width: 70%; max-height: 70%; object-fit: contain; }

/* mobil fallback */
.hub-fallback { display: none; }
@media (max-width: 900px) {
  .page-hero-grid .hero-media { order: 2; max-width: 460px; }
  .hub { display: none; }
  .hub-fallback { display: block; }
  .hub-fb-screen { margin: 0 auto 1.6rem; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-lg); }
  .hub-fb-screen img { display: block; width: 100%; height: auto; }
  .hub-fb-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; justify-items: center; }
  .hub-fb-logos .hub-ico { width: 100%; height: 68px; }
}

.split2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.split2.center { align-items: center; }
.panel {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.4rem;
  position: relative;
}
.panel--white { background: var(--dark); }
.panel h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 1rem; }
.panel p { color: var(--text); font-size: 1rem; margin-bottom: 1rem; }

/* ─── INTRO ─── */
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.intro-right { padding-top: .5rem; }
.intro-right p { font-size: 1.1rem; color: var(--text); margin-bottom: 1.3rem; }
.integrations { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.tag {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: .4rem 1rem;
  transition: border-color .2s, color .2s, box-shadow .2s;
}
.tag:hover { border-color: var(--gold); color: var(--gold); box-shadow: var(--shadow); }

/* ─── CARD GRIDS ─── */
.features-header { max-width: 56rem; margin-bottom: 3rem; }
.features-header p { margin-top: 1.2rem; font-size: 1.1rem; color: var(--text); max-width: 56ch; }

.features-grid, .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards.cols-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card, .card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature-card:hover, .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #DDD8E8; }
.feature-icon, .card-icon {
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(240,145,60,0.10);
}
.feature-card h3, .card h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: .6rem; }
.feature-card p, .card p { font-size: 0.96rem; color: var(--text); line-height: 1.65; }

.feature-list { margin-top: 1rem; list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.feature-list li { font-size: 0.9rem; color: var(--muted); padding-left: 1.2rem; position: relative; }
.feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ─── PROFIT ─── */
.profit-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: center; }
.profit-visual {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.2rem 2.4rem;
  position: relative;
}
.profit-visual::before {
  content: 'VALÓS PROFIT';
  position: absolute;
  top: -12px; left: 2rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--gold);
  color: #fff;
  padding: .3rem .7rem;
  border-radius: var(--radius-pill);
}
.cost-item { display: flex; justify-content: space-between; align-items: center; padding: .85rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; font-weight: 500; }
.cost-item:last-child { border-bottom: none; }
.cost-label { color: var(--muted); letter-spacing: 0.01em; }
.cost-value { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }
.cost-value.neg { color: #E0564F; }
.cost-value.pos { color: #5BA12B; }
.profit-right h2 { margin-bottom: 1.3rem; }
.profit-right p { color: var(--text); margin-bottom: 1rem; font-size: 1.05rem; }

/* ─── MODES ─── */
.modes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.mode-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.6rem;
  position: relative;
}
.mode-card.featured { border-color: var(--gold); box-shadow: 0 16px 44px rgba(240,145,60,0.18); }
.mode-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(240,145,60,0.12);
  color: var(--gold-d);
  padding: .35rem .8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.3rem;
}
.mode-card.featured .mode-badge { background: var(--gold); color: #fff; }
.mode-card h3 { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 1rem; }
.mode-card p { color: var(--text); font-size: 1rem; line-height: 1.65; }
.mode-features { margin-top: 1.6rem; list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.mode-features li { font-size: 0.96rem; color: var(--text); padding-left: 1.6rem; position: relative; }
.mode-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold2); font-weight: 800; }

/* ─── FULFILLMENT ─── */
.fulfill-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.fulfill-left h2 { margin-bottom: 1.3rem; }
.fulfill-left p { color: var(--text); margin-bottom: 1rem; font-size: 1.05rem; }
.fulfill-steps { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.fulfill-step {
  display: flex; align-items: center; gap: 1.3rem;
  padding: 1.2rem 1.4rem;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.fulfill-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.step-num { font-size: 1.6rem; font-weight: 800; color: var(--gold); min-width: 2.2rem; letter-spacing: -0.02em; }
.step-text h4 { font-size: 1.02rem; font-weight: 700; color: var(--white); margin-bottom: .15rem; letter-spacing: -0.01em; }
.step-text p { font-size: 0.92rem; color: var(--muted); }
.step-ico { margin-left: auto; flex: 0 0 auto; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: rgba(240,145,60,0.10); border: 1px solid var(--border); border-radius: 13px; }
@media (max-width: 560px) { .step-ico { width: 42px; height: 42px; font-size: 1.25rem; } }

/* ─── "Mit csinálunk" mozgó kártyasor ─── */
.flow-marquee { overflow: hidden; margin-top: 2.5rem; padding: 6px 0 10px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.flow-track { display: flex; gap: 1.4rem; width: max-content; animation: flowScroll 55s linear infinite; }
.flow-marquee:hover .flow-track { animation-play-state: paused; }
@keyframes flowScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.flow-card { width: 270px; flex: 0 0 auto; background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.flow-img { position: relative; height: 165px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.flow-img.ph { background: linear-gradient(135deg, rgba(240,145,60,0.20), rgba(132,184,63,0.16)); }
.flow-emoji { font-size: 3rem; }
.flow-num { position: absolute; bottom: -19px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: #fff; font-weight: 800; font-size: 1.05rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(0,0,0,.45); border: 3px solid var(--bg); z-index: 2; }
.flow-body { padding: 2rem 1.3rem 1.5rem; text-align: center; }
.flow-body h3 { font-size: 1.05rem; color: var(--white); margin-bottom: .5rem; letter-spacing: -0.01em; }
.flow-body p { font-size: .9rem; color: var(--muted); line-height: 1.55; }
@media (prefers-reduced-motion: reduce) { .flow-track { animation: none; } }

/* ─── KINEK IDEÁLIS — fotós kártyák szöveggel a képen ─── */
.ideal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.ideal-card { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gold); background-size: cover; background-position: center; padding: 1.4rem; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.ideal-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,14,0.4) 0%, rgba(10,10,14,0.72) 100%); }
.ideal-text { position: relative; z-index: 2; color: #fff; font-weight: 700; font-size: 1.05rem; line-height: 1.35; letter-spacing: -0.01em; text-shadow: 0 2px 10px rgba(0,0,0,.6); }
.ideal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
@media (max-width: 880px) { .ideal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ideal-grid { grid-template-columns: 1fr; } .ideal-card { aspect-ratio: 16 / 10; } }

/* ─── AJÁNLATKÉRŐ űrlap + választható csatorna-chipek ─── */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; margin-top: 3rem; text-align: left; }
.offer-pick h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--gold); margin: 0 0 .7rem; }
.offer-pick h4:not(:first-child) { margin-top: 1.6rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip { position: relative; display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .8rem; border: 1px solid var(--border); border-radius: var(--radius-pill); background: var(--dark); cursor: pointer; font-size: .88rem; font-weight: 500; color: var(--text); user-select: none; transition: border-color .2s, background .2s, color .2s; }
.chip:hover { border-color: var(--gold2); }
.chip img { width: 26px; height: 26px; object-fit: contain; background: #fff; border-radius: 5px; padding: 1px; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip:has(input:checked) { border-color: var(--gold); background: rgba(240,145,60,0.14); color: var(--white); }
.chip-add { cursor: pointer; border-style: dashed; color: var(--gold); font-weight: 600; }
.chip-add--on { background: rgba(240,145,60,0.14); border-color: var(--gold); }
.chip-custom { display: none; margin-top: .6rem; max-width: 320px; }
.chip-custom.show { display: block; }
.offer-form { max-width: 760px; margin: 3rem auto 0; }
.offer-opt { color: var(--muted); font-weight: 400; font-size: .9em; }
.offer-step[hidden] { display: none; }
.offer-stepinfo { color: var(--muted); font-size: .85rem; margin-bottom: 1.3rem; }
.offer-nav { display: flex; gap: .8rem; margin-top: 1.4rem; flex-wrap: wrap; align-items: center; }
.offer-pick h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--gold); margin: 1.1rem 0 .6rem; }
@media (max-width: 820px) { .offer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* Ajánlatkérő beágyazva a kapcsolat oldal jobb oszlopába — fejlécek egy vonalban */
.contact-form-col #ajanlat { padding: 0; }
.contact-form-col .block-head { text-align: left !important; max-width: none; margin-bottom: 2rem; }
.contact-form-col .block-head .section-tag, .contact-form-col .block-head p { display: none !important; }
.contact-form-col .block-head h2 { margin: 0 !important; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.contact-form-col .offer-form { max-width: none; margin-top: 0; }
.fulfill-right {
  background: linear-gradient(160deg, var(--dark), var(--bg2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.6rem;
  position: relative;
  overflow: hidden;
}
.fulfill-right::after {
  content: 'SHIPNOW';
  position: absolute;
  bottom: 1.2rem; right: 1.6rem;
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(240,145,60,0.10);
  pointer-events: none;
}
.fulfill-right h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 1rem; }
.fulfill-right p { color: var(--text); font-size: 1rem; margin-bottom: 1.3rem; }
.shipnow-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(132,184,63,0.14);
  color: #5BA12B;
  padding: .35rem .8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.6rem;
}

/* ─── PÁLYÁZAT ─── */
.palyzat-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
.palyzat-left h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.palyzat-left .big-num { font-size: clamp(3.5rem, 7vw, 6.5rem); font-weight: 800; color: var(--gold); line-height: 1; display: block; margin: 1.2rem 0 .4rem; letter-spacing: -0.03em; }
.palyzat-left p { color: var(--text); margin-top: .4rem; font-size: 1rem; }
.palyzat-right { padding-top: .5rem; }
.palyzat-right p { color: var(--text); margin-bottom: 1.1rem; font-size: 1.05rem; }
.info-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.info-box { background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 1.4rem; }
.info-box .info-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.info-box .info-value { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; color: var(--white); }
.info-box .info-value.gold { color: var(--gold); }

.eligibility { border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.6rem; background: var(--dark); }
.eligibility h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 2rem; }
.eligibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.elig-group h4 { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; color: var(--white); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border); }
.elig-group ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.elig-group li { font-size: 0.96rem; color: var(--text); padding-left: 1.6rem; position: relative; }
.elig-group li::before { content: '✓'; position: absolute; left: 0; color: var(--gold2); font-weight: 800; }
.elig-group.no li::before { content: '✕'; color: #E0564F; }

.deadline-banner {
  margin-top: 2.5rem;
  background: linear-gradient(120deg, rgba(240,145,60,0.10), rgba(132,184,63,0.10));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.deadline-text h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: .3rem; }
.deadline-text p { font-size: 0.95rem; color: var(--text); }

/* ─── WHY GRID ─── */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; margin-top: 3rem; }
.why-item {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem 1.6rem;
  transition: transform .2s, box-shadow .2s;
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon {
  font-size: 1.4rem; margin-bottom: 1rem; display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px; background: rgba(132,184,63,0.12);
}
.why-item h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; color: var(--white); margin-bottom: .5rem; }
.why-item p { font-size: 0.92rem; color: var(--text); line-height: 1.6; }

/* ─── CTA SECTION ─── */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: var(--maxw);
  margin: 3rem auto 5rem;
  padding: 6rem 2rem;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(240,145,60,0.13), transparent 60%),
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(132,184,63,0.13), transparent 60%),
    var(--bg2);
}
.cta-section .section-tag { justify-content: center; display: inline-flex; }
.cta-section h2 { font-size: clamp(2rem, 4.8vw, 3.6rem); max-width: 22ch; margin: 1rem auto 1.6rem; }
.cta-section p { color: var(--text); max-width: 54ch; margin: 0 auto 2.4rem; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT ─── */
.contact-section { padding-top: 5rem; padding-bottom: 5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 2rem; }
/* összefüggő sáv: egy keret + elválasztó vonalak */
.info-list {
  display: flex; flex-direction: column;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.info-pair { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border); }
.info-pair .info-row { border-bottom: none; }
.info-pair .info-row:first-child { border-right: 1px solid var(--border); }
.info-list > .info-row:last-child { border-bottom: none; }
.info-row {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 1.2rem 1.4rem;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.info-row:hover { background: var(--bg2); }
@media (max-width: 820px) {
  .info-pair { grid-template-columns: 1fr; }
  .info-pair .info-row:first-child { border-right: none; border-bottom: 1px solid var(--border); }
}
.info-row .ic { font-size: 1.2rem; line-height: 1.4; }
.info-row .info-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold); margin-bottom: .25rem; }
.info-row a, .info-row span.val { color: var(--white); text-decoration: none; font-size: 1rem; font-weight: 500; transition: color .2s; }
.info-row a:hover { color: var(--gold); }
.info-note { margin-top: 1.6rem; font-size: 0.9rem; color: var(--muted); line-height: 1.8; }

.contact-form-wrap {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.6rem;
  position: relative;
}
.contact-form-wrap::before {
  content: 'KAPCSOLAT';
  position: absolute; top: -12px; left: 2rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  background: var(--gold); color: #fff; padding: .3rem .7rem; border-radius: var(--radius-pill);
}
.contact-form-wrap h3 { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: .5rem; }
.contact-form-wrap > p { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
input, textarea, select {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  padding: .8rem 1rem;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,145,60,0.15); }
input::placeholder, textarea::placeholder { color: var(--muted); }
textarea { resize: vertical; min-height: 130px; }
select { appearance: none; cursor: pointer; }
.form-note { margin-top: 1.1rem; font-size: 0.8rem; color: var(--muted); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.form-status { display: none; margin-top: 1.3rem; border: 1px solid #E0564F; border-radius: var(--radius-sm); padding: 1rem 1.2rem; font-size: 0.92rem; color: #E0564F; background: rgba(224,86,79,0.06); }
.thankyou { display: none; text-align: center; padding: 1rem 0 .5rem; }
.thankyou .ty-icon {
  font-size: 1.8rem; line-height: 1; color: #fff; display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%; background: var(--gold2); margin-bottom: 1rem;
}
.thankyou h3 { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 1rem; }
.thankyou p { color: var(--text); font-size: 1rem; max-width: 38ch; margin: 0 auto 2rem; }

/* ─── FOOTER ─── */
footer { border-top: 1px solid var(--border); padding: 4rem max(1.5rem, calc((100% - var(--maxw)) / 2)) 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { margin-top: 1rem; color: var(--text); font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col a { display: block; color: var(--text); text-decoration: none; font-size: 0.95rem; margin-bottom: .7rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-bottom a { color: var(--text); text-decoration: underline; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .cards, .cards.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  section, .profit-section, .contact-section { padding: 4.5rem 1.5rem; }
  .hero { padding: 5.5rem 1.5rem 3rem; min-height: auto; }
  .page-hero { padding: 9rem 1.5rem 3rem; }
  .cta-section { padding: 5rem 1.5rem; margin: 1rem 1rem 3rem; }
  .intro, .profit-inner, .fulfill-grid, .palyzat-hero, .eligibility-grid, .modes-grid,
  .split2, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid, .cards, .cards.cols-2, .cards.cols-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .info-boxes { grid-template-columns: 1fr 1fr; }
  .deadline-banner { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  footer { padding: 3rem 1.5rem 2rem; }
}
@media (max-width: 480px) {
  .why-grid, .footer-top, .info-boxes { grid-template-columns: 1fr; }
}

/* ── Dashboard showcase (szoftver-rendszer) ── */
.dash-showcase{max-width:1000px;margin:2.6rem auto 0;perspective:1200px;animation:dashFloat 6s ease-in-out infinite;}
.dash-inner{border-radius:18px;overflow:hidden;border:1px solid rgba(255,255,255,.09);box-shadow:0 30px 80px rgba(0,0,0,.55);transition:transform .45s cubic-bezier(.2,.8,.2,1),box-shadow .45s ease;}
.dash-inner img{display:block;width:100%;height:auto;}
.dash-showcase:hover .dash-inner{transform:scale(1.045);box-shadow:0 46px 110px rgba(247,148,30,.28);}
@keyframes dashFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-14px)}}
@media (prefers-reduced-motion: reduce){.dash-showcase{animation:none}}
/* Dashboard intro — szöveg + kép egymás mellett */
.dash-intro{display:grid;grid-template-columns:1fr 1.15fr;gap:3.2rem;align-items:center;margin-bottom:2.6rem;}
.dash-intro-txt{max-width:none;}
.dash-intro .dash-showcase{margin:0;max-width:100%;}
@media (max-width:920px){.dash-intro{grid-template-columns:1fr;gap:2rem;}}
/* Ideal-card cím + leírás (Kinek készült a rendszer?) */
.ideal-title{display:block;font-size:1.22rem;line-height:1.2;margin-bottom:.5rem;color:var(--gold);}
.ideal-text .ideal-desc{display:block;font-weight:500;font-size:.92rem;line-height:1.4;color:rgba(255,255,255,.92);}
/* ── 5★ kiszállítás értékelő kártya (Miért mi?) ── */
.ship-rating{background:linear-gradient(160deg,rgba(255,255,255,.05),rgba(255,255,255,.015));border:1px solid rgba(255,255,255,.09);border-radius:20px;padding:1.8rem;box-shadow:0 30px 70px rgba(0,0,0,.45);max-width:440px;}
.ship-badge{display:inline-flex;align-items:center;gap:.45rem;background:rgba(247,148,30,.14);color:var(--gold);border:1px solid rgba(247,148,30,.35);border-radius:999px;padding:.35rem .8rem;font-size:.82rem;font-weight:700;margin-bottom:1.3rem;}
.ship-badge-ic{font-size:1rem;animation:shipTruck 3.2s ease-in-out infinite;}
@keyframes shipTruck{0%,100%{transform:translateX(0)}50%{transform:translateX(4px)}}
.ship-rating-head{display:flex;align-items:center;gap:1.1rem;padding-bottom:1.3rem;border-bottom:1px solid rgba(255,255,255,.08);}
.ship-score{font-size:3.4rem;font-weight:800;line-height:1;color:#fff;letter-spacing:-.02em;}
.ship-stars{color:var(--gold);font-size:1.3rem;letter-spacing:.15em;}
.ship-sub{display:block;margin-top:.35rem;font-size:.84rem;color:rgba(255,255,255,.6);}
.ship-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:.7rem;padding:1.3rem 0;}
.ship-stat{text-align:center;}
.ship-stat strong{display:block;font-size:1.55rem;color:var(--gold);font-weight:800;line-height:1;}
.ship-stat span{font-size:.76rem;color:rgba(255,255,255,.65);line-height:1.25;display:block;margin-top:.35rem;}
.ship-review{background:rgba(0,0,0,.28);border-radius:14px;padding:1.1rem 1.2rem;border:1px solid rgba(255,255,255,.06);}
.ship-review-stars{color:var(--gold);letter-spacing:.12em;font-size:.95rem;}
.ship-review p{margin:.5rem 0 .6rem;font-style:italic;color:rgba(255,255,255,.9);font-size:.95rem;line-height:1.45;}
.ship-review-who{font-size:.8rem;color:rgba(255,255,255,.55);}
@media (prefers-reduced-motion: reduce){.ship-badge-ic{animation:none}}
/* Bizonyított teljesítmény — valós statok */
.ship-proof{display:flex;flex-direction:column;gap:.35rem;padding:1.4rem 0;border-bottom:1px solid rgba(255,255,255,.08);}
.ship-proof:last-child{border-bottom:none;padding-bottom:.2rem;}
.ship-proof-num{font-size:2.9rem;font-weight:800;line-height:1;color:var(--gold);letter-spacing:-.02em;}
.ship-proof-lbl{font-size:.97rem;color:rgba(255,255,255,.78);line-height:1.45;}
.ship-proof-lbl strong{color:#fff;font-weight:700;}
/* Hero jobb oldali kép (fulfillment-logisztika) */
.hero-shot{width:100%;border-radius:18px;overflow:hidden;border:1px solid rgba(255,255,255,.1);box-shadow:0 30px 80px rgba(0,0,0,.5);animation:dashFloat 7s ease-in-out infinite;}
.hero-shot img{display:block;width:100%;max-width:none;height:auto;}
@media (max-width:900px){.hero-shot{max-width:560px;margin:0 auto;}}
/* ── Statikus integrációs logórács (lattice osztóvonalakkal) ── */
.logo-matrix-wrap{max-width:var(--maxw);margin:0 auto;border-radius:14px;overflow:hidden;}
.logo-matrix{display:grid;grid-template-columns:repeat(6,1fr);margin:0 -1px -1px 0;}
.logo-matrix .logo-cell{display:flex;align-items:center;justify-content:center;min-height:118px;padding:1.4rem 1.1rem;background:var(--dark);border-right:1px solid rgba(240,145,60,.20);border-bottom:1px solid rgba(240,145,60,.20);transition:background .2s;}
.logo-matrix .logo-cell img{max-width:128px;max-height:50px;width:auto;height:auto;object-fit:contain;opacity:.92;transition:opacity .2s,transform .25s;}
.logo-matrix .logo-cell:hover{background:#221f2c;}
.logo-matrix .logo-cell:hover img{opacity:1;transform:scale(1.07);}
@media (max-width:1024px){.logo-matrix{grid-template-columns:repeat(4,1fr);}}
@media (max-width:680px){.logo-matrix{grid-template-columns:repeat(3,1fr);}}
@media (max-width:430px){.logo-matrix{grid-template-columns:repeat(2,1fr);}}
/* AI kiemelés (szoftver-rendszer funkciólista) */
.ai-tag{display:inline-block;font-size:.62rem;font-weight:800;letter-spacing:.06em;color:#0E0D13;background:var(--gold);border-radius:5px;padding:.1rem .36rem;margin-right:.5rem;vertical-align:middle;text-transform:uppercase;line-height:1.1;}
.feature-card--ai{border-color:rgba(240,145,60,.45);box-shadow:0 0 0 1px rgba(240,145,60,.18),0 18px 50px rgba(0,0,0,.35);position:relative;}
.feature-card--ai::after{content:'AI';position:absolute;top:.9rem;right:1rem;font-size:.62rem;font-weight:800;letter-spacing:.08em;color:var(--gold);border:1px solid rgba(240,145,60,.5);border-radius:5px;padding:.1rem .4rem;opacity:.85;}
/* ── Függőleges folyamatábra (vflow) ── */
.vflow{list-style:none;margin:0;padding:0;position:relative;}
.vflow-step{position:relative;display:flex;gap:1.1rem;padding-bottom:1.8rem;}
.vflow-step:last-child{padding-bottom:0;}
.vflow-step::before{content:'';position:absolute;left:19px;top:42px;bottom:-2px;width:2px;background:linear-gradient(var(--gold),rgba(240,145,60,.22));z-index:1;}
.vflow-step:last-child::before{display:none;}
.vflow-num{flex:0 0 auto;width:40px;height:40px;border-radius:50%;background:var(--gold);color:#0E0D13;font-weight:800;font-size:1.05rem;display:flex;align-items:center;justify-content:center;position:relative;z-index:2;box-shadow:0 0 0 4px rgba(240,145,60,.14);}
.vflow-body{padding-top:.35rem;}
.vflow-body h4{margin:0;font-size:1.08rem;color:#fff;font-weight:700;letter-spacing:-.01em;}
.vflow-body p{margin:.3rem 0 0;font-size:.92rem;line-height:1.45;color:rgba(255,255,255,.66);}
/* ── Kapcsolat térkép (Leaflet, teljes sáv) ── */
.map-band{position:sticky;top:0;z-index:0;width:100vw;left:50%;margin-left:-50vw;margin-top:2.4rem;overflow:hidden;}
#contactMap{width:100%;height:460px;background:var(--dark);z-index:0;}
.map-pin{display:flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:50%;border:3px solid #fff;box-shadow:0 4px 14px rgba(0,0,0,.5);font-size:20px;}
.map-pin--wh{background:var(--gold);}
.map-pin--pp{background:#2f8fff;}
.map-legend{display:flex;flex-wrap:wrap;justify-content:center;gap:.9rem 2rem;padding:1.1rem 1rem;background:var(--dark);border-top:1px solid var(--border);}
.map-legend-item{display:inline-flex;align-items:center;gap:.55rem;font-size:.9rem;color:rgba(255,255,255,.82);}
.map-dot{width:14px;height:14px;border-radius:50%;border:2px solid #fff;flex:0 0 auto;}
.map-dot--wh{background:var(--gold);}
.map-dot--pp{background:#2f8fff;}
.leaflet-popup-content{font-size:.92rem;line-height:1.45;}
.leaflet-popup-content a{color:#2f8fff;font-weight:600;}
@media (max-width:600px){#contactMap{height:380px;}}
/* Kapcsolat térkép — világos, meleg narancsos alaptérkép + ikon jelmagyarázat */
#contactMap{background:#15141b;}
#contactMap .leaflet-tile-pane{filter:sepia(.55) saturate(2) hue-rotate(-10deg) brightness(1.05);}
.map-legend-ic{width:22px;height:auto;vertical-align:middle;margin-right:.1rem;}
/* Térkép jelmagyarázat — kattintható címek */
a.map-legend-item{text-decoration:none;transition:color .15s;}
a.map-legend-item:hover{color:var(--gold);text-decoration:underline;}
/* Sticky térkép alá futó footer */
footer{background:var(--bg);position:relative;z-index:2;}

/* Hub diagram — címkék és emoji ikonok (integrációk hero) */
.hub-ico--emoji{font-size:30px;line-height:1;}
.hub--labeled .hub-node{z-index:2;}
.hub-label{position:absolute;top:100%;left:50%;transform:translateX(-50%);margin-top:6px;font-size:11px;font-weight:600;color:rgba(255,255,255,.82);white-space:nowrap;text-align:center;pointer-events:none;text-shadow:0 1px 4px rgba(0,0,0,.5);}
@media (max-width:480px){.hub-fb-logos .hub-ico--emoji{font-size:26px;}}
/* Integrációs hub — kisebb ikon-kockák */
.hub--labeled .hub-ico{width:46px;height:46px;border-radius:12px;}
.hub--labeled .hub-ico--emoji{font-size:22px;}
.hub--labeled .hub-label{font-size:10.5px;margin-top:5px;}
/* Integrációs hub — nagyobb méret */
.hub--labeled{max-width:700px;}
/* Szoftver-rendszer hero — fehér sor egy sorban */
.sw-hero-h1{max-width:none;white-space:nowrap;}
.sw-hero-h1 em{white-space:normal;}
@media (max-width:760px){.sw-hero-h1{white-space:normal;}}