:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --surface: #ffffff;
  --surface-2: #f2f4f7;
  --border: rgba(20, 24, 33, 0.10);
  --ink: #26292e;
  --muted: #626873;
  --charcoal: #3a3a3a;
  --accent: #e8991e;
  --accent-strong: #cf850f;
  --accent-soft: #fbedd3;
  --radius: 16px;
  --maxw: 1160px;
  --shadow-sm: 0 2px 10px rgba(24, 28, 35, 0.06);
  --shadow: 0 18px 44px rgba(24, 28, 35, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: "Sora", "Inter", sans-serif; line-height: 1.15; letter-spacing: 0; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; height: auto; }
button, input, select, textarea { max-width: 100%; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.glow {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(620px 420px at 12% -5%, rgba(232, 153, 30, 0.10), transparent 60%),
    radial-gradient(680px 480px at 95% 6%, rgba(58, 58, 58, 0.05), transparent 60%);
}

header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
header.scrolled { border-color: var(--border); background: rgba(255, 255, 255, 0.92); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: "Sora"; font-weight: 800; font-size: 1.06rem; color: var(--charcoal); }
.brand img { width: 42px; height: 42px; display: block; }
.brand .wm { line-height: 1; }
.brand .wm b { color: var(--accent); font-weight: 800; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 12px 22px; border-radius: 12px; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(232, 153, 30, 0.28); }
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(232, 153, 30, 0.36); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--surface-2); transform: translateY(-2px); }
.menu-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; }
.mobile-sticky-cta { display: none; }
.body-lock, body.nav-open { overflow: hidden; }

.hero {
  padding: 92px 0 76px; text-align: center; position: relative;
  background-image: linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.68)), url('../hero_background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }
.hero-map { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .88; }
.map-line {
  position: absolute; height: 2px; width: 340px; transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(232,153,30,.62), rgba(34,103,164,.42), transparent);
}
.line-a { left: 13%; top: 32%; transform: rotate(18deg); }
.line-b { right: 11%; top: 34%; transform: rotate(142deg); }
.line-c { left: 39%; top: 70%; transform: rotate(-22deg); }
.map-node {
  position: absolute; display: grid; place-items: center; min-width: 86px; height: 38px; padding: 0 13px;
  border-radius: 999px; background: rgba(255,255,255,.78); border: 1px solid rgba(20,24,33,.12);
  box-shadow: 0 12px 28px rgba(24,28,35,.10); backdrop-filter: blur(10px);
  color: var(--charcoal); font-size: .78rem; font-weight: 700;
}
.map-node::before {
  content: ""; position: absolute; left: 10px; width: 8px; height: 8px; border-radius: 50%;
  background: #2267a4; box-shadow: 0 0 0 5px rgba(34,103,164,.12);
}
.map-node b { padding-left: 13px; }
.node-shop { left: 11%; top: 26%; }
.node-crm { right: 13%; top: 25%; }
.node-billing { left: 18%; bottom: 19%; }
.node-chat { right: 19%; bottom: 22%; }
.node-crm::before, .node-chat::before { background: var(--accent); box-shadow: 0 0 0 5px rgba(232,153,30,.15); }
.map-packet {
  position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 7px rgba(232,153,30,.16), 0 0 22px rgba(232,153,30,.55);
}
.packet-a { left: 18%; top: 35%; animation: packetA 5.5s linear infinite; }
.packet-b { right: 20%; bottom: 26%; animation: packetB 6.5s linear infinite; }
@keyframes packetA {
  0% { transform: translate3d(0,0,0); opacity: 0; }
  10%, 85% { opacity: 1; }
  100% { transform: translate3d(420px,160px,0); opacity: 0; }
}
@keyframes packetB {
  0% { transform: translate3d(0,0,0); opacity: 0; }
  12%, 86% { opacity: 1; }
  100% { transform: translate3d(-360px,-165px,0); opacity: 0; }
}
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; margin-bottom: 26px;
  border: 1px solid var(--border); border-radius: 999px; background: #fff; box-shadow: var(--shadow-sm);
  font-size: .82rem; color: var(--muted); font-weight: 500;
}
.badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(232,153,30,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(232,153,30,.5);} 70%{ box-shadow: 0 0 0 10px rgba(232,153,30,0);} 100%{ box-shadow: 0 0 0 0 rgba(232,153,30,0);} }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 800; margin-bottom: 22px; }
.hero h1 .grad { color: var(--accent); }
.hero p.lead { font-size: clamp(1.05rem, 2.2vw, 1.26rem); color: var(--muted); max-width: 680px; margin: 0 auto 36px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; margin-top: 64px; }
.stat h3 { font-size: 2.2rem; color: var(--accent); }

