/* =========================================================
   Solutionflow — egyoldalas weboldal
   Sötét téma, letisztult, modern
   ========================================================= */

:root {
  /* Márka színek — ColorHunt: 213555 / 3E5879 / D8C4B6 / F5EFE7 */
  --bg:            #101B30;   /* mély navy */
  --bg-alt:        #16233B;   /* sötét navy szekció */
  --surface:       #213555;   /* márka navy */
  --surface-2:     #294066;
  --border:        #3E5879;   /* márka kék */
  --border-soft:   #2A3E5C;

  --text:          #F5EFE7;   /* márka krém */
  --muted:         #B8C2D2;   /* halvány kékes-krém */
  --muted-2:       #8493A8;

  --brand:         #D8C4B6;   /* márka bézs (fő akcent) */
  --brand-2:       #E7D8CA;   /* világosabb bézs */
  --brand-blue:    #6E8CB4;   /* világosabb kék (linkek, kiegészítő) */
  --brand-soft:    rgba(216, 196, 182, 0.14);

  --grad:          linear-gradient(120deg, #D8C4B6 0%, #E7D8CA 100%);
  --grad-blue:     linear-gradient(120deg, #3E5879 0%, #6E8CB4 100%);

  /* Méretek */
  --maxw: 1140px;
  --radius: 16px;
  --radius-sm: 10px;

  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 0 1px rgba(216, 196, 182, 0.22), 0 20px 60px -20px rgba(216, 196, 182, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / alap ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, "Noto Sans", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-2); }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Gombok ---------- */
.btn {
  --pad-y: .7rem; --pad-x: 1.25rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-weight: 600; font-size: .98rem;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn--lg { --pad-y: .95rem; --pad-x: 1.7rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--grad);
  color: #16233B;
  box-shadow: 0 10px 30px -12px rgba(216, 196, 182, 0.55);
}
.btn--primary:hover { transform: translateY(-2px); color: #16233B; box-shadow: 0 16px 38px -12px rgba(216, 196, 182, 0.7); }

.btn--ghost {
  background: transparent; color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--text); transform: translateY(-2px); }

/* ---------- Navigáció ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(16, 27, 48, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--border-soft); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 70px; }

.brand { display: inline-flex; align-items: center; gap: .55rem; color: var(--text); font-weight: 600; }
.brand:hover { color: var(--text); }
.brand__mark { display: grid; place-items: center; }
.brand__text { font-size: 1.15rem; letter-spacing: -0.01em; }
.brand__text strong { color: var(--brand); font-weight: 700; }

.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { color: var(--muted); font-size: .95rem; font-weight: 500; }
.nav__links a:hover { color: var(--text); }

.nav__cta { margin-left: 4px; }

/* Mobil menü gomb */
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 8px 24px 24px;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(16, 27, 48, 0.96);
}
.nav__mobile a { color: var(--muted); padding: 12px 0; font-weight: 500; border-bottom: 1px solid var(--border-soft); }
.nav__mobile a:last-child { border: 0; margin-top: 12px; color: #04121f; }
.nav.is-open .nav__mobile { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(64px, 12vw, 130px) 0 clamp(56px, 9vw, 100px);
  border-bottom: 1px solid var(--border-soft);
}
.hero__glow {
  position: absolute; inset: -20% 0 auto 50%; transform: translateX(-50%);
  width: 900px; height: 700px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(216,196,182,0.13), transparent 70%),
              radial-gradient(closest-side, rgba(62,88,121,0.30), transparent 70%);
  background-position: 30% 30%, 70% 40%;
  filter: blur(10px);
}
.hero__watermark {
  position: absolute; top: 50%; right: -60px; transform: translateY(-50%);
  width: min(46vw, 560px); opacity: 0.05; pointer-events: none; z-index: 0;
}
.hero__inner { position: relative; z-index: 1; max-width: 860px; }
.brand__mark { display: block; }

.eyebrow {
  display: inline-block;
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 1.2rem;
  padding: .35rem .8rem; border: 1px solid var(--border); border-radius: 999px;
  background: var(--brand-soft);
}
.hero__title { margin-bottom: 1.3rem; }
.hero__lead { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: #C6D2E2; max-width: 720px; }
.hero__note { color: var(--muted); max-width: 700px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 2rem 0 2.4rem; }

.hero__pills { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__pills li {
  font-size: .9rem; color: var(--muted);
  padding: .5rem 1rem; border: 1px solid var(--border-soft); border-radius: 999px;
  background: var(--surface);
}

/* ---------- Szekciók ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }

.section__head { max-width: 760px; margin-bottom: 3rem; }
.kicker { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 1rem; }
.section__sub { color: var(--muted); font-size: 1.1rem; margin-top: .3rem; }
.section__sub em { color: #C6D2E2; font-style: normal; }
.section__outro { max-width: 800px; margin-top: 2.5rem; color: var(--muted); font-size: 1.05rem; }
.section__outro strong { color: var(--text); }

/* ---------- Grid rendszer ---------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--pain { grid-template-columns: repeat(3, 1fr); }

/* ---------- Fájdalompontok ---------- */
.pain {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 1.5rem;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.pain:hover { transform: translateY(-4px); border-color: var(--border); background: var(--surface-2); }
.pain__icon { font-size: 1.6rem; display: block; margin-bottom: .8rem; }
.pain p { margin: 0; color: #C6D2E2; font-size: .98rem; }

/* ---------- Kártyák ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 1.7rem;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--brand); }
.card h3 { color: var(--text); }
.card p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ---------- Flow (modell lépések) ---------- */
.flow {
  list-style: none; margin: 0 0 3rem; padding: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  position: relative; flex-wrap: wrap;
}
.flow::before {
  content: ""; position: absolute; left: 4%; right: 4%; top: 22px; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  opacity: .4; z-index: 0;
}
.flow__step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .6rem; flex: 1; min-width: 90px; text-align: center; }
.flow__dot {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700;
  background: var(--surface); border: 2px solid var(--brand); color: var(--text);
  box-shadow: 0 0 0 6px var(--bg);
}
.flow__label { font-size: .88rem; color: var(--muted); font-weight: 500; }

.modell__cards { margin-top: 1rem; }

/* ---------- Lépcsők (részletes) ---------- */
.steps { display: flex; flex-direction: column; gap: 20px; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 132px 1fr; gap: 32px;
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  position: relative; overflow: hidden;
}
.step::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad); opacity: 0; transition: opacity .3s var(--ease);
}
.step:hover { border-color: var(--border); }
.step:hover::before { opacity: 1; }

.step__num { position: relative; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.step__num span {
  font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .95;
}
/* Világos illusztrációs kártya (média badge) */
.step__badge {
  width: 132px; height: 132px; border-radius: 22px;
  background: radial-gradient(120% 120% at 30% 20%, #FBF7F1 0%, #EFE6DA 100%);
  display: grid; place-items: center; padding: 18px;
  box-shadow: inset 0 0 0 1px rgba(216,196,182,0.5), 0 12px 26px -14px rgba(0,0,0,0.5);
}
.step__badge img { width: 100%; height: 100%; object-fit: contain; }
.step__title { font-size: 1.45rem; color: var(--text); margin-bottom: .35rem; }
.step__tag { font-size: 1.12rem; color: var(--brand); font-weight: 600; margin-bottom: 1rem; letter-spacing: -0.01em; }
.step__intro { color: var(--muted); }
.step__label { font-weight: 600; color: var(--text); margin: 1.2rem 0 .7rem; font-size: .95rem; }
.step__how { margin-top: 1.2rem; color: var(--muted); font-size: .97rem; padding-top: 1.1rem; border-top: 1px solid var(--border-soft); }
.step__how strong { color: var(--text); }

/* Pipás lista */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.ticks li { position: relative; padding-left: 1.9rem; color: #C6D2E2; font-size: .97rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .18em;
  width: 1.2rem; height: 1.2rem; border-radius: 50%;
  background: var(--brand-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D8C4B6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ---------- Világos illusztrációs kártya + kétoszlopos elrendezés ---------- */
.figure-card {
  border-radius: var(--radius);
  background: radial-gradient(120% 120% at 30% 15%, #FBF7F1 0%, #EFE6DA 100%);
  box-shadow: inset 0 0 0 1px rgba(216,196,182,0.5), var(--shadow);
  padding: clamp(24px, 4vw, 44px);
  display: grid; place-items: center;
}
.figure-card img { width: 100%; max-width: 300px; height: auto; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split--reverse .split__visual { order: -1; }
.split--intro { margin-bottom: 3rem; }
.split__text .section__head { margin-bottom: 1.6rem; }

/* ---------- Miért egy kézből ---------- */
.why__item {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 2rem;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.why__item:hover { transform: translateY(-4px); border-color: var(--brand); }
.why__idx { font-size: .85rem; font-weight: 700; color: var(--brand); letter-spacing: .1em; }
.why__item h3 { margin: .6rem 0 .5rem; color: var(--text); }
.why__item p { margin: 0; color: var(--muted); }

/* ---------- Rólunk — bemutatkozó kártyák ---------- */
.person {
  display: grid; grid-template-columns: 96px 1fr; gap: 24px; align-items: start;
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 1.8rem;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.person:hover { transform: translateY(-4px); border-color: var(--brand); }
.person__photo {
  width: 96px; height: 96px; border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(216,196,182,0.45), 0 10px 22px -12px rgba(0,0,0,0.6);
}
.person__name { font-size: 1.25rem; color: var(--text); margin-bottom: .2rem; }
.person__role {
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); margin-bottom: .6rem;
}
.person__years { color: var(--muted); font-size: .95rem; margin-bottom: .8rem; }
.person__years strong { color: var(--text); }
.person__bio { color: var(--muted); font-size: .97rem; }
.person__facts { margin-top: 1rem; }
.person__facts li { font-size: .93rem; }
.person__facts strong { color: var(--text); }

/* Egységes kártyamagasság — a hosszabb tartalom levágva, nyíllal lenyitható */
.person__content { position: relative; transition: max-height .35s var(--ease); }
.person__content.is-clamped { overflow: hidden; }
.person__content.is-clamped::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 80px;
  background: linear-gradient(to bottom, rgba(33, 53, 85, 0) 0%, var(--surface) 90%);
  pointer-events: none;
}

.person__toggle {
  margin-top: .9rem; padding: .45rem .9rem;
  display: inline-flex; align-items: center; gap: .45rem;
  background: transparent; border: 1px solid var(--border); border-radius: 999px;
  color: var(--brand); font: inherit; font-size: .87rem; font-weight: 600; cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.person__toggle[hidden] { display: none; }
.person__toggle::after { content: "▾"; font-size: .85em; transition: transform .3s var(--ease); }
.person__toggle:hover { color: var(--text); border-color: var(--brand); background: var(--brand-soft); }
.person.is-open .person__toggle::after { transform: rotate(180deg); }

.person__more-body { padding-top: 1rem; }
.person__more-body h4 {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-2); margin: 1.3rem 0 .6rem;
}
.person__more-body h4:first-child { margin-top: 0; }
.person__more-body > p { color: var(--text); font-size: .95rem; font-weight: 600; margin: .9rem 0 .35rem; }
.person__more-body > p:first-of-type { margin-top: 0; }

.dashes { list-style: none; margin: 0 0 .3rem; padding: 0; display: grid; gap: .45rem; }
.dashes li { position: relative; padding-left: 1rem; color: var(--muted); font-size: .93rem; }
.dashes li::before {
  content: ""; position: absolute; left: 0; top: .68em;
  width: 7px; height: 1px; background: var(--brand); opacity: .8;
}
.dashes li strong { color: var(--text); font-weight: 600; }

.person__para { color: var(--muted); font-size: .93rem; font-weight: 400 !important; margin: 0 0 .8rem !important; }
.person__para:last-child { margin-bottom: 0 !important; }

/* ---------- Záró CTA + űrlap ---------- */
.cta { position: relative; overflow: hidden; }
.cta__glow {
  position: absolute; top: -10%; right: -10%; width: 700px; height: 700px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(216,196,182,0.14), transparent 70%);
  filter: blur(20px);
}
.cta__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.cta__text h2 { margin-bottom: 1rem; }
.cta__text p { color: var(--muted); max-width: 520px; }
.cta__text strong { color: var(--text); }

.cta__gauge {
  margin: 1.6rem 0 1.8rem; padding: 22px 28px; max-width: 380px;
  border-radius: var(--radius);
  background: radial-gradient(120% 120% at 30% 15%, #FBF7F1 0%, #EFE6DA 100%);
  box-shadow: inset 0 0 0 1px rgba(216,196,182,0.5), var(--shadow);
}
.cta__gauge img { width: 100%; height: auto; display: block; }

.cta__contacts { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: .9rem; }
.cta__contacts li { display: flex; align-items: center; gap: .7rem; color: #C6D2E2; }
.cta__contacts a { color: #C6D2E2; }
.cta__contacts a:hover { color: var(--brand); }

/* Űrlap */
.form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow);
}
.form__title { font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--text); }
.form__row { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: .45rem; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { font-size: .9rem; color: var(--muted); font-weight: 500; }
.form label span { color: var(--brand); }

.form input, .form textarea {
  width: 100%; padding: .8rem 1rem;
  background: var(--bg-alt); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font: inherit; font-size: .97rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.form input::placeholder, .form textarea::placeholder { color: var(--muted-2); }
.form input:focus, .form textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft); background: var(--surface-2);
}
.form textarea { resize: vertical; min-height: 110px; }

.form__check { flex-direction: row; align-items: flex-start; gap: .6rem; margin: .3rem 0 1.4rem; font-size: .88rem; line-height: 1.5; }
.form__check input { width: auto; margin-top: .15rem; accent-color: var(--brand); flex-shrink: 0; }
.form__check span { color: var(--muted); }

/* Honeypot elrejtése */
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__status { margin: 1rem 0 0; font-size: .93rem; min-height: 1.2em; }
.form__status.is-ok { color: #4ADE80; }
.form__status.is-error { color: #F87171; }
.form.is-sending .btn { opacity: .6; pointer-events: none; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border-soft); padding: 56px 0 32px; }
.footer__inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid var(--border-soft); }
.footer__brand { max-width: 340px; }
.footer__brand .brand__text { font-size: 1.2rem; }
.footer__brand p { color: var(--muted); font-size: .95rem; margin: .8rem 0 0; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.footer__nav a { color: var(--muted); font-size: .95rem; }
.footer__nav a:hover { color: var(--text); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; color: var(--muted-2); font-size: .88rem; }
.footer__legal a { color: var(--muted-2); }
.footer__legal a:hover { color: var(--muted); }

/* ---------- Scroll reveal animáció ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Reszponzív ---------- */
@media (max-width: 900px) {
  .grid--3, .grid--pain { grid-template-columns: repeat(2, 1fr); }
  .cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__visual { order: 0; }
  .split__visual { max-width: 460px; margin: 0 auto; width: 100%; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--pain { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 18px; padding: 1.5rem; }
  .step__num { flex-direction: row; justify-content: flex-start; align-items: center; gap: 18px; }
  .step__num span { font-size: 2rem; }
  .step__badge { width: 92px; height: 92px; border-radius: 18px; padding: 12px; }
  .person { grid-template-columns: 1fr; gap: 16px; padding: 1.5rem; }
  .person__photo { width: 80px; height: 80px; }
  .flow { gap: 14px; }
  .flow::before { display: none; }
  .flow__step { flex-direction: row; justify-content: flex-start; min-width: 100%; gap: 1rem; text-align: left; }
  .hero__actions .btn { width: 100%; }
  .footer__bottom { flex-direction: column; }
}

/* ---------- Mozgáscsökkentés ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
