/* =====================================================================
   Folyamat & Árazás – /assets/css/pages/folyamat.css
   - Semleges (fehér/szürke) színpaletta
   - Fix hátteres blokk viselkedése: /assets/css/components/scroll-bg.css
   ===================================================================== */
@import url("/assets/css/components/scroll-bg.css");

/* ---------- Design tokenek ---------- */
:root {
    --header-h: 88px;
    --container: 1180px;
    --gap: clamp(16px, 3vw, 28px);
    --radius: 16px;

    --text: #111827;
    --muted: #6b7280;
    --border: #e5e7eb;
    --paper: #ffffff;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .06), 0 2px 8px rgba(0, 0, 0, .05);
    --shadow-md: 0 6px 18px rgba(0, 0, 0, .08), 0 2px 8px rgba(0, 0, 0, .04);
}

/* ---------- Alap konténer ---------- */
.inner {
    width: min(var(--container), 100%);
    margin-inline: auto;
    padding-inline: var(--gap);
}

/* ---------- Szekciók ---------- */
.section {
    padding-block: clamp(28px, 6vw, 72px);
    background: var(--paper);
}

.section+.section {
    border-top: 1px solid var(--border);
}

/* =====================================================================
      HERO
      ===================================================================== */
.process .hero .title {
    margin: 0 0 .4rem;
    font-size: clamp(24px, 3.6vw, 34px);
    line-height: 1.15;
    color: var(--text);
}

.process .hero .lead {
    max-width: 80ch;
    color: var(--muted);
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.6;
}

/* =====================================================================
      TARTALOM / TIPÓ
      ===================================================================== */
.content {
    max-width: 92ch;
}

.content h2 {
    margin: 0 0 .55rem;
    font-size: clamp(20px, 2.5vw, 26px);
    line-height: 1.25;
    color: var(--text);
}

.content p {
    margin: 0 0 .75rem;
    color: var(--text);
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.65;
}

.muted {
    color: var(--muted);
}

/* =====================================================================
      LÉPÉSEK
      ===================================================================== */
.step {
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.step:first-child {
    border-top: 0;
}

.step-head {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
}

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 700;
    opacity: .7;
    border: 1px solid rgba(0, 0, 0, .1);
    font-size: 13px;
}

.step-title {
    margin: 0;
    font-size: clamp(16px, 1.9vw, 18px);
}

/* =====================================================================
      LISTÁK
      ===================================================================== */
.bullets {
    padding-left: 1.2rem;
}

.bullets li {
    margin: .35rem 0 .55rem;
    line-height: 1.6;
}

/* számozott lista (ha kell ezen az oldalon) */
.checklist.numbered {
    counter-reset: s;
    list-style: none;
    padding: 0;
}

.checklist.numbered>li {
    counter-increment: s;
    margin: .8rem 0;
    padding-left: 2.2rem;
    position: relative;
}

.checklist.numbered>li::before {
    content: counter(s) ".";
    position: absolute;
    left: 0;
    top: .05rem;
    font-weight: 700;
    opacity: .65;
    color: var(--muted);
}

/* =====================================================================
      FIX HÁTTÉR – ÁTFUTÁSI IDŐK BLOKK
      ===================================================================== */

/* ne legyenek csíkok, a kép fedjen teljesen */
.process .scroll-zoom {
    margin: 0 !important;
}

.process .scroll-zoom::before {
    inset: 0;
}

.process .scroll-zoom::after {
    background: none !important;
}

/* a következő normál szekció ne húzzon keretet a kép aljára */
.process .scroll-zoom+.section {
    border-top: 0 !important;
    margin-top: 0 !important;
}

/* kényelmes függőleges levegő a kártya körül */
.scroll-zoom__cap {
    padding-block: clamp(28px, 5vw, 56px);
}

/* kártya: fehér háttér, fekete szöveg, puha árnyék, kompakt betű */
.scroll-bg__card {
    max-width: 920px;
    background: #fff;
    color: #111;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    padding: clamp(14px, 2.6vw, 22px);
    box-shadow: 0 18px 64px rgba(0, 0, 0, .28);
    text-shadow: none;
}

.scroll-bg__card h2 {
    margin: 0 0 .35rem;
    font-size: clamp(20px, 2.1vw, 24px);
    line-height: 1.25;
    color: #111;
}

.scroll-bg__card p,
.scroll-bg__card li {
    font-size: clamp(14px, 1.25vw, 15.5px);
    line-height: 1.6;
    color: #111;
}

/* pöttyök nélkül ezen a kártyán */
.bullets.bullets--clean {
    list-style: none;
    padding-left: 0;
    margin: .4rem 0 .8rem;
}

.bullets.bullets--clean li::marker {
    content: "";
}

/* =====================================================================
      CTA (ha később kell ezen az oldalon)
      ===================================================================== */
.section-cta .inner.cta {
    display: grid;
    gap: .6rem;
    text-align: center;
}

.section-cta .cta-actions {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}