/* Főoldali mini audit */
.mini-audit-section { padding: 42px 0 28px; background: linear-gradient(180deg, #fff, var(--bg-soft)); }
.mini-audit { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
.mini-audit-copy {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr); gap: 34px; align-items: end;
}
.mini-audit-copy .eyebrow { grid-column: 1 / -1; margin-bottom: -18px; }
.mini-audit-copy h2 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); margin: 8px 0 0; max-width: 660px; }
.mini-audit-copy p { color: var(--muted); font-size: 1.02rem; max-width: 460px; margin-bottom: 5px; }
.mini-audit-panel {
  display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 20px; padding: 22px; border: 1px solid var(--border); border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.99)),
    radial-gradient(420px 220px at 100% 0%, rgba(232,153,30,.16), transparent 62%);
  box-shadow: var(--shadow);
}
.audit-question {
  grid-column: 1; display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 7px 16px; align-content: start;
  padding: 0 0 18px; border: none; border-bottom: 1px solid rgba(20,24,33,.09); border-radius: 0; background: transparent;
}
.audit-question:nth-of-type(3) { border-bottom: none; padding-bottom: 0; }
.audit-question > span {
  grid-row: span 2; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-strong); font-family: "Sora","Inter",sans-serif; font-weight: 800;
}
.audit-question h3 { font-family: "Inter"; font-size: 1rem; margin-top: 4px; }
.audit-options { display: flex; flex-wrap: wrap; gap: 8px; }
.audit-options button {
  min-height: 38px; padding: 8px 11px; border-radius: 999px; border: 1px solid var(--border);
  background: #fff; color: var(--charcoal); font: inherit; font-size: .86rem; font-weight: 700; cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}
.audit-options button:hover { transform: translateY(-1px); border-color: rgba(232,153,30,.45); }
.audit-options button.selected { background: var(--accent); border-color: var(--accent); color: #fff; }
.audit-result {
  grid-column: 2; grid-row: 1 / span 3; align-self: stretch; padding: 22px; border-radius: 18px; background: var(--ink); color: #fff;
  display: flex; flex-direction: column; justify-content: space-between; gap: 16px;
}
.audit-result strong { font-family: "Sora","Inter",sans-serif; font-size: 1.16rem; line-height: 1.25; }
.audit-result p { color: rgba(255,255,255,.76); font-size: .94rem; }
.audit-result .quote-session-kicker, .audit-result strong, .audit-result p { grid-column: auto; }
.audit-result .cta-actions { justify-content: flex-start; align-items: stretch; margin-top: auto; }
.audit-result .cta-actions .btn { flex: 1; min-width: 0; }
.stat p { color: var(--muted); font-size: .9rem; }

section { padding: 86px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.eyebrow { color: var(--accent); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, border-color .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); border-color: rgba(232,153,30,.4); box-shadow: var(--shadow); }
.card .icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--accent-soft); border: 1px solid rgba(232,153,30,.22);
}
.card .icon svg { width: 26px; height: 26px; stroke: var(--accent-strong); }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }
.service-card { min-height: 292px; display: flex; flex-direction: column; }
.service-card .icon { margin-bottom: 16px; }
.service-card h3 { margin-top: 0; }
.service-visual {
  width: 100%; height: 58px; margin: 0 0 22px; border-radius: 12px; border: 1px solid rgba(20,24,33,.08);
  background: linear-gradient(135deg, #f7f8fa, #fff); position: relative; overflow: hidden;
}
.service-visual::before, .service-visual::after {
  content: ""; position: absolute; inset: auto; border-radius: 999px; background: rgba(232,153,30,.18);
}
.service-visual::before { width: calc(100% - 118px); max-width: 150px; height: 2px; left: 42px; top: 29px; }
.service-visual::after { width: 8px; height: 8px; left: 22%; top: 25px; background: var(--accent); box-shadow: 38px 0 0 #2267a4, 76px 0 0 var(--accent); }
.service-visual span { position: absolute; display: block; border-radius: 7px; background: #fff; border: 1px solid rgba(20,24,33,.10); box-shadow: var(--shadow-sm); }
.service-visual span:nth-child(1) { width: 40px; height: 23px; left: 14px; top: 12px; }
.service-visual span:nth-child(2) { width: 54px; height: 28px; left: 50%; top: 16px; transform: translateX(-50%); }
.service-visual span:nth-child(3) { width: 38px; height: 21px; right: 16px; top: 13px; }
.service-visual-vallalatiranyitasi-rendszerek span:nth-child(2)::after,
.service-visual-riportok-dashboard span:nth-child(2)::after {
  content:""; position:absolute; left:8px; right:8px; bottom:7px; height:12px;
  background: linear-gradient(90deg, #2267a4 18%, transparent 18% 28%, var(--accent) 28% 52%, transparent 52% 62%, #3a3a3a 62%);
}
.service-visual-webaruhaz-segedprogramok span:nth-child(1)::after {
  content:""; position:absolute; inset:7px 8px; border:2px solid #2267a4; border-top:0; border-radius:0 0 5px 5px;
}
.service-visual-chatbot span:nth-child(2) { border-radius: 14px; }
.service-visual-chatbot::after {
  left: 20%;
  box-shadow: 44px 0 0 #2267a4, 136px 0 0 var(--accent);
}
.service-visual-chatbot span:nth-child(2)::after {
  content:""; position:absolute; width:8px; height:8px; left:13px; top:10px; border-radius:50%;
  background: var(--accent); box-shadow: 14px 0 0 #2267a4, 28px 0 0 #d9dee7;
}
.service-visual-folyamat-automatizalas::before { background: linear-gradient(90deg, var(--accent), #2267a4); }
.service-visual-integraciok-api span { border-radius: 50%; }

.why { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.why ul { list-style: none; display: grid; gap: 20px; margin-top: 10px; }
.why li { display: flex; gap: 14px; align-items: flex-start; }
.why li .check { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--accent-soft); display: grid; place-items: center; }
.why li .check svg { width: 15px; height: 15px; stroke: var(--accent-strong); }
.why li h4 { font-family: "Inter"; font-weight: 600; font-size: 1.02rem; margin-bottom: 2px; color: var(--ink); }
.why li p { color: var(--muted); font-size: .93rem; }
.why-visual {
  background: #fff;
  border: 1px solid var(--border); border-radius: 20px; padding: 30px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.flow-demo { position: absolute; left: 47px; top: 64px; bottom: 64px; width: 2px; background: rgba(232,153,30,.20); }
.flow-demo span {
  position: absolute; left: -5px; top: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 6px rgba(232,153,30,.14); animation: flowPacket 4.2s ease-in-out infinite;
}
@keyframes flowPacket {
  0% { transform: translateY(0); opacity: 0; }
  12%, 88% { opacity: 1; }
  100% { transform: translateY(205px); opacity: 0; }
}
.flow-node { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 13px; margin-bottom: 14px; }
.flow-node { position: relative; z-index: 1; }
.flow-node::before {
  content: ""; position: absolute; left: 17px; top: 50%; z-index: 2;
  width: 10px; height: 10px; border-radius: 999px; background: var(--accent);
  transform: translate(-50%, -50%); box-shadow: 0 0 0 0 rgba(232,153,30,.28);
  animation: flowNodePulse 2.6s ease-out infinite;
}
.flow-auto::before { animation-delay: .45s; }
.flow-chat::before { animation-delay: .9s; }
.flow-node .fdot { width: 38px; height: 38px; border-radius: 10px; flex: none; display: grid; place-items: center; }
.flow-node span.t { font-weight: 600; font-size: .96rem; color: var(--ink); }
.flow-node small { color: var(--muted); display: block; font-size: .82rem; font-weight: 400; }
.flow-arrow { text-align: center; color: var(--accent); margin: -4px 0 10px; font-weight: 700; }
@keyframes flowNodePulse {
  0% { transform: translate(-50%, -50%) scale(.82); box-shadow: 0 0 0 0 rgba(232,153,30,.30); opacity: .72; }
  48% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 10px rgba(232,153,30,.12); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(.82); box-shadow: 0 0 0 18px rgba(232,153,30,0); opacity: .72; }
}

#folyamat {
  background: linear-gradient(180deg, #f7f8fa 0%, #f4f6f8 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); position: relative; }
.step .num { font-family: "Sora"; font-weight: 800; font-size: 2.4rem; color: var(--accent); margin-bottom: 10px; }
.step h4 { font-family: "Inter"; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.step p { color: var(--muted); font-size: .92rem; }

.cta-box {
  background: linear-gradient(135deg, #3a3a3a, #2b2b2b);
  border-radius: 24px; padding: 60px 40px; text-align: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.cta-box::after { content:""; position:absolute; right:-80px; top:-80px; width:280px; height:280px; border-radius:50%; background: radial-gradient(circle, rgba(232,153,30,.35), transparent 70%); }
.cta-box h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; color: #fff; }
.cta-box p { color: rgba(255,255,255,.78); max-width: 520px; margin: 0 auto 30px; font-size: 1.05rem; }

.contact-section { padding-top: 8px; }
.contact-hero { padding-bottom: 34px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-premium { grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); align-items: stretch; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 18px; }
.contact-info p { color: var(--muted); margin-bottom: 26px; }
.contact-item { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.contact-item .ci-ic { width: 44px; height: 44px; border-radius: 11px; background: var(--accent-soft); border: 1px solid rgba(232,153,30,.22); display: grid; place-items: center; }
.contact-item .ci-ic svg { width: 20px; height: 20px; stroke: var(--accent-strong); }
.contact-item small { color: var(--muted); display: block; font-size: .8rem; }
.contact-item span.v { font-weight: 600; color: var(--ink); }
.contact-form {
  position: relative; overflow: hidden; height: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.99)),
    radial-gradient(420px 220px at 0% 0%, rgba(232,153,30,.15), transparent 62%);
}
.contact-form::before {
  content: ""; position: absolute; left: 28px; right: 28px; top: 0; height: 4px;
  border-radius: 0 0 999px 999px; background: linear-gradient(90deg, var(--accent), #2267a4);
}
.form-head { margin-bottom: 24px; }
.form-head span {
  display: block; color: var(--accent-strong); font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 7px;
}
.form-head h2 { font-size: clamp(1.45rem, 3vw, 1.9rem); margin-bottom: 8px; }
.form-head p { color: var(--muted); font-size: .94rem; line-height: 1.6; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 32px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 500; margin-bottom: 8px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; background: #fff; border: 1px solid var(--border);
  border-radius: 11px; color: var(--ink); font-family: inherit; font-size: .95rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,153,30,.15); }
.field textarea { resize: vertical; min-height: 110px; }
.contact-chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-chip-grid label { margin: 0; cursor: pointer; }
.contact-chip-grid input { position: absolute; opacity: 0; width: 0; height: 0; }
.contact-chip-grid span {
  display: inline-flex; align-items: center; min-height: 38px; padding: 9px 12px;
  border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--charcoal);
  font-size: .88rem; font-weight: 700; transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.contact-chip-grid label:hover span { border-color: rgba(232,153,30,.45); transform: translateY(-1px); }
.contact-chip-grid input:checked + span { background: var(--accent-soft); border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,153,30,.12); }
form .btn-primary { width: 100%; }
.form-note { text-align: center; color: var(--accent-strong); font-size: .9rem; margin-top: 14px; min-height: 20px; }
.contact-panel {
  position: sticky; top: 96px; height: 100%; border: 1px solid var(--border); border-radius: 22px; padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.98)),
    radial-gradient(380px 220px at 100% 0%, rgba(34,103,164,.12), transparent 64%),
    radial-gradient(360px 200px at 0% 100%, rgba(232,153,30,.16), transparent 62%);
  box-shadow: var(--shadow);
}
.contact-panel-top h3 { margin-bottom: 10px; }
.contact-panel-top p { margin-bottom: 20px; }
.contact-actions { display: grid; gap: 12px; margin: 18px 0 24px; }
.contact-actions .contact-item {
  margin: 0; padding: 14px; border: 1px solid rgba(20,24,33,.08); border-radius: 14px;
  background: rgba(255,255,255,.78); transition: border-color .2s, transform .2s, box-shadow .2s;
}
.contact-actions .contact-item:hover { border-color: rgba(232,153,30,.35); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-route { border-top: 1px solid var(--border); padding-top: 20px; }
.contact-route h4 {
  font-family: "Inter"; font-size: .78rem; text-transform: uppercase; letter-spacing: .09em;
  color: var(--muted); margin-bottom: 12px;
}
.contact-route ol { list-style: none; display: grid; gap: 10px; padding: 0; margin: 0; }
.contact-route li {
  display: grid; grid-template-columns: 34px 1fr; gap: 6px 12px; padding: 12px;
  border: 1px solid rgba(20,24,33,.08); border-radius: 13px; background: rgba(247,248,250,.72);
}
.contact-route li span {
  grid-row: span 2; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
  background: var(--accent); color: #fff; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: .76rem;
}
.contact-route li b { color: var(--ink); font-size: .92rem; line-height: 1.25; }
.contact-route li small { color: var(--muted); font-size: .82rem; line-height: 1.45; }
.contact-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.contact-trust div { padding: 14px; border-radius: 13px; background: var(--accent-soft); border: 1px solid rgba(232,153,30,.22); }
.contact-trust strong { display: block; font-family: "Sora","Inter",sans-serif; color: var(--accent-strong); font-size: 1.05rem; }
.contact-trust span { color: var(--charcoal); font-size: .8rem; line-height: 1.35; }

footer { border-top: 1px solid var(--border); padding: 44px 0 30px; background: var(--bg-soft); }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot p { color: var(--muted); font-size: .9rem; }
.foot .foot-links { display: flex; gap: 22px; }
.foot .foot-links a { color: var(--muted); font-size: .9rem; transition: color .2s; }
.foot .foot-links a:hover { color: var(--ink); }

/* Animáció csak akkor, ha a JS fut (html.js). JS nélkül minden látszik. */
.reveal { transition: opacity .7s ease, transform .7s ease; }
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  body { padding-bottom: 76px; }
  body.nav-open { overflow: hidden; }
  .grid, .steps { grid-template-columns: 1fr 1fr; }
  .why-grid, .contact-grid, .contact-premium { grid-template-columns: 1fr; gap: 36px; }
  .contact-panel { position: static; }
  .process-layout { grid-template-columns: 1fr; }
  .process-panel { position: static; }
  .process-proof-grid { grid-template-columns: 1fr; }
  .about-hero-grid, .about-layout { grid-template-columns: 1fr; gap: 28px; }
  .about-system-card { min-height: 260px; }
  .about-proof-grid { grid-template-columns: 1fr; }
  .references-stats { grid-template-columns: 1fr; }
  .ref-top { flex-direction: column; gap: 14px; }
  .ref-mini-flow { flex-basis: auto; width: min(240px, 100%); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .solution-detail-grid, .solution-content-layout { grid-template-columns: 1fr; }
  .solution-side-panel { position: static; }
  .solution-pathway { grid-template-columns: 1fr; }
  .path-card { min-height: 0; }
  .mini-audit { grid-template-columns: 1fr; }
  .mini-audit-copy { grid-template-columns: 1fr; gap: 12px; }
  .mini-audit-copy .eyebrow { grid-column: auto; margin-bottom: 0; }
  .mini-audit-copy p { max-width: none; }
  .mini-audit-panel { grid-template-columns: 1fr; }
  .audit-result { grid-template-columns: 1fr; }
  .audit-result .quote-session-kicker, .audit-result strong, .audit-result p, .audit-result .cta-actions { grid-column: auto; grid-row: auto; }
  .audit-result .cta-actions { justify-content: flex-start; }
  .result-experience { grid-template-columns: 1fr; }
  .result-next-grid { grid-template-columns: 1fr; }
  .ref-story { padding: 20px; }
  .ref-timeline { display: none; }
  .ref-step { padding-top: 22px; }
  .ref-bottom { flex-wrap: wrap; padding: 0 20px 22px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .menu-toggle.open svg line:nth-child(1) { transform: translateY(6px) rotate(45deg); transform-origin: center; }
  .menu-toggle.open svg line:nth-child(2) { opacity: 0; }
  .menu-toggle.open svg line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); transform-origin: center; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed; top: 74px; left: 0; right: 0;
    max-height: calc(100vh - 74px); overflow-y: auto;
    background: rgba(255,255,255,.98); backdrop-filter: blur(12px); padding: 18px 24px 96px; gap: 8px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
  }
  .nav-links.open a { min-height: 46px; display: flex; align-items: center; padding: 10px 12px; border-radius: 12px; }
  .nav-links.open a:hover { background: var(--bg-soft); }
  .nav-links.open .has-dropdown { width: 100%; }
  .nav-links.open .dropdown a { min-height: 42px; font-size: .9rem; }
  .hero .hero-cta .btn-primary { display: none; }
  .mobile-sticky-cta {
    position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 60;
    display: flex; align-items: center; justify-content: center; min-height: 52px; border-radius: 14px;
    background: var(--accent); color: #fff; font-weight: 800; box-shadow: 0 14px 32px rgba(232,153,30,.34);
  }
  body.nav-open .mobile-sticky-cta { display: none; }
}
@media (max-width: 560px) {
  .grid, .steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 30px; }
  section { padding: 62px 0; }
  .brand .wm { display: none; }
}

@media (max-width: 680px) {
  .container { padding: 0 16px; }
  .nav { height: 64px; }
  .brand { min-width: 0; gap: 9px; font-size: .98rem; }
  .brand img { width: 38px; height: 38px; flex: none; }
  .nav-links.open { top: 64px; padding: 18px 16px 96px; max-height: calc(100vh - 64px); overflow-y: auto; }
  .nav-links.open a { width: 100%; }
  .nav-links.open .btn { justify-content: center; }
  .dropdown { padding-left: 8px; }
  .dropdown a { white-space: normal; }
  .hero {
    padding: 42px 0 30px;
    background-position: center;
    background-image: linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.84)), url('../hero_background.jpg');
  }
  .hero-map { display: none; }
  .map-line, .map-node { display: none; }
  .packet-a { left: 8%; top: 28%; }
  .packet-b { right: 12%; bottom: 30%; }
  .hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.45rem);
    margin-bottom: 14px;
  }
  .hero h1 br { display: none; }
  .hero p.lead {
    font-size: .96rem;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .hero p.lead, .subhero .lead, .section-head p { font-size: 1rem; }
  .badge {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    margin-bottom: 14px;
  }
  .hero-cta, .cta-actions, .wnav, .news-box { align-items: stretch; }
  .hero-cta .btn, .cta-actions .btn, .center-cta .btn, .news-box .btn, .wnav .btn { width: 100%; }
  .hero-stats { display: none; }
  .stat { text-align: center; min-width: 0; }
  .stat h3 { font-size: 1.65rem; }
  .stat p { font-size: .78rem; line-height: 1.35; overflow-wrap: anywhere; }
  section { padding: 44px 0; }
  .section-head { margin-bottom: 24px; }
  .section-head h2, .cta-box h2 { font-size: clamp(1.6rem, 8vw, 2.05rem); }
  .mini-audit-section { padding: 28px 0 14px; }
  .mini-audit-panel { padding: 16px; border-radius: 18px; }
  .audit-question { grid-template-columns: 1fr; gap: 10px; padding: 14px; }
  .audit-question > span { width: 34px; height: 34px; }
  .audit-options { display: grid; grid-template-columns: 1fr; }
  .result-main, .result-side { border-radius: 18px; }
  .result-main { padding: 24px 18px; }
  .result-price-panel { padding: 18px; }
  .result-next-grid div { min-height: 0; }
  .result-side { padding: 18px; }
  .ref-bottom { display: none; }
  .card, .qgroup, .split-box, .ref-step { padding: 20px 16px; }
  .card:hover, a.feature:hover, .btn:hover { transform: none; }
  .why-visual, form, .qcard, .result-card { padding: 22px 18px; border-radius: 14px; }
  .flow-node { padding: 14px; align-items: flex-start; }
  .flow-node .fdot { width: 34px; height: 34px; }
  .cta-box { padding: 34px 20px; border-radius: 18px; }
  .contact-item { align-items: flex-start; }
  .contact-item .v { overflow-wrap: anywhere; }
  .field-row, .contact-trust { grid-template-columns: 1fr; }
  .contact-form, .contact-panel { padding: 24px 18px; border-radius: 16px; }
  .contact-form::before { left: 18px; right: 18px; }
  .contact-chip-grid { gap: 8px; }
  .contact-chip-grid label { flex: 1 1 100%; }
  .contact-chip-grid span { width: 100%; justify-content: center; text-align: center; }
  .contact-route li { grid-template-columns: 32px 1fr; padding: 11px; }
  .subhero { padding: 46px 0 26px; }
  .subhero h1 { font-size: clamp(1.85rem, 9vw, 2.35rem); }
  .crumbs { display: flex; flex-wrap: wrap; gap: 6px; line-height: 1.45; }
  .crumbs span { margin: 0; }
  .prose p, .article-lead { font-size: 1rem !important; line-height: 1.68; }
  .prose h2 { font-size: 1.22rem; }
  .prose img, .article img { display: block; max-width: 100%; height: auto; }
  .prose table, .article table { display: block; width: 100%; overflow-x: auto; border-collapse: collapse; }
  .prose pre, .article pre { max-width: 100%; overflow-x: auto; }
  .prose, .article, .card, .feature, .split-box, .ref-card, .qcard, .result-card { overflow-wrap: anywhere; }
  .feature-grid, .split, .ref-body, .foot-wrap { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-visual { display: none; }
  .deliverable-grid { grid-template-columns: 1fr; }
  .deliverable { min-height: 0; padding: 22px 18px 28px; }
  .ref-top { padding: 24px 18px 0; }
  .ref-body { margin-top: 0; padding: 20px 18px 24px; gap: 10px; }
  .ref-step { padding: 18px; border-radius: 14px; }
  .ref-mini-flow { display: none; }
  .reference-note { flex-direction: column; gap: 6px; }
  .legal-sidebar, .legal-document { padding: 22px 18px; border-radius: 16px; }
  .legal-note { padding: 14px 14px 14px 44px; }
  .legal-note::before { left: 14px; top: 14px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 0; }
  .solution-detail-hero .hero-cta { align-items: stretch; }
  .solution-detail-hero .hero-cta .btn { width: 100%; }
  .solution-hero-card { min-height: 0; padding: 22px 18px; border-radius: 18px; }
  .solution-map { margin: 22px 0 18px; }
  .solution-problem, .solution-side-panel { padding: 22px 18px; border-radius: 16px; }
  .capability-list { grid-template-columns: 1fr; }
  .feature-focus span:nth-of-type(2), .feature-focus span:nth-of-type(3) { margin-left: 0; }
  .news-box { padding: 24px 18px; align-items: stretch; }
  .stat-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .tl-item { flex-direction: column; gap: 8px; padding: 22px 0; }
  .tl-num { width: auto; font-size: 1.85rem; }
  .process-hero-strip { overflow-x: auto; justify-content: flex-start; margin-top: 24px; padding: 12px; }
  .process-layout { gap: 22px; }
  .process-panel { padding: 22px 18px; border-radius: 16px; }
  .process-timeline::before { left: 25px; }
  .process-step-card {
    display: grid; grid-template-columns: 58px minmax(0, 1fr); padding: 0; gap: 0;
  }
  .process-step-card .tl-num { min-height: auto; font-size: 1.3rem; }
  .process-step-card .tl-body { padding: 20px 18px; }
  .process-proof { min-height: 0; padding: 22px 18px; }
  .about-system-card { min-height: 220px; border-radius: 18px; }
  .system-node { min-width: 78px; height: 36px; font-size: .74rem; }
  .system-node.main { min-width: 104px; height: 46px; }
  .node-a { left: 16px; top: 34px; }
  .node-b { right: 16px; top: 42px; }
  .node-c { left: 20px; bottom: 38px; }
  .node-d { right: 20px; bottom: 34px; }
  .system-line { width: 125px; }
  .about-story, .about-principles, .about-proof { padding: 22px 18px; border-radius: 16px; }
  .about-proof { min-height: 0; }
  .foot-wrap { gap: 22px; }
  .foot-tag { max-width: none; }
}

@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .hero-stats, .stat-row { grid-template-columns: 1fr; gap: 18px; }
  .btn { padding: 11px 16px; font-size: .9rem; }
  .card, .qgroup, .split-box, .ref-step, .why-visual, form, .qcard { padding: 20px 16px; }
}

@media (max-width: 1100px) {
  .deliverable-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .deliverable-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .map-packet, .flow-demo span, .flow-node::before, .badge .pulse { animation: none; }
  .reveal { transition: none; }
}

/* ===================================================================
   Többoldalas kiegészítések
   =================================================================== */

/* Legördülő almenü a fejlécben */
.has-dropdown { position: relative; }
.drop-trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.drop-trigger .caret { transition: transform .2s; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 268px; background: #fff; border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--shadow); padding: 10px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s;
}
.dropdown::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.dropdown a { padding: 10px 12px; border-radius: 9px; font-size: .92rem; color: var(--muted); white-space: nowrap; }
.dropdown a b { color: var(--ink); font-weight: 600; }
.dropdown a:hover { background: var(--surface-2); color: var(--ink); }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-dropdown:hover .drop-trigger .caret { transform: rotate(180deg); }

/* Kattintható kártya (link) */
a.card { display: flex; flex-direction: column; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--accent-strong); font-weight: 600; font-size: .9rem; }
a.card:hover .card-link { gap: 10px; }
.center-cta { text-align: center; margin-top: 44px; }
.blog-card-image {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.blog-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(232,153,30,.12), rgba(34,103,164,.10)),
    var(--surface-2);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.blog-filter {
  display: flex;
  gap: 10px;
  margin: 0 0 14px;
}
.blog-filter input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}
.blog-tags a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: .88rem;
  background: var(--surface);
}
.blog-tags a.active,
.blog-tags a:hover {
  border-color: rgba(232,153,30,.55);
  color: var(--accent-strong);
  text-decoration: none;
}

/* Al-oldal fejléc (subhero) */
.subhero { padding: 70px 0 40px; }
.subhero h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; margin-bottom: 16px; }
.subhero .lead { font-size: clamp(1.02rem, 2.2vw, 1.2rem); color: var(--muted); max-width: 680px; }
.subhero-head { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 26px; }
.icon.icon-lg { width: 64px; height: 64px; border-radius: 16px; flex: none; }
.icon.icon-lg svg { width: 32px; height: 32px; }
.crumbs { font-size: .88rem; color: var(--muted); margin-bottom: 22px; }
.crumbs a { color: var(--accent-strong); font-weight: 500; }
.crumbs span { margin: 0 6px; }

/* Prose / szöveges tartalom */
.prose-wrap { max-width: 860px; }
.prose p { color: var(--muted); font-size: 1.04rem; line-height: 1.75; margin-bottom: 16px; }
.prose h2 { font-size: 1.4rem; margin: 34px 0 12px; }
.prose a { color: var(--accent-strong); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.article-lead { font-size: 1.16rem !important; color: var(--ink) !important; font-weight: 500; }
.article-title { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
.article-cover { margin: 0 0 30px; }
.article-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.article-cover figcaption { color: var(--muted); font-size: .88rem; margin-top: 9px; }
.article-preview-banner {
  border: 1px solid rgba(232,153,30,.45);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(232,153,30,.10);
  color: var(--accent-strong);
  font-weight: 700;
}
.article-toc {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 0 0 28px;
  background: var(--surface);
}
.article-toc a {
  display: block;
  color: var(--muted);
  font-weight: 600;
  margin-top: 8px;
}
.article-toc a:hover { color: var(--accent-strong); }
.article-toc .toc-level-3 { padding-left: 18px; font-size: .92rem; font-weight: 500; }
.article h2[id], .article h3[id] { scroll-margin-top: 110px; }

/* Szolgáltatás-aloldal: funkciók */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 16px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px 22px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .25s, border-color .25s, box-shadow .25s; }
a.feature:hover { transform: translateY(-4px); border-color: rgba(232,153,30,.45); box-shadow: var(--shadow); }
a.feature:hover .card-link { gap: 10px; }
.feature h4 { font-family: "Inter"; font-weight: 600; font-size: 1.04rem; margin-bottom: 6px; color: var(--ink); }
.feature p { color: var(--muted); font-size: .95rem; }
.feature .card-link { margin-top: 14px; }
.feature-hint { color: var(--muted); font-size: .9rem; margin: 6px 0 14px; }

/* Megoldásaink oldalak */
.solutions-hero { position: relative; overflow: hidden; padding-bottom: 48px; }
.solutions-hero::after {
  content:""; position:absolute; right:9%; top:42px; width:360px; height:220px; pointer-events:none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(232,153,30,.13) 42% 42.8%, transparent 42.8%),
    linear-gradient(55deg, transparent 0 62%, rgba(34,103,164,.10) 62% 62.8%, transparent 62.8%);
}
.solutions-hero .container { position: relative; z-index: 1; }
.solution-hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.solution-hero-points span {
  display: inline-flex; align-items: center; min-height: 36px; padding: 8px 12px; border-radius: 999px;
  background: var(--accent-soft); border: 1px solid rgba(232,153,30,.22); color: var(--charcoal);
  font-size: .86rem; font-weight: 800;
}
.solutions-section { padding-top: 0; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.solution-card { min-height: 360px; }
.solution-card-meta {
  display: flex; align-items: center; gap: 7px; margin: 18px 0 4px; color: var(--muted);
  font-size: .74rem; font-weight: 800;
}
.solution-card-meta i { flex: 1; height: 1px; min-width: 12px; background: rgba(232,153,30,.34); }
.solution-detail-hero { position: relative; overflow: hidden; padding-bottom: 52px; }
.solution-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 46px; align-items: stretch; }
.solution-hero-copy {
  position: relative; min-height: 280px; display: flex; flex-direction: column; justify-content: center;
  padding-left: 0;
}
.solution-detail-hero .subhero-head { display: block; }
.solution-detail-hero .subhero-head .icon { display: none; }
.solution-detail-hero .hero-cta { justify-content: flex-start; margin-top: 28px; }
.solution-hero-card {
  position: relative; min-height: 280px; height: 100%; padding: 26px; border: 1px solid var(--border); border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.99)),
    radial-gradient(340px 200px at 0% 0%, rgba(232,153,30,.17), transparent 64%),
    radial-gradient(320px 200px at 100% 100%, rgba(34,103,164,.12), transparent 65%);
  box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
}
.solution-card-title {
  color: var(--accent-strong); text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; font-weight: 800;
}
.solution-map { position: relative; display: grid; align-content: center; gap: 12px; margin: 28px 0 22px; flex: 1; }
.solution-map::before {
  content: ""; position: absolute; left: 18px; top: 58px; z-index: 2; width: 10px; height: 10px;
  border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 6px rgba(232,153,30,.14), 0 12px 26px rgba(232,153,30,.38);
  animation: solution-travel 3.2s ease-in-out infinite;
}
.solution-map i {
  position: relative; width: 3px; height: 28px; margin-left: 22px; overflow: hidden; border-radius: 999px;
  background: linear-gradient(180deg, rgba(232,153,30,.46), rgba(34,103,164,.42)); opacity: .9;
}
.solution-map i::after {
  content: ""; position: absolute; inset: -100% 0 auto; height: 100%;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  animation: solution-flow 2.8s ease-in-out infinite;
}
.solution-map i:nth-of-type(2)::after { animation-delay: .72s; }
.map-box {
  position: relative; display: inline-flex; align-items: center; min-height: 44px; max-width: 230px; padding: 10px 14px; border-radius: 14px;
  background: #fff; border: 1px solid rgba(20,24,33,.10); box-shadow: var(--shadow-sm);
  color: var(--charcoal); font-weight: 800; font-size: .9rem;
  animation: solution-node 6s ease-in-out infinite;
}
.map-box:nth-of-type(2) { animation-delay: .35s; }
.map-box:nth-of-type(3) { animation-delay: .7s; }
.map-box.main {
  overflow: hidden; background: var(--accent); color: #fff; border-color: var(--accent); margin-left: 40px;
  animation: solution-main-node 4.8s ease-in-out infinite;
}
.map-box.main::after {
  content: ""; position: absolute; inset: 0 auto 0 -55%; width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.36), transparent);
  transform: skewX(-18deg); animation: solution-sheen 3.2s ease-in-out infinite;
}
.solution-hero-result {
  padding: 14px; border-radius: 14px; background: rgba(251,237,211,.70); border: 1px solid rgba(232,153,30,.24);
  color: var(--charcoal); font-size: .9rem; font-weight: 700; line-height: 1.5;
  animation: solution-result-glow 6s ease-in-out infinite;
}
@keyframes solution-flow {
  0%, 24% { transform: translateY(0); opacity: 0; }
  42% { opacity: .92; }
  78%, 100% { transform: translateY(220%); opacity: 0; }
}
@keyframes solution-travel {
  0%, 16% { transform: translateY(0) scale(.8); opacity: .35; }
  30% { transform: translateY(48px) scale(1); opacity: 1; }
  58% { transform: translateY(108px) scale(1); opacity: 1; }
  82%, 100% { transform: translateY(156px) scale(.85); opacity: .38; }
}
@keyframes solution-sheen {
  0%, 34% { left: -55%; opacity: 0; }
  48% { opacity: 1; }
  72%, 100% { left: 115%; opacity: 0; }
}
@keyframes solution-node {
  0%, 100% { transform: translateY(0); box-shadow: var(--shadow-sm); }
  45% { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(20,24,33,.10); }
}
@keyframes solution-main-node {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 14px 30px rgba(232,153,30,.18); }
  48% { transform: translateY(-2px) scale(1.015); box-shadow: 0 18px 36px rgba(232,153,30,.30); }
}
@keyframes solution-result-glow {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 16px 34px rgba(232,153,30,.14); }
}
@media (prefers-reduced-motion: reduce) {
  .solution-map i::after,
  .solution-map::before,
  .map-box,
  .map-box.main::after,
  .map-box.main,
  .solution-hero-result {
    animation: none;
  }
}
.solution-detail-section { padding-top: 16px; }
.solution-content-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 34px; align-items: start; max-width: 1180px; }
.solution-side-panel {
  position: sticky; top: 96px; padding: 24px; border: 1px solid var(--border); border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.99)),
    radial-gradient(280px 180px at 0% 0%, rgba(232,153,30,.15), transparent 64%);
  box-shadow: var(--shadow-sm);
}
.solution-side-panel h2 { font-size: 1.25rem; margin: 8px 0 10px; }
.solution-side-panel p { color: var(--muted); font-size: .92rem; line-height: 1.58; margin-bottom: 18px; }
.solution-side-panel .btn { width: 100%; }
.solution-problem {
  padding: 30px; border: 1px solid var(--border); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm);
}
.solution-problem p { margin-bottom: 0; }
.solution-pathway {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 26px;
}
.path-card {
  position: relative; overflow: hidden; min-height: 210px; padding: 20px;
  border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm);
}
.path-card::before { content:""; position:absolute; inset:0 0 auto; height:3px; background: var(--border); }
.path-card span {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 11px;
  background: var(--surface-2); color: var(--muted); font-family: "Sora","Inter",sans-serif; font-size: .78rem; font-weight: 800;
}
.path-card h3 { font-size: 1.05rem; margin: 16px 0 8px; }
.path-card p { color: var(--muted); font-size: .9rem; line-height: 1.58; margin: 0; }
.path-card.build { background: linear-gradient(180deg, rgba(251,237,211,.72), #fff); border-color: rgba(232,153,30,.24); }
.path-card.gain { background: var(--ink); border-color: var(--ink); color: #fff; }
.path-card.pain::before { background: #2267a4; }
.path-card.build::before { background: var(--accent); }
.path-card.gain::before { background: linear-gradient(90deg, var(--accent), #2267a4); }
.path-card.build span { background: var(--accent); color: #fff; }
.path-card.gain span { background: rgba(255,255,255,.13); color: #fff; }
.path-card.gain h3 { color: #fff; }
.path-card.gain p { color: rgba(255,255,255,.76); }
.solution-block { margin-top: 34px; }
.feature-grid .feature {
  position: relative; overflow: hidden; border-radius: 16px; min-height: 190px;
}
.feature-grid .feature::before {
  content:""; position:absolute; inset:0 0 auto; height:3px; background:linear-gradient(90deg,var(--accent),#2267a4);
}
.split-box { position: relative; overflow: hidden; }
.capability-list { grid-template-columns: 1fr 1fr; gap: 12px; }
.capability-list li {
  padding: 16px; border: 1px solid var(--border); border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm);
}
.feature-focus { display: grid; gap: 10px; margin: 26px 0 18px; }
.feature-focus span {
  display: inline-flex; width: fit-content; min-height: 38px; align-items: center; padding: 8px 12px;
  border-radius: 999px; background: #fff; border: 1px solid rgba(20,24,33,.10); box-shadow: var(--shadow-sm);
  color: var(--charcoal); font-weight: 800; font-size: .86rem;
}
.feature-focus span:nth-of-type(2) { margin-left: 38px; background: var(--accent-soft); border-color: rgba(232,153,30,.24); }
.feature-focus span:nth-of-type(3) { margin-left: 76px; background: var(--accent); color: #fff; border-color: var(--accent); }
.feature-focus i { width: 2px; height: 14px; margin-left: 24px; background: linear-gradient(180deg,var(--accent),#2267a4); opacity: .45; }
.feature-hero-card p { color: var(--charcoal); font-weight: 700; line-height: 1.55; margin: 0; }
.related-solutions { padding: 64px 0; }

/* Pipás felsorolás a funkció-oldalakon */
.check-list { list-style: none; display: grid; gap: 14px; margin-top: 16px; padding: 0; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--muted); font-size: 1rem; line-height: 1.6; }
.check-list .check { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--accent-soft); display: grid; place-items: center; margin-top: 1px; }
.check-list .check svg { width: 15px; height: 15px; stroke: var(--accent-strong); }

/* Kettéosztott doboz (kinek / eredmény) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.split-box { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.split-box p { color: var(--muted); }
.split-box.highlight { background: var(--accent-soft); border-color: rgba(232,153,30,.28); }
.split-box.highlight p { color: var(--charcoal); }

/* GYIK */
.faq { margin-top: 14px; display: grid; gap: 10px; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 13px; padding: 4px 20px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 600; color: var(--ink); padding: 16px 0; list-style: none; position: relative; padding-right: 28px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 2px; top: 14px; font-size: 1.3rem; color: var(--accent); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding: 0 0 18px; margin: 0; }

/* Referenciák */
.references-hero { position: relative; overflow: hidden; padding-bottom: 46px; }
.references-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; width: 100%; margin-top: 30px;
}
.references-stats div {
  padding: 16px 18px; border: 1px solid rgba(232,153,30,.22); border-radius: 16px;
  background: rgba(255,255,255,.78); box-shadow: var(--shadow-sm);
}
.references-stats strong { display: block; font-family: "Sora","Inter",sans-serif; color: var(--accent); font-size: 1.9rem; line-height: 1; margin-bottom: 6px; }
.references-stats span { color: var(--muted); font-size: .84rem; font-weight: 700; line-height: 1.35; }
.references-section { padding-top: 0; }
.ref-list { display: grid; gap: 24px; }
.ref-card {
  position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 22px;
  box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.ref-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 4px;
  background: linear-gradient(90deg, var(--accent), #2267a4);
}
.ref-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(232,153,30,.32); }
.ref-top { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; padding: 30px 30px 4px; }
.ref-top h3 { font-size: 1.35rem; margin-top: 10px; }
.ref-lead { color: var(--muted); font-size: .94rem; margin-top: 8px; max-width: 540px; }
.ref-tag { display: inline-block; background: var(--accent-soft); color: var(--accent-strong); font-size: .76rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(232,153,30,.22); }
.ref-mini-flow { flex: 0 0 190px; display: flex; align-items: center; gap: 8px; padding-top: 9px; }
.ref-mini-flow span {
  width: 28px; height: 28px; border-radius: 10px; background: #fff; border: 1px solid rgba(20,24,33,.10);
  box-shadow: var(--shadow-sm);
}
.ref-mini-flow span:last-child { background: var(--accent); border-color: var(--accent); }
.ref-mini-flow i { flex: 1; height: 2px; border-radius: 999px; background: linear-gradient(90deg, rgba(232,153,30,.45), rgba(34,103,164,.28)); }
.ref-story { position: relative; padding: 24px 30px 18px; }
.ref-timeline {
  position: absolute; left: 52px; right: 52px; top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center;
  pointer-events: none;
}
.ref-timeline::before { content:""; position:absolute; left: 22px; right: 22px; top: 10px; height: 2px; background: linear-gradient(90deg, rgba(34,103,164,.28), rgba(232,153,30,.62)); }
.ref-timeline span {
  position: relative; z-index: 1; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 6px solid #2267a4; box-shadow: var(--shadow-sm);
}
.ref-timeline span:nth-child(2) { justify-self: center; border-color: var(--accent); }
.ref-timeline span:nth-child(3) { justify-self: end; border-color: var(--accent-strong); }
.ref-body { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr 1.15fr; gap: 14px; }
.ref-step {
  background: rgba(255,255,255,.94); border: 1px solid rgba(20,24,33,.08); border-radius: 16px; padding: 54px 22px 22px;
  box-shadow: var(--shadow-sm);
}
.ref-step:first-child {
  background:
    linear-gradient(180deg, rgba(247,248,250,.96), rgba(255,255,255,.92)),
    radial-gradient(220px 150px at 0% 0%, rgba(34,103,164,.10), transparent 64%);
  border-color: rgba(34,103,164,.14);
}
.ref-step small { display: block; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; color: var(--muted); font-weight: 800; margin-bottom: 9px; }
.ref-step p { color: var(--muted); font-size: .95rem; line-height: 1.62; }
.ref-step.highlight {
  background:
    linear-gradient(180deg, rgba(251,237,211,.96), rgba(255,248,235,.82)),
    radial-gradient(260px 170px at 100% 0%, rgba(232,153,30,.28), transparent 66%);
  border-color: rgba(232,153,30,.28);
}
.ref-step.highlight small { color: var(--accent-strong); }
.ref-step.highlight p { color: var(--charcoal); font-weight: 700; }
.ref-bottom {
  display: flex; align-items: center; gap: 10px; padding: 0 30px 28px; color: var(--muted);
  font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
}
.ref-bottom i { flex: 1; height: 1px; background: rgba(20,24,33,.10); }
.reference-note {
  display: flex; gap: 14px; align-items: flex-start; max-width: 860px; margin: 28px auto 0;
  padding: 16px 18px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-soft);
}
.reference-note strong { color: var(--accent-strong); font-size: .84rem; text-transform: uppercase; letter-spacing: .08em; }
.reference-note p { color: var(--muted); font-size: .88rem; line-height: 1.55; }

/* Blog */
.blog-card .ref-tag { margin-bottom: 14px; align-self: flex-start; }
.blog-meta { color: var(--muted); font-size: .84rem; margin-top: 16px; display: block; }
.news-box { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 20px; padding: 30px 32px; margin-top: 44px; }
.news-box h3 { font-size: 1.25rem; margin-bottom: 6px; }
.news-box p { color: var(--muted); }

/* Rólunk statisztika-sor */
.stat-row { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 40px; padding-top: 34px; border-top: 1px solid var(--border); }

/* Folyamat idővonal */
.timeline { display: grid; gap: 8px; }
.tl-item { display: flex; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--border); }
.tl-item:last-child { border-bottom: none; }
.tl-num { font-family: "Sora"; font-weight: 800; font-size: 2.2rem; color: var(--accent); flex: none; width: 64px; }
.tl-body h3 { font-size: 1.3rem; margin-bottom: 6px; }
.tl-short { color: var(--ink) !important; font-weight: 500; margin-bottom: 8px !important; }

/* Folyamat oldal */
.process-hero { position: relative; overflow: hidden; padding-bottom: 46px; }
.process-hero::after {
  content: ""; position: absolute; right: 8%; top: 42px; width: 360px; height: 220px; pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(232,153,30,.14) 38% 38.8%, transparent 38.8%),
    linear-gradient(58deg, transparent 0 62%, rgba(34,103,164,.10) 62% 62.8%, transparent 62.8%);
}
.process-hero .container { position: relative; z-index: 1; }
.process-hero-strip {
  display: flex; align-items: center; gap: 14px; width: 100%; margin-top: 32px;
  padding: 14px 16px; border: 1px solid rgba(232,153,30,.22); border-radius: 16px;
  background: rgba(255,255,255,.78); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px);
}
.process-hero-strip span {
  display: inline-flex; align-items: center; justify-content: center; min-height: 32px; padding: 7px 11px;
  border-radius: 999px; background: var(--accent-soft); color: var(--charcoal);
  font-size: .84rem; font-weight: 800; white-space: nowrap;
}
.process-hero-strip i { flex: 1 1 auto; height: 2px; min-width: 72px; border-radius: 999px; background: linear-gradient(90deg, var(--accent), #2267a4); opacity: .35; }
.process-section { padding-top: 16px; }
.process-layout { display: grid; grid-template-columns: 330px minmax(0, 1fr); gap: 34px; align-items: start; }
.process-panel {
  position: sticky; top: 96px; padding: 26px; border: 1px solid var(--border); border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.99)),
    radial-gradient(360px 220px at 0% 0%, rgba(232,153,30,.16), transparent 63%),
    radial-gradient(320px 200px at 100% 100%, rgba(34,103,164,.10), transparent 62%);
  box-shadow: var(--shadow);
}
.process-panel h2 { font-size: 1.55rem; margin-bottom: 10px; }
.process-panel p { color: var(--muted); font-size: .94rem; margin-bottom: 18px; }
.process-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.process-panel-grid div {
  padding: 14px; border-radius: 14px; background: rgba(251,237,211,.74);
  border: 1px solid rgba(232,153,30,.22);
}
.process-panel-grid strong { display: block; font-family: "Sora","Inter",sans-serif; color: var(--accent-strong); font-size: 1.8rem; line-height: 1; }
.process-panel-grid span { color: var(--charcoal); font-size: .78rem; font-weight: 700; }
.process-panel .btn { width: 100%; }
.process-timeline { position: relative; gap: 18px; }
.process-timeline::before {
  content: ""; position: absolute; left: 43px; top: 22px; bottom: 22px; width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(34,103,164,.34), var(--accent));
  opacity: .28;
}
.process-step-card {
  position: relative; display: grid; grid-template-columns: 86px minmax(0, 1fr); gap: 0;
  padding: 0; border: none; border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20,24,33,.09); overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.process-step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(232,153,30,.32); }
.process-step-card .tl-num {
  position: relative; z-index: 1; width: auto; min-height: 100%; display: grid; place-items: center;
  background: linear-gradient(180deg, var(--accent-soft), rgba(255,255,255,.86));
  border-right: 1px solid rgba(232,153,30,.20); font-size: 2rem;
}
.process-step-card .tl-body { padding: 24px 26px; }
.process-step-kicker {
  display: block; color: var(--accent-strong); text-transform: uppercase; letter-spacing: .1em;
  font-size: .72rem; font-weight: 800; margin-bottom: 8px;
}
.process-step-card .tl-body h3 { font-size: 1.35rem; margin-bottom: 7px; }
.process-step-card .tl-body p { color: var(--muted); line-height: 1.62; }
.process-proof-section { padding-top: 0; }
.process-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-proof {
  min-height: 180px; padding: 24px; border: 1px solid var(--border); border-radius: 18px;
  background: var(--surface); box-shadow: var(--shadow-sm);
}
.process-proof span {
  display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-strong); font-family: "Sora","Inter",sans-serif;
  font-weight: 800; margin-bottom: 16px;
}
.process-proof h3 { font-size: 1.12rem; margin-bottom: 8px; }
.process-proof p { color: var(--muted); font-size: .93rem; }

/* Rólunk oldal */
.about-hero { position: relative; overflow: hidden; padding-bottom: 54px; }
.about-hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) 380px; gap: 58px; align-items: center; }
.about-system-card {
  position: relative; min-height: 300px; border: 1px solid var(--border); border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.99)),
    radial-gradient(360px 220px at 8% 12%, rgba(232,153,30,.16), transparent 62%),
    radial-gradient(320px 220px at 100% 88%, rgba(34,103,164,.12), transparent 65%);
  box-shadow: var(--shadow); overflow: hidden;
}
.about-system-card::before {
  content: ""; position: absolute; inset: 24px; border-radius: 20px;
  background:
    linear-gradient(115deg, transparent 0 40%, rgba(232,153,30,.13) 40% 40.8%, transparent 40.8%),
    linear-gradient(55deg, transparent 0 58%, rgba(34,103,164,.11) 58% 58.8%, transparent 58.8%);
}
.system-node {
  position: absolute; z-index: 1; display: grid; place-items: center; min-width: 92px; height: 42px; padding: 0 13px;
  border-radius: 999px; background: #fff; border: 1px solid rgba(20,24,33,.10);
  box-shadow: var(--shadow-sm); color: var(--charcoal); font-size: .82rem; font-weight: 800;
}
.system-node.main {
  left: 50%; top: 50%; transform: translate(-50%, -50%); min-width: 116px; height: 52px;
  background: var(--accent); color: #fff; box-shadow: 0 18px 34px rgba(232,153,30,.25);
}
.node-a { left: 28px; top: 44px; }
.node-b { right: 30px; top: 58px; }
.node-c { left: 36px; bottom: 52px; }
.node-d { right: 42px; bottom: 42px; }
.system-line {
  position: absolute; height: 2px; width: 170px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(232,153,30,.55), rgba(34,103,164,.34));
}
.line-1 { left: 84px; top: 104px; transform: rotate(22deg); }
.line-2 { right: 86px; top: 120px; transform: rotate(142deg); }
.line-3 { left: 104px; bottom: 98px; transform: rotate(-18deg); }
.about-section { padding-top: 18px; }
.about-layout { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 34px; align-items: stretch; }
.about-story {
  height: 100%; padding: 34px; border: 1px solid var(--border); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: center;
}
.about-story h2 { font-size: clamp(1.7rem, 3vw, 2.25rem); margin-bottom: 16px; }
.about-story p { color: var(--muted); font-size: 1.02rem; line-height: 1.72; margin-top: 14px; }
.about-principles {
  height: 100%;
  border: 1px solid var(--border); border-radius: 22px; padding: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.99)),
    radial-gradient(340px 180px at 100% 0%, rgba(232,153,30,.15), transparent 65%);
  box-shadow: var(--shadow);
}
.about-principles h3 { font-size: 1.35rem; margin-bottom: 18px; }
.principle {
  display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 13px; padding: 16px 0;
  border-top: 1px solid var(--border);
}
.principle:first-of-type { border-top: none; padding-top: 0; }
.principle span {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px;
  background: var(--accent-soft); color: var(--accent-strong); font-family: "Sora","Inter",sans-serif; font-weight: 800;
}
.principle h4 { font-size: 1rem; margin-bottom: 4px; }
.principle p { color: var(--muted); font-size: .91rem; line-height: 1.5; }
.about-proof-section { padding-top: 0; }
.about-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.about-proof {
  padding: 26px; border: 1px solid var(--border); border-radius: 18px; background: var(--surface);
  box-shadow: var(--shadow-sm); min-height: 190px;
}
.about-proof strong { display: block; font-family: "Sora","Inter",sans-serif; color: var(--accent); font-size: 2.25rem; line-height: 1; margin-bottom: 8px; }
.about-proof span { display: block; color: var(--ink); font-weight: 800; margin-bottom: 10px; }
.about-proof p { color: var(--muted); font-size: .92rem; }

/* Jogi oldalak */
.legal-hero { position: relative; overflow: hidden; padding-bottom: 38px; }
.legal-hero::after {
  content: ""; position: absolute; right: 11%; top: 56px; width: 300px; height: 180px; pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(232,153,30,.12) 44% 44.8%, transparent 44.8%),
    linear-gradient(58deg, transparent 0 62%, rgba(34,103,164,.09) 62% 62.8%, transparent 62.8%);
}
.legal-hero .container { position: relative; z-index: 1; }
.legal-section { padding-top: 10px; }
.legal-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 34px; align-items: start; max-width: 1180px; }
.legal-sidebar {
  position: sticky; top: 96px; padding: 24px; border: 1px solid var(--border); border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.99)),
    radial-gradient(280px 180px at 0% 0%, rgba(232,153,30,.16), transparent 64%);
  box-shadow: var(--shadow-sm);
}
.legal-sidebar h2 { font-size: 1.28rem; margin: 8px 0 16px; }
.legal-sidebar ul { list-style: none; display: grid; gap: 10px; padding: 0; margin: 0 0 20px; }
.legal-sidebar li {
  display: flex; align-items: center; gap: 10px; padding: 10px 11px; border-radius: 12px;
  background: var(--bg-soft); border: 1px solid rgba(20,24,33,.07); color: var(--charcoal); font-size: .9rem; font-weight: 700;
}
.legal-sidebar li span {
  display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px;
  background: var(--accent-soft); color: var(--accent-strong); font-family: "Sora","Inter",sans-serif; font-size: .72rem; font-weight: 800;
}
.legal-sidebar .btn { width: 100%; }
.legal-document {
  max-width: none; padding: 34px 40px; border: 1px solid var(--border); border-radius: 22px;
  background: #fff; box-shadow: var(--shadow-sm);
}
.legal-document h2 {
  padding-top: 22px; margin-top: 26px; border-top: 1px solid var(--border);
  font-size: 1.32rem;
}
.legal-document h2:first-of-type { padding-top: 0; margin-top: 0; border-top: none; }
.legal-document p { max-width: 760px; }
.legal-note {
  position: relative; background: var(--accent-soft); border: 1px solid rgba(232,153,30,.28); border-radius: 14px;
  padding: 16px 18px 16px 48px; color: var(--charcoal); font-size: .9rem; margin-bottom: 30px; line-height: 1.55;
}
.legal-note::before {
  content: "!"; position: absolute; left: 16px; top: 16px; display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 8px; background: var(--accent); color: #fff;
  font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: .82rem;
}
.react-time { font-size: .88rem; color: var(--muted); margin-top: 22px; }

/* CTA gombsor + sötét háttéren lévő ghost gomb */
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-on-dark { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn-on-dark:hover { background: rgba(255,255,255,.16); }

/* Első egyeztetés deliverable szekció */
.deliverables { background: #fff; }
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 18px;
}
.deliverable {
  min-height: 220px; padding: 24px 22px; border: 1px solid var(--border); border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,248,250,.96)),
    linear-gradient(135deg, rgba(232,153,30,.16), rgba(34,103,164,.10));
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.deliverable::after {
  content:""; position:absolute; left:22px; right:22px; bottom:22px; height:3px; border-radius:99px;
  background: linear-gradient(90deg, var(--accent), #2267a4);
}
.deliverable-mark {
  display: inline-flex; align-items: center; gap: 8px; max-width: 100%;
  color: var(--accent-strong); font-size: .76rem; line-height: 1.2;
  font-family: "Inter",sans-serif; font-weight: 800; margin-bottom: 20px;
}
.deliverable-mark::before {
  content: ""; width: 8px; height: 8px; border-radius: 999px; flex: none;
  background: var(--accent); box-shadow: 0 0 0 5px rgba(232,153,30,.12);
}
.deliverable h3 { font-size: 1.08rem; margin-bottom: 8px; }
.deliverable p { color: var(--muted); font-size: .93rem; }

/* Új lábléc */
.foot-wrap { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; padding-bottom: 34px; }
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-col h5 { font-family: "Inter"; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); font-weight: 700; margin-bottom: 4px; }
.foot-col a { color: var(--muted); font-size: .92rem; transition: color .2s; }
.foot-col a:hover { color: var(--accent-strong); }
.foot-toggle { display: none; }
.foot-panel { display: flex; flex-direction: column; gap: 10px; }
.foot-tag { color: var(--muted); font-size: .92rem; max-width: 300px; margin-top: 6px; }
.foot-bottom { border-top: 1px solid var(--border); padding-top: 22px; }
.foot-bottom p { color: var(--muted); font-size: .88rem; }

@media (max-width: 900px) {
  /* Legördülő almenü mobilon: inline kibontás */
  .nav-links.open .has-dropdown {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .nav-links.open .drop-trigger {
    width: 100%;
  }
  .dropdown {
    position: static; left: auto; top: auto; transform: none; opacity: 1; visibility: visible;
    width: 100%; min-width: 0; box-shadow: none; border: none; background: transparent;
    padding: 4px 0 4px 14px; display: none;
  }
  .has-dropdown:hover .dropdown {
    transform: none;
  }
  .has-dropdown.open .dropdown { display: flex; }
  .has-dropdown.open .drop-trigger .caret { transform: rotate(180deg); }
  .dropdown::before { display: none; }
  .deliverable-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
  .deliverable { min-height: 0; }
  .feature-grid, .split, .ref-body { grid-template-columns: 1fr; }
  .foot-wrap { grid-template-columns: 1fr; gap: 22px; }
  .foot-accordion {
    gap: 0;
    border-top: 1px solid var(--border);
    padding-top: 0;
  }
  .foot-accordion h5 { display: none; }
  .foot-toggle {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--ink);
    cursor: pointer;
    font-family: "Inter";
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.2;
    text-align: left;
    text-transform: uppercase;
  }
  .foot-toggle .caret {
    flex: none;
    transition: transform .2s;
  }
  .foot-accordion.open .foot-toggle .caret {
    transform: rotate(180deg);
  }
  .foot-panel {
    display: none;
    gap: 12px;
    padding: 0 0 18px;
  }
  .foot-accordion.open .foot-panel { display: flex; }
  .foot-panel a { font-size: .96rem; }
}
@media (max-width: 560px) {
  .deliverable-grid { grid-template-columns: 1fr; }
  .deliverable { padding: 22px 20px 28px; }
  .subhero-head { flex-direction: column; gap: 14px; }
  .stat-row { gap: 28px; }
  .tl-item { gap: 14px; }
}

/* ===================================================================
   Ajánlatkalkulátor
   =================================================================== */
form.quote-grid { background: transparent; border: none; padding: 0; box-shadow: none; }
.quote-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 28px; align-items: start; }
.quote-groups { display: grid; gap: 22px; }
.quote-session {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px 20px; border: 1px solid rgba(232,153,30,.22); border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(232,153,30,.12), rgba(34,103,164,.08)),
    #fff;
  box-shadow: var(--shadow-sm);
}
.quote-session-kicker {
  display: block; color: var(--accent-strong); font-size: .74rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 5px;
}
.quote-session strong { display: block; font-family: "Sora","Inter",sans-serif; font-size: 1.08rem; line-height: 1.25; color: var(--ink); }
.quote-session p { color: var(--muted); font-size: .9rem; line-height: 1.55; margin-top: 5px; max-width: 620px; }
.session-meter { flex: 0 0 118px; text-align: right; }
.session-meter span { display: block; font-family: "Sora","Inter",sans-serif; font-weight: 800; color: var(--accent-strong); margin-bottom: 7px; }
.session-meter i, .profile-score i {
  display: block; width: 100%; height: 8px; border-radius: 999px; background: rgba(20,24,33,.08); overflow: hidden;
}
.session-meter b, .profile-score b {
  display: block; width: 0; height: 100%; border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #2267a4);
  transition: width .35s ease;
}
.qgroup { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.quote-context-card {
  background:
    linear-gradient(135deg, rgba(232,153,30,.12), rgba(34,103,164,.07)),
    #fff;
  border-color: rgba(232,153,30,.28);
}
.quote-context-card h3 { font-size: 1.14rem; margin-bottom: 4px; }
.module-focus-chips { margin-top: 12px; }
.qgroup-focused {
  border-color: rgba(232,153,30,.38);
  box-shadow: 0 14px 34px rgba(232,153,30,.10);
}
.qgroup-focused .qgroup-head h3::after {
  content: "ajánlott";
  display: inline-flex; align-items: center; min-height: 22px; margin-left: 9px; padding: 3px 8px;
  border-radius: 999px; background: var(--accent-soft); color: var(--accent-strong);
  font-family: "Inter"; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  vertical-align: middle;
}
.qgroup-muted {
  background: rgba(255,255,255,.72);
}
.qgroup-muted:not(.qgroup-focused) .qgroup-help,
.qgroup-muted:not(.qgroup-focused) .qitem-desc {
  color: #767d88;
}
.qgroup-hidden { display: none; }
.qgroup-head { display: flex; align-items: center; gap: 12px; }
.qgroup-head h3 { font-size: 1.16rem; }
.qbadge { font-size: .72rem; font-weight: 600; color: var(--accent-strong); background: var(--accent-soft); border: 1px solid rgba(232,153,30,.22); padding: 3px 10px; border-radius: 999px; }
.qgroup-help { color: var(--muted); font-size: .9rem; margin: 8px 0 4px; }

.qitem { display: flex; align-items: flex-start; gap: 14px; padding: 15px 16px; margin-top: 12px;
  border: 1px solid var(--border); border-radius: 13px; cursor: pointer; transition: border-color .2s, background .2s, box-shadow .2s; background: #fff; }
.qitem:hover { border-color: rgba(232,153,30,.45); }
.qitem.checked { border-color: var(--accent); background: var(--accent-soft); box-shadow: 0 0 0 3px rgba(232,153,30,.12); }
.qitem input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent-strong); flex: none; cursor: pointer; }
.qitem-main { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.qitem-name { font-weight: 600; color: var(--ink); font-size: .98rem; }
.qitem-desc { color: var(--muted); font-size: .87rem; line-height: 1.5; }
.qitem-price { font-weight: 700; color: var(--ink); white-space: nowrap; font-size: .96rem; font-family: "Sora","Inter",sans-serif; }
.qitem-price small { display: block; text-align: right; color: var(--muted); font-weight: 400; font-size: .72rem; }

.quote-summary { position: sticky; top: 96px; }
.qcard { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 22px; box-shadow: var(--shadow); }
.project-card {
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.98)),
    radial-gradient(420px 220px at 20% 0%, rgba(232,153,30,.18), transparent 60%),
    radial-gradient(360px 220px at 105% 18%, rgba(34,103,164,.12), transparent 65%);
}
.project-orbit {
  position: absolute; inset: 0; pointer-events: none; opacity: .75;
  background:
    linear-gradient(115deg, transparent 0 35%, rgba(232,153,30,.11) 35% 35.5%, transparent 35.5%),
    linear-gradient(55deg, transparent 0 56%, rgba(34,103,164,.10) 56% 56.5%, transparent 56.5%);
}
.project-orbit span {
  position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 6px rgba(232,153,30,.13);
}
.project-orbit span:nth-child(1) { left: 18%; top: 78px; }
.project-orbit span:nth-child(2) { right: 19%; top: 148px; background: #2267a4; box-shadow: 0 0 0 6px rgba(34,103,164,.12); }
.project-orbit span:nth-child(3) { left: 42%; bottom: 76px; }
.project-card > *:not(.project-orbit) { position: relative; z-index: 1; }
.qtotal { text-align: center; padding: 8px 0 16px; border-bottom: 1px solid var(--border); }
.qtotal-label { display: block; color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.qtotal .amount { display: block; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--accent-strong); margin: 6px 0 2px; line-height: 1.1; }
.qtotal .qmeta { color: var(--muted); font-size: .86rem; }
.qlist { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 8px; max-height: 240px; overflow: auto; }
.qlist li { display: flex; justify-content: space-between; gap: 12px; font-size: .88rem; color: var(--muted); }
.qlist li b { color: var(--ink); white-space: nowrap; font-weight: 600; }

.qform { margin-top: 18px; padding-top: 4px; }
.qform-title { font-weight: 600; color: var(--ink); margin-bottom: 10px; font-size: .95rem; }
.qcard .field { margin-bottom: 10px; }
.qcard form, .qcard .field { box-shadow: none; }
.qcard input, .qcard textarea { width: 100%; padding: 11px 13px; background: #fff; border: 1px solid var(--border); border-radius: 10px; color: var(--ink); font-family: inherit; font-size: .92rem; }
.qcard textarea { resize: vertical; min-height: 52px; }
.qcard input:focus, .qcard textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,153,30,.15); }
.qdisc { color: var(--muted); font-size: .76rem; text-align: center; margin-top: 10px; }

/* Rejtett ár: a jelölőnégyzet a sor jobb szélén jelenik meg */
.qitem input { position: absolute; opacity: 0; width: 0; height: 0; }
.qitem-check { flex: none; width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--border);
  margin-top: 2px; position: relative; transition: background .2s, border-color .2s; }
.qitem.checked .qitem-check { background: var(--accent-strong); border-color: var(--accent-strong); }
.qitem.checked .qitem-check::after { content: ""; position: absolute; left: 7px; top: 3px; width: 6px; height: 11px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* Rejtett ár teaser + zárt lakat */
.qgate { text-align: center; padding: 6px 0 16px; border-bottom: 1px solid var(--border); }
.qgate-ic { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent-soft); border: 1px solid rgba(232,153,30,.22); color: var(--accent-strong); margin-bottom: 8px; }
.amount-hidden { display: block; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 2rem;
  color: var(--accent-strong); letter-spacing: .06em; line-height: 1.1; }
.qmeta { color: var(--muted); font-size: .86rem; }
.qlist li b { color: var(--accent-strong); }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

/* Varázsló: lépésjelző */
.wizard-progress {
  display: flex; align-items: flex-start; gap: 8px; min-height: 58px; margin-bottom: 22px;
  overflow: visible; padding: 0 0 6px;
}
.wstep-dot { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--surface-2); color: var(--muted); font-weight: 700; font-size: .9rem; position: relative; flex: none; border: 1px solid var(--border); }
.wstep-dot i { position: absolute; top: 36px; left: 50%; transform: translateX(-50%); font-style: normal; font-size: .74rem; color: var(--muted); white-space: nowrap; font-weight: 500; }
.wstep-dot.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.wstep-dot.active i { color: var(--ink); }
.wstep-dot.done { background: var(--accent-soft); color: var(--accent-strong); border-color: rgba(232,153,30,.3); }
.wstep-line { flex: 1; height: 2px; background: var(--border); margin-top: 14px; }
.wizard-progress { margin-bottom: 24px; }

/* Varázsló: mezők és navigáció */
.wstep[hidden] { display: none; }
.wlabel { display: block; font-size: .9rem; font-weight: 600; color: var(--ink); margin: 16px 0 7px; }
.wstep input[type="text"], .wstep input[type="email"], .wstep textarea, .wstep select {
  width: 100%; padding: 12px 14px; background: #fff; border: 1px solid var(--border); border-radius: 11px;
  color: var(--ink); font-family: inherit; font-size: .95rem; transition: border-color .2s, box-shadow .2s; }
.wstep textarea { resize: vertical; min-height: 72px; }
.wstep input:focus, .wstep textarea:focus, .wstep select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,153,30,.15); }
.wrow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wcheck span { font-size: .95rem; color: var(--ink); }
.wnav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 22px; }

/* Rejtett ár: jelölő a sor jobb szélén */
.qitem input { position: absolute; opacity: 0; width: 0; height: 0; }
.qitem-check { flex: none; width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--border);
  margin-top: 2px; position: relative; transition: background .2s, border-color .2s; }
.qitem.checked .qitem-check { background: var(--accent-strong); border-color: var(--accent-strong); }
.qitem.checked .qitem-check::after { content: ""; position: absolute; left: 7px; top: 3px; width: 6px; height: 11px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* Ártartomány teaser a jobb panelen */
.qgate { text-align: center; padding: 6px 0 16px; border-bottom: 1px solid var(--border); }
.amount-hidden { display: block; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 1.7rem;
  color: var(--accent-strong); line-height: 1.15; margin: 4px 0 2px; }
.qtotal-label { display: block; color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.qmeta { color: var(--muted); font-size: .86rem; }
.qlist { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 8px; max-height: 260px; overflow: auto; }
.qlist li { display: flex; justify-content: space-between; gap: 12px; font-size: .88rem; color: var(--muted); }
.qlist li b { color: var(--accent-strong); white-space: nowrap; }
.qdisc { color: var(--muted); font-size: .78rem; margin-top: 12px; line-height: 1.5; }
.qdisc a { color: var(--accent-strong); text-decoration: underline; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

/* Felfedett eredmény-kártya */
.result-card { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 40px; box-shadow: var(--shadow); max-width: 720px; margin: 0 auto; text-align: center; }
.result-badge { display: inline-block; background: var(--accent-soft); color: var(--accent-strong); font-weight: 600; font-size: .82rem; padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(232,153,30,.22); }
.result-amount { font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: clamp(2.2rem,6vw,3rem); color: var(--accent-strong); margin: 16px 0 6px; }
.result-meta { color: var(--muted); margin-bottom: 22px; }
.result-list { max-width: 460px; margin: 0 auto 20px; text-align: left; max-height: none; }
.result-list li b { color: var(--ink); }
.result-note { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px; color: var(--charcoal); font-size: .92rem; margin-bottom: 22px; text-align: left; }
.result-experience {
  display: grid; grid-template-columns: minmax(0, 1.35fr) 360px; gap: 22px; align-items: stretch;
  max-width: 1080px; margin: 0 auto;
}
.result-main, .result-side {
  border: 1px solid var(--border); border-radius: 24px; background: #fff; box-shadow: var(--shadow); overflow: hidden;
}
.result-main {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.99)),
    radial-gradient(520px 260px at 100% 0%, rgba(232,153,30,.18), transparent 64%);
}
.result-main h2 { font-size: clamp(1.85rem, 4vw, 3rem); max-width: 620px; margin: 14px 0 12px; }
.result-intro { color: var(--muted); font-size: 1.02rem; line-height: 1.65; max-width: 660px; }
.result-price-panel {
  margin: 24px 0; padding: 22px; border-radius: 18px; border: 1px solid rgba(232,153,30,.26);
  background: linear-gradient(135deg, rgba(251,237,211,.82), rgba(255,255,255,.88));
}
.result-price-panel span { display: block; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.result-price-panel strong { display: block; font-family: "Sora","Inter",sans-serif; font-size: clamp(1.9rem, 5vw, 3rem); color: var(--accent-strong); line-height: 1.08; margin: 7px 0 4px; }
.result-price-panel small { color: var(--muted); font-weight: 700; }
.result-next-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.result-next-grid div {
  min-height: 164px; padding: 17px; border: 1px solid rgba(20,24,33,.08); border-radius: 16px; background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
}
.result-next-grid span { color: var(--accent-strong); font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: .85rem; }
.result-next-grid b { display: block; color: var(--ink); line-height: 1.3; margin: 8px 0 7px; }
.result-next-grid p { color: var(--muted); font-size: .88rem; line-height: 1.5; }
.result-actions { justify-content: flex-start; margin-top: 24px; }
.result-side { padding: 24px; align-self: stretch; }
.result-side .result-list { max-width: none; margin: 14px 0 18px; }
.result-checklist {
  padding: 16px; border-radius: 15px; background: var(--ink); color: #fff; margin-top: 14px;
}
.result-checklist span { display: block; color: var(--accent); font-weight: 800; margin-bottom: 6px; }
.result-checklist p { color: rgba(255,255,255,.76); font-size: .9rem; line-height: 1.55; margin: 0; }

@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; }
  .quote-summary { position: static; order: -1; }
  .wrow { grid-template-columns: 1fr; }
  .result-card { padding: 28px 20px; }
  .quote-session { flex-direction: column; align-items: stretch; }
  .session-meter { flex-basis: auto; text-align: left; }
}

/* Diagnosztikai projekttervező */
.quote-hero { padding-bottom: 28px; }
.quote-section { padding-top: 18px; }
.quote-wizard .qgroup { border-radius: 14px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 16px; }
.choice-grid.compact { grid-template-columns: 1fr; }
.choice-card {
  display: flex; align-items: center; gap: 12px; min-height: 58px; padding: 14px 15px;
  border: 1px solid var(--border); border-radius: 12px; background: #fff; cursor: pointer;
  color: var(--ink); font-weight: 600; font-size: .94rem;
  transition: border-color .2s, background .2s, box-shadow .2s, transform .2s;
}
.choice-card:hover { border-color: rgba(232,153,30,.45); transform: translateY(-1px); }
.choice-card.checked { border-color: var(--accent); background: var(--accent-soft); box-shadow: 0 0 0 3px rgba(232,153,30,.12); }
.choice-card input { width: 18px; height: 18px; accent-color: var(--accent-strong); flex: none; }
.choice-card span { line-height: 1.35; }
.project-card .profile-block { padding-top: 14px; }
.project-card .profile-block + .profile-block { border-top: 1px solid var(--border); margin-top: 14px; }
.project-card h4 {
  font-family: "Inter"; font-size: .78rem; text-transform: uppercase; letter-spacing: .09em;
  color: var(--muted); margin-bottom: 8px;
}
.profile-score {
  margin-top: 15px; padding: 13px 14px; border: 1px solid rgba(20,24,33,.08);
  border-radius: 14px; background: rgba(247,248,250,.74);
}
.profile-score div { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.profile-score span { color: var(--muted); font-size: .82rem; font-weight: 600; }
.profile-score strong { font-family: "Sora","Inter",sans-serif; color: var(--accent-strong); font-size: 1.05rem; }
.profile-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.profile-chips span {
  display: inline-flex; align-items: center; min-height: 30px; padding: 6px 10px; border-radius: 999px;
  background: #fff; border: 1px solid rgba(232,153,30,.24); color: var(--charcoal);
  font-size: .78rem; font-weight: 700; box-shadow: var(--shadow-sm);
}
.profile-roadmap { list-style: none; display: grid; gap: 9px; margin: 10px 0 0; padding: 0; }
.profile-roadmap li {
  display: flex; align-items: center; gap: 10px; padding: 10px 11px;
  border: 1px solid rgba(20,24,33,.08); border-radius: 12px; background: rgba(255,255,255,.74);
  color: var(--muted); font-size: .86rem;
}
.profile-roadmap li span {
  flex: none; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px;
  background: var(--surface-2); color: var(--muted); font-family: "Sora","Inter",sans-serif; font-size: .72rem; font-weight: 800;
}
.profile-roadmap li b { color: inherit; font-weight: 700; line-height: 1.25; }
.profile-roadmap li.active { border-color: rgba(232,153,30,.28); background: rgba(251,237,211,.62); color: var(--ink); }
.profile-roadmap li.active span { background: var(--accent); color: #fff; }
.profile-list li { align-items: flex-start; }
.profile-list li b { max-width: 58%; text-align: right; white-space: normal; color: var(--ink); }
.profile-advice {
  margin: 0; color: var(--charcoal); font-size: .88rem; line-height: 1.55;
  padding: 12px 13px; border-radius: 12px; background: rgba(251,237,211,.55);
  border: 1px solid rgba(232,153,30,.20);
}
.inline-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; margin-top: 26px; color: var(--ink); }
.inline-check input { width: auto; margin-top: 4px; accent-color: var(--accent-strong); flex: none; }
.inline-check span { font-size: .95rem; line-height: 1.45; }
.consent-check { margin-top: 16px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 12px; background: var(--bg-soft); }
.wizard-progress .wstep-line { min-width: 28px; }

@media (max-width: 900px) {
  .choice-grid { grid-template-columns: 1fr; }
  .wizard-progress { gap: 6px; min-height: 58px; overflow-x: auto; overflow-y: hidden; }
  .wstep-dot { width: 28px; height: 28px; font-size: .82rem; }
  .wstep-dot i { font-size: .68rem; }
}

@media (max-width: 680px) {
  .quote-grid { gap: 18px; }
  .quote-groups { gap: 18px; }
  .quote-summary { order: 0; }
  .project-card .qlist { max-height: none; }
  .project-card { border-radius: 16px; }
  .quote-session { padding: 16px; border-radius: 15px; }
  .quote-session strong { font-size: 1rem; }
  .quote-session p { font-size: .86rem; }
  .profile-score { padding: 12px; }
  .profile-roadmap li { align-items: flex-start; }
  .wizard-progress {
    margin: -2px -16px 24px;
    padding: 2px 16px 26px;
    scroll-snap-type: x proximity;
    min-height: 60px;
  }
  .wstep-dot { scroll-snap-align: center; }
  .wstep-line { min-width: 22px; }
  .qgroup-head { align-items: flex-start; flex-wrap: wrap; }
  .qbadge { margin-top: 2px; }
  .qitem { gap: 12px; padding: 14px; }
  .qitem-check { width: 22px; height: 22px; }
  .qitem.checked .qitem-check::after { left: 6px; top: 2px; }
  .choice-card { min-height: 54px; padding: 13px 14px; }
  .amount-hidden { font-size: 1.35rem; }
  .profile-list li, .qlist li { flex-direction: column; gap: 2px; }
  .profile-list li b, .qlist li b { max-width: none; text-align: left; white-space: normal; }
  .inline-check { margin-top: 18px; }
  .wnav { flex-direction: column-reverse; }
  .wnav span { display: none; }
  .result-list li { flex-direction: row; }
}

/* Végső mobil finomhangolás az új UX komponensekhez */
@media (max-width: 900px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .hero {
    padding: 46px 0 34px;
    background-image: linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.84)), url('../hero_background.jpg');
  }
  .hero-map,
  .hero-stats,
  .service-visual {
    display: none;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
    margin-bottom: 16px;
  }
  .hero h1 br {
    display: none;
  }
  .hero p.lead {
    max-width: 38rem;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.58;
  }
  .mini-audit-copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .mini-audit-copy .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }
  .mini-audit-copy p {
    max-width: none;
  }
  .mini-audit-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .audit-question,
  .audit-question:nth-of-type(3),
  .audit-result {
    grid-column: auto;
    grid-row: auto;
  }
  .audit-result {
    min-height: 0;
    padding: 20px;
  }
  .audit-result .cta-actions {
    margin-top: 0;
  }
  section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .section-head {
    margin-bottom: 28px;
  }
  .section-head p {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.58;
  }
  .solution-detail-grid, .solution-content-layout { grid-template-columns: 1fr; }
  .solution-detail-grid > *, .solution-content-layout > *, .result-experience > * { min-width: 0; }
  .solution-hero-copy { min-height: 0; }
  .solution-hero-card { height: auto; }
  .solution-hero-card, .solution-problem, .feature, .split-box, .faq details {
    width: 100%; max-width: calc(100vw - 32px); margin-left: 0; margin-right: 0;
  }
  .about-hero { padding: 46px 0 28px; }
  .about-hero-grid, .about-layout, .about-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about-hero-grid > *, .about-layout > *, .about-proof-grid > * {
    min-width: 0;
  }
  .about-hero h1 {
    max-width: 11ch;
    font-size: clamp(2rem, 10vw, 2.55rem);
  }
  .about-hero .lead {
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.68;
  }
  .about-system-card {
    display: none;
  }
  .about-story, .about-principles, .about-proof {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .process-hero {
    padding: 46px 0 28px;
  }
  .process-hero::after,
  .process-hero-strip {
    display: none;
  }
  .process-layout,
  .process-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .process-layout > *,
  .process-proof-grid > * {
    min-width: 0;
  }
  .process-panel {
    position: static;
    padding: 22px 18px;
    border-radius: 16px;
  }
  .process-panel .btn-primary {
    display: none;
  }
  .process-panel-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-timeline {
    gap: 14px;
  }
  .process-timeline::before {
    display: none;
  }
  .process-step-card {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .process-step-card .tl-num {
    width: 100%;
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid rgba(232,153,30,.20);
    justify-content: flex-start;
    padding: 0 18px;
    font-size: 1.35rem;
  }
  .process-step-card .tl-body {
    padding: 20px 18px;
  }
  .process-proof {
    min-height: 0;
    padding: 22px 18px;
    border-radius: 16px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .blog-card {
    min-height: 0;
    padding: 24px 20px;
  }
  .blog-meta {
    margin-top: 14px;
  }
  .contact-hero {
    padding: 46px 0 28px;
  }
  .contact-grid,
  .contact-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .contact-grid > *,
  .contact-premium > * {
    min-width: 0;
  }
  .contact-form,
  .contact-panel {
    width: 100%;
    max-width: calc(100vw - 32px);
    margin-left: 0;
    margin-right: 0;
    padding: 22px 18px;
    border-radius: 16px;
  }
  .contact-panel {
    position: static;
  }
  .contact-form::before {
    left: 18px;
    right: 18px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
  }
  .contact-chip-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .contact-chip-grid label,
  .contact-chip-grid span {
    width: 100%;
  }
  .contact-chip-grid span {
    justify-content: center;
    text-align: center;
    border-radius: 12px;
  }
  .contact-actions .contact-item {
    align-items: flex-start;
    padding: 12px;
  }
  .contact-item .v {
    overflow-wrap: anywhere;
  }
  .contact-route li {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 11px;
  }
  .contact-trust {
    grid-template-columns: 1fr;
  }
  body:has(.contact-section) {
    padding-bottom: 0;
  }
  body:has(.contact-section) .mobile-sticky-cta {
    display: none;
  }
  .quote-hero {
    padding: 46px 0 28px;
  }
  .quote-grid,
  .quote-wizard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .quote-grid > *,
  .quote-wizard > * {
    min-width: 0;
  }
  .quote-groups {
    order: 1;
    gap: 18px;
  }
  .quote-summary {
    position: static;
    order: 2;
  }
  .quote-session,
  .qgroup,
  .qcard,
  .project-card {
    width: 100%;
    max-width: calc(100vw - 32px);
    margin-left: 0;
    margin-right: 0;
    border-radius: 16px;
  }
  .project-card {
    padding: 22px 18px;
  }
  .project-orbit {
    display: none;
  }
  .wizard-progress {
    margin: -2px -16px 24px;
    padding: 2px 16px 26px;
    gap: 6px;
    min-height: 60px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
  }
  .wstep-dot {
    width: 28px;
    height: 28px;
    font-size: .82rem;
    scroll-snap-align: center;
  }
  .wstep-dot i {
    font-size: .68rem;
  }
  .wstep-line {
    min-width: 22px;
  }
  .qitem {
    gap: 12px;
  }
  .qitem-main {
    min-width: 0;
  }
  body:has(.quote-section) {
    padding-bottom: 0;
  }
  body:has(.quote-section) .mobile-sticky-cta {
    display: none;
  }
  body:has(.blog-grid),
  body:has(.article),
  body:has(.legal-section) {
    padding-bottom: 0;
  }
  body:has(.blog-grid) .mobile-sticky-cta,
  body:has(.article) .mobile-sticky-cta,
  body:has(.legal-section) .mobile-sticky-cta {
    display: none;
  }
  .center-cta {
    margin-top: 24px;
  }
  .cta-box {
    padding: 30px 18px;
  }
  .cta-box p {
    margin-bottom: 20px;
  }
  .card,
  .feature,
  .split-box,
  .deliverable,
  .step {
    min-height: 0;
  }
  .solution-pathway, .result-experience, .result-next-grid { grid-template-columns: 1fr; }
  .path-card, .result-next-grid div { min-height: 0; }
  .ref-story { padding: 20px; }
  .ref-timeline { display: none; }
  .ref-mini-flow, .ref-bottom { display: none; }
  .ref-step { padding-top: 22px; }
}

@media (max-width: 680px) {
  .hero {
    padding: 42px 0 30px;
  }
  .hero p.lead {
    font-size: .96rem;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .section-head {
    margin-bottom: 24px;
  }
  .result-main, .result-side, .solution-hero-card { border-radius: 18px; }
  .result-main, .result-side { padding: 22px 18px; }
  .result-price-panel { padding: 18px; }
  .result-actions { align-items: stretch; }
  .result-actions .btn { width: 100%; }
  .ref-mini-flow, .ref-timeline, .ref-bottom { display: none; }
  .mini-audit-copy, .mini-audit-panel { grid-template-columns: 1fr; }
  .audit-question, .audit-result { grid-column: 1; grid-row: auto; }
  .audit-result { display: grid; }
  .audit-result .cta-actions { margin-top: 4px; }
}
