/* Onismereti Program — összegyűjtött CSS az onipro-v2.html-ből */

/* cyrillic-ext */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* cyrillic */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* greek-ext */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* greek */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* vietnamese */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* latin-ext */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* latin */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* cyrillic-ext */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* cyrillic */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* greek-ext */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* greek */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* vietnamese */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* latin-ext */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* latin */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* cyrillic-ext */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* cyrillic */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* greek-ext */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* greek */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* vietnamese */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* latin-ext */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* latin */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* cyrillic */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* vietnamese */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* latin-ext */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* latin */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* cyrillic */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* vietnamese */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* latin-ext */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */
/* latin */
/* font-face dropped: bundler asset (Google Fonts CDN-re cserélve) */

/* ---- */

:root {
    --cream: #F4F1EC;        /* papírkrém háttér */
    --card:  #FAF8F4;        /* tört fehér kártya */
    --ink:   #2A3B3F;        /* mélyzöld-kék főszöveg */
    --earth: #6B5D52;        /* földbarna másodlagos */
    --terra: #B8674A;        /* égetett terrakotta akcentus */
    --terra-dark: #A15538;
    --sand:  #D4A574;        /* homokarany */
    --rule:  #E8E3DB;        /* meleg szürke határ */
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  /* Mobil horizontális scroll védőháló: a hero-photo::before és intro-video::before
     dekoratív "kilógásai" (negatív inset) keskeny viewporton (<400px) túllógnának a
     .site paddingján. A clip nem hoz létre scroll-konténert, így position:sticky marad. */
  html, body { overflow-x: clip; }
  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  /* ——— Nav ——— */
  .site {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0 0;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
  }
  .brand svg { width: 32px; height: 32px; display: block; flex-shrink: 0; }
  .brand .wordmark {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.1;
    white-space: nowrap;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
  }
  .nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
  }
  .nav-links a:not(.nav-cta):hover { color: var(--terra); }
  .nav-cta {
    font-size: 13px;
    color: var(--terra);
    background: transparent;
    border: 1px solid var(--terra);
    padding: 9px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background 160ms ease, color 160ms ease;
  }
  .nav-cta:hover { background: var(--terra); color: var(--cream); }

  /* Hamburger (csak mobil) */
  .nav-burger {
    display: none;
    background: transparent;
    border: 1px solid var(--terra);
    border-radius: 4px;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }
  .nav-burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--terra);
    border-radius: 1px;
    transition: transform 240ms ease, opacity 200ms ease;
  }

  @media (max-width: 760px) {
    .nav-links a:not(.nav-cta) { display: none; }
    .nav-links .nav-cta { display: none; }
    .nav-burger { display: inline-flex; }
  }

  /* ——— Off-canvas drawer (mobil) ——— */
  .drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(42, 59, 63, 0.45);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease;
  }
  .drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 360px);
    background: var(--cream);
    z-index: 95;
    transform: translateX(100%);
    transition: transform 280ms cubic-bezier(.2,.7,.2,1);
    box-shadow: -16px 0 48px rgba(0,0,0,0.16);
    padding: 64px 28px 28px;
    display: flex;
    flex-direction: column;
    visibility: hidden;
  }
  .mobile-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .drawer-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 0;
    font-size: 28px;
    color: var(--ink);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 160ms ease;
  }
  .drawer-close:hover { color: var(--terra); }
  .drawer-intro {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 24px;
    opacity: 0.92;
  }
  .drawer-cta {
    align-self: flex-start;
  }
  body.has-drawer-open {
    overflow: hidden;
  }

  /* ——— Hero ——— */
  .hero {
    padding: clamp(32px, 5vh, 56px) 0 clamp(80px, 12vh, 120px);
    position: relative;
  }

  /* Layout: split — szöveg balra, íves modul-vizualizáció jobbra */
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
  }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  }

  .eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--earth);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 28px;
  }
  .eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--earth);
    display: inline-block;
  }

  h1.hero-title {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 500;
    font-size: clamp(40px, 5.6vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0 0 22px;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0, "clig" 0, "hlig" 0;
  }
  h1.hero-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--terra);
  }

  .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--earth);
    margin: 0 0 20px;
    letter-spacing: 0.005em;
  }

  .lead {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    max-width: 48ch;
    margin: 0 0 40px;
    opacity: 0.92;
  }

  .cta-row {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--terra);
    color: var(--cream);
    border: 0;
    padding: 15px 30px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
  }
  .btn-primary:hover { background: var(--terra-dark); }
  .btn-primary:active { transform: translateY(1px); }
  .btn-primary .arrow {
    display: inline-block;
    transition: transform 180ms ease;
  }
  .btn-primary:hover .arrow { transform: translateX(3px); }

  .sub-cta {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--ink);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration-color: var(--rule);
    transition: color 160ms ease, text-decoration-color 160ms ease;
  }
  .sub-cta:hover { color: var(--terra); text-decoration-color: var(--terra); }

  /* ——— Íves 6-modul motívum ——— */
  .arc-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    margin-left: auto;
  }
  @media (max-width: 900px) {
    .arc-wrap { margin: 0 auto; max-width: 420px; }
  }
  .arc-svg { width: 100%; height: 100%; overflow: visible; display: block; }
  .arc-path { fill: none; stroke: var(--ink); stroke-width: 1; opacity: 0.35; }
  .arc-dot {
    fill: var(--card);
    stroke: var(--earth);
    stroke-width: 1.25;
    transition: transform 300ms cubic-bezier(.2,.7,.2,1), fill 200ms ease;
    transform-box: fill-box;
    transform-origin: center;
  }
  .arc-dot.final { fill: var(--terra); stroke: var(--terra); }
  .arc-label {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    fill: var(--earth);
    font-weight: 500;
  }
  .arc-caption {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--earth);
    white-space: nowrap;
    opacity: 0.85;
  }

  /* ——— Hero portré (a program alkotója) ——— */
  .hero-photo {
    position: relative;
    width: 100%;
    max-width: 470px;
    aspect-ratio: 4 / 5;          /* ismert magasság a name-plate pozícióhoz */
    margin-left: auto;
    align-self: center;
    isolation: isolate;
  }
  @media (max-width: 900px) {
    .hero-photo { margin: 0 auto; max-width: 420px; }
  }

  /* Terra csíkozott háttér — a .hero-photo gyermeke, NEM a frame-en belül,
     hogy a frame overflow:hidden ne clippelje, és körbe-keret legyen. */
  .hero-photo::before {
    content: '';
    position: absolute;
    /* top: 0 → a jobb-felső sarokba is befed; balra a chip alá tolva */
    inset: 0 -22px -24px 22px;
    background-color: var(--terra);
    background-image: repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.12) 0 2px,
      transparent 2px 9px
    );
    z-index: -1;
  }

  .hero-photo .photo-frame {
    position: relative;
    margin: 0;
    width: 100%;
    height: 100%;                 /* kitölti a hero-photo-t */
    overflow: hidden;
    background: var(--card);
  }
  .hero-photo .photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-photo .photo-chip {
    position: absolute;
    top: 0;
    left: 22px;
    transform: translateY(-50%);
    background: var(--ink);
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 11px 18px;
    z-index: 2;
    white-space: nowrap;
  }

  .hero-photo .photo-nameplate {
    position: absolute;
    right: 16px;
    bottom: -24px;          /* a terra háttér aljához igazítva */
    background: var(--card);
    padding: 14px 22px;
    border: 1px solid var(--rule);
    z-index: 2;
    box-shadow: 0 6px 22px rgba(0,0,0,0.06);
  }
  .hero-photo .photo-name {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    color: var(--ink);
    line-height: 1.1;
  }
  .hero-photo .photo-role {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--earth);
    margin-top: 6px;
  }
  @media (max-width: 900px) {
    .hero-photo .photo-nameplate { right: 12px; bottom: -24px; padding: 12px 18px; }
    .hero-photo .photo-name { font-size: 19px; }
    .hero-photo .photo-chip { left: 14px; padding: 9px 14px; font-size: 10px; }
  }

  /* ——— Az ív most a "Hat modul, egy ív" section-ben él ——— */
  .program-arc {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 16px auto 56px;
  }
  .program-arc .arc-svg {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.62;
    display: block;
    overflow: visible;
  }
  @media (max-width: 700px) {
    .program-arc { margin: 8px auto 36px; max-width: 520px; }
    .program-arc .arc-label { font-size: 9px; }
  }

  /* ——— Bemutató videó szekció (a hero alatt) ——— */
  .section-intro {
    position: relative;
    padding: clamp(40px, 6vh, 80px) 0 clamp(64px, 10vh, 100px);
  }
  .section-intro .intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
  }
  @media (max-width: 900px) {
    .section-intro .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  .section-intro .intro-title {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 500;
    font-size: clamp(32px, 4.4vw, 48px);
    line-height: 1.1;
    color: var(--ink);
    margin: 0 0 20px;
    letter-spacing: -0.01em;
  }
  .section-intro .intro-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--terra);
  }
  .section-intro .intro-lead {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    max-width: 52ch;
    margin: 0 0 32px;
    opacity: 0.92;
  }
  .section-intro .intro-cta-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-intro .intro-cta-skip {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--earth);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration-color: var(--rule);
    transition: color 160ms ease, text-decoration-color 160ms ease;
  }
  .section-intro .intro-cta-skip:hover {
    color: var(--terra);
    text-decoration-color: var(--terra);
  }

  /* Videó-konténer: a sötét csíkozott keret a kép mögé, bal-felfelé eltolva */
  .section-intro .intro-video {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    isolation: isolate;
  }
  @media (max-width: 900px) {
    .section-intro .intro-video { margin: 0 auto; max-width: 380px; }
  }
  .section-intro .intro-video::before {
    content: '';
    position: absolute;
    /* bal-felfelé kilóg, jobb-le visszahúzva → eltolt keret-érzet */
    inset: -20px 18px 18px -20px;
    background-color: var(--ink);
    background-image: repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.10) 0 2px,
      transparent 2px 9px
    );
    z-index: -1;
  }

  /* Videó keret + poszter + lazy play */
  .section-intro .video-frame {
    position: relative;
    margin: 0;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: var(--ink);
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
  }
  .section-intro .video-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
  }
  .section-intro .video-frame:hover img { transform: scale(1.04); }
  .section-intro .video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .section-intro .video-duration {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(42, 59, 63, 0.85);
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 2px;
    z-index: 2;
  }
  .section-intro .video-play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--terra);
    color: var(--cream);
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
    transition: transform 200ms ease, background 200ms ease;
  }
  .section-intro .video-play-btn:hover {
    transform: scale(1.07);
    background: var(--terra-dark);
  }
  .section-intro .video-play-btn svg {
    margin-left: 4px;          /* play ikon optikai középre tolása */
  }
  /* iframe betöltődik → poszter, chip, gomb elrejtve */
  .section-intro .video-frame.is-playing img,
  .section-intro .video-frame.is-playing .video-duration,
  .section-intro .video-frame.is-playing .video-play-btn {
    display: none;
  }

  /* Greeting: alapból rejtett, csak hero "Indulás"-ról jövő kattintásra látszik.
     Beige háttéres kis box a BEMUTATÓ eyebrow felett, a intro-copy oszlopban. */
  .section-intro .intro-greeting {
    display: none;
    background: #EFE7D6;            /* finom bézs */
    padding: 16px 22px;
    margin: 0 0 28px;
    border-radius: 4px;
    max-width: fit-content;
  }
  .section-intro .intro-greeting.is-visible {
    display: block;
    animation: introGreetIn 360ms cubic-bezier(.2,.7,.2,1);
  }
  @keyframes introGreetIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .section-intro .intro-greeting-top {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--earth);
    margin-bottom: 6px;
  }
  .section-intro .intro-greeting-bottom {
    display: block;
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--terra);
    font-weight: 500;
  }

  /* Meta row alul */
  .meta {
    display: flex;
    gap: 48px;
    margin-top: clamp(72px, 10vh, 110px);
    padding-top: 32px;
    border-top: 1px solid var(--rule);
    flex-wrap: wrap;
  }
  .meta-item { display: flex; flex-direction: column; gap: 4px; min-width: 120px; }
  .meta-item .k {
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--earth);
    font-weight: 500;
  }
  .meta-item .v {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.005em;
  }

  /* Variáns A: center stack (no arc on side) */
  body[data-variant="center"] .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  body[data-variant="center"] .eyebrow,
  body[data-variant="center"] .cta-row { justify-content: center; }
  body[data-variant="center"] .lead { margin-left: auto; margin-right: auto; }
  body[data-variant="center"] .arc-wrap { display: none; }
  body[data-variant="center"] .meta { justify-content: center; }

  /* Variáns C: minimal (no arc, left stack) */
  body[data-variant="minimal"] .arc-wrap { display: none; }
  body[data-variant="minimal"] .hero-grid { grid-template-columns: 1fr; max-width: 720px; }

  /* Corner seal - subtle brand anchor */
  .corner-seal {
    position: absolute;
    right: 0;
    top: 28px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--earth);
    opacity: 0.6;
  }
  @media (max-width: 900px) { .corner-seal { display: none; } }

  /* ============================================================
     SZEKCIÓ — KIÉRT · Köztünk a helyed
     ============================================================ */
  .section-who {
    padding: clamp(72px, 12vh, 140px) 0 clamp(96px, 14vh, 160px);
    position: relative;
  }
  .section-who::before {
    content: '';
    display: block;
    width: 56px;
    height: 1px;
    background: var(--ink);
    opacity: 0.35;
    margin: 0 0 clamp(48px, 7vh, 88px);
  }

  .who-head {
    max-width: 720px;
    margin: 0 0 clamp(56px, 8vh, 88px);
  }
  .who-head .eyebrow { margin-bottom: 24px; }

  h2.who-title {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0 0 18px;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0, "clig" 0, "hlig" 0;
  }
  .who-sub {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.55;
    color: var(--earth);
    margin: 0;
    max-width: 52ch;
  }

  .who-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
  }
  @media (max-width: 900px) {
    .who-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  .who-card {
    padding-top: 28px;
    border-top: 1px solid var(--rule);
    position: relative;
  }
  .who-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    color: var(--terra);
    line-height: 1;
    display: block;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
  }
  .who-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.25;
    color: var(--ink);
    margin: 0 0 14px;
    letter-spacing: -0.005em;
    text-wrap: balance;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .who-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--earth);
    margin: 0;
    max-width: 34ch;
  }

  /* ============================================================
     SZEKCIÓ — MIBEN MÁS · Nem egy újabb módszer. Egy keret.
     ============================================================ */
  .section-different {
    padding: clamp(72px, 12vh, 140px) 0 clamp(96px, 14vh, 160px);
    position: relative;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-different::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    opacity: 0.18;
    margin: 0 0 clamp(72px, 10vh, 120px);
  }
  .different-head {
    margin: 0 auto clamp(48px, 7vh, 72px);
    text-align: center;
  }
  .different-head .eyebrow { margin-bottom: 24px; justify-content: center; }
  .different-head .eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--earth);
    display: inline-block;
  }
  h2.different-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .different-body {
    max-width: 56ch;
    margin: 0 auto;
    text-align: center;
  }
  .different-body p {
    font-family: 'Inter', sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--ink);
    margin: 0 0 22px;
  }
  .different-body p:last-child { margin-bottom: 0; }
  .different-body em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--terra);
    font-weight: 400;
  }

  /* ============================================================
     SZEKCIÓ — AMIT MAGADDAL VISZEL
     ============================================================ */
  .section-take {
    padding: clamp(72px, 12vh, 140px) 0 clamp(96px, 14vh, 160px);
    position: relative;
  }
  .section-take::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    opacity: 0.18;
    margin: 0 0 clamp(72px, 10vh, 120px);
  }
  .take-head {
    max-width: 720px;
    margin: 0 auto clamp(56px, 8vh, 88px);
    text-align: center;
  }
  .take-head .eyebrow { margin-bottom: 24px; justify-content: center; }
  .take-head .eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--earth);
    display: inline-block;
  }
  h2.take-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0 0 18px;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .take-sub {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--earth);
    margin: 0 auto;
    max-width: 56ch;
  }
  .take-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    max-width: 920px;
    margin: 0 auto;
  }
  @media (max-width: 720px) {
    .take-grid { grid-template-columns: 1fr; }
  }
  .take-cell {
    background: var(--card);
    padding: clamp(32px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .take-cell .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terra);
    opacity: 0.9;
    margin-bottom: 4px;
  }
  .take-cell h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.25;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.005em;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .take-cell p {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--earth);
    margin: 0;
  }

  /* ============================================================
     SZEKCIÓ — KIKNEK VALÓ · Akit itt várunk
     ============================================================ */
  .section-fit {
    padding: clamp(72px, 12vh, 140px) 0 clamp(96px, 14vh, 160px);
    position: relative;
  }
  .section-fit::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    opacity: 0.18;
    margin: 0 0 clamp(72px, 10vh, 120px);
  }
  .fit-head {
    max-width: 720px;
    margin: 0 auto clamp(48px, 7vh, 72px);
    text-align: center;
  }
  .fit-head .eyebrow { margin-bottom: 24px; justify-content: center; }
  .fit-head .eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--earth);
    display: inline-block;
  }
  h2.fit-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0 0 20px;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .fit-sub {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--earth);
    margin: 0 auto;
    max-width: 60ch;
  }
  .fit-list {
    max-width: 720px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    counter-reset: fit;
  }
  .fit-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    align-items: baseline;
    padding: 22px 0;
    border-bottom: 1px solid var(--rule);
    counter-increment: fit;
  }
  .fit-item:first-child { border-top: 1px solid var(--rule); }
  .fit-item::before {
    content: counter(fit, decimal-leading-zero);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    color: var(--terra);
    line-height: 1;
  }
  .fit-item p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
    margin: 0;
  }

  /* Két oszlop — Akit várunk / Akinek nem való (keretes, take-stílus) */
  .fit-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    max-width: 1040px;
    margin: 0 auto;
  }
  @media (max-width: 820px) {
    .fit-cols { grid-template-columns: 1fr; }
  }
  .fit-col {
    background: var(--card);
    padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .fit-col .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terra);
    opacity: 0.9;
    margin: 0 0 16px;
  }
  .fit-col.not .dot { background: var(--earth); opacity: 0.6; }
  .fit-col h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.25;
    color: var(--ink);
    margin: 0 0 28px;
    letter-spacing: -0.005em;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .fit-col.not h3 { color: var(--earth); }
  .fit-col ul.fit-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 38ch;
    counter-reset: fitc;
  }
  .fit-col ul.fit-col-list li {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink);
    text-align: left;
    counter-increment: fitc;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    align-items: baseline;
  }
  .fit-col ul.fit-col-list li::before {
    content: counter(fitc, decimal-leading-zero);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    color: var(--terra);
    line-height: 1.2;
    text-align: right;
  }
  .fit-col.not ul.fit-col-list li { color: var(--earth); }
  .fit-col.not ul.fit-col-list li::before { color: var(--earth); opacity: 0.7; }

  /* ============================================================
     SZEKCIÓ — MIBEN SEGÍT · Ismerős körök
     ============================================================ */
  .section-help {
    padding: clamp(72px, 12vh, 140px) 0 clamp(96px, 14vh, 160px);
    position: relative;
  }
  .section-help::before {
    content: '';
    display: block;
    width: 56px;
    height: 1px;
    background: var(--ink);
    opacity: 0.35;
    margin: 0 0 clamp(48px, 7vh, 88px);
  }

  .help-head {
    max-width: 640px;
    margin: 0 0 clamp(56px, 8vh, 88px);
  }
  .help-head .eyebrow { margin-bottom: 24px; }

  h2.help-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0 0 18px;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .help-sub {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--earth);
    margin: 0;
    max-width: 54ch;
  }

  .help-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    max-width: 1040px;
    margin: 0 auto;
  }
  @media (max-width: 720px) {
    .help-list { grid-template-columns: 1fr; }
  }
  .help-item {
    background: var(--card);
    padding: clamp(32px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
  }
  .help-item .tick {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terra);
    margin: 0 0 4px;
    opacity: 0.9;
  }
  .help-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 21px;
    line-height: 1.35;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.005em;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .help-gloss {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--earth);
    margin: 0;
  }

  /* ============================================================
     SZEKCIÓ — HONNAN JÖN · Ez nem az én találmányom
     ============================================================ */
  .section-origin {
    padding: clamp(72px, 12vh, 140px) 0 clamp(96px, 14vh, 160px);
    position: relative;
  }
  .section-origin::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    opacity: 0.18;
    margin: 0 0 clamp(72px, 10vh, 120px);
  }
  .origin-head {
    max-width: 720px;
    margin: 0 auto clamp(48px, 7vh, 72px);
    text-align: center;
  }
  .origin-head .eyebrow { margin-bottom: 24px; justify-content: center; }
  .origin-head .eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--earth);
    display: inline-block;
  }
  h2.origin-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .origin-body {
    max-width: 720px;
    margin: 0 auto;
  }
  .origin-body > p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    margin: 0 0 28px;
  }
  .origin-portrait {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 28px;
    align-items: start;
    padding: 28px;
    background: var(--card);
    margin: 36px 0;
  }
  @media (max-width: 560px) {
    .origin-portrait { grid-template-columns: 1fr; }
  }
  .origin-portrait img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(1) contrast(1.05);
  }
  .origin-portrait .bio {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--ink);
    margin: 0;
  }
  .origin-portrait .bio strong {
    font-weight: 600;
    color: var(--ink);
  }
  .origin-pullquote {
    border-left: 2px solid var(--terra);
    background: var(--card);
    padding: 28px 32px;
    margin: 36px 0 12px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink);
  }
  .origin-pullquote p { margin: 0; }
  .origin-pullquote .accent {
    color: var(--terra-dark);
    font-weight: 500;
    background: linear-gradient(transparent 60%, rgba(184, 103, 74, 0.18) 60%);
    padding: 0 2px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
  .origin-attribution {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--earth);
    margin: 0 0 32px 2px;
  }

  /* ============================================================
     SZEKCIÓ — A PROGRAM · Hat modul, egy ív
     ============================================================ */
  .section-program {
    padding: clamp(72px, 12vh, 140px) 0 clamp(96px, 14vh, 160px);
    position: relative;
  }
  .section-program::before {
    content: '';
    display: block;
    width: 56px;
    height: 1px;
    background: var(--ink);
    opacity: 0.35;
    margin: 0 0 clamp(48px, 7vh, 88px);
  }
  .program-head {
    max-width: 720px;
    margin: 0 0 clamp(64px, 9vh, 104px);
  }
  .program-head .eyebrow { margin-bottom: 24px; }
  h2.program-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0 0 18px;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .program-sub {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--earth);
    margin: 0;
    max-width: 56ch;
  }

  .modules {
    display: grid;
    grid-template-columns: 1fr;
  }
  @media (min-width: 900px) {
    .modules {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      column-gap: clamp(48px, 6vw, 96px);
    }
  }
  .module {
    display: grid;
    grid-template-columns: minmax(72px, 100px) minmax(0, 1fr);
    gap: clamp(24px, 3vw, 48px);
    padding: clamp(36px, 5vh, 64px) 0;
    border-top: 1px solid var(--rule);
    align-items: start;
  }
  .modules > .module:last-child { border-bottom: 1px solid var(--rule); }
  /* 2 oszlopnál páros darab esetén az utolsó SORBAN mindkét cell kap alsó vonalat */
  @media (min-width: 900px) {
    .modules > .module:nth-last-child(2):nth-child(odd) {
      border-bottom: 1px solid var(--rule);
    }
  }
  .module-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1;
    color: var(--terra);
    letter-spacing: -0.02em;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .module-body { max-width: 56ch; }
  .module-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(26px, 3vw, 32px);
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 18px;
    letter-spacing: -0.005em;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .module-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--earth);
    margin: 0 0 22px;
  }
  .module-q {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    color: var(--ink);
    margin: 0;
    opacity: 0.85;
    padding-left: 16px;
    border-left: 1px solid var(--terra);
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  @media (max-width: 720px) {
    .module { grid-template-columns: 1fr; gap: 16px; }
    .module-num { font-size: 40px; }
  }

  /* ============================================================
     SZEKCIÓ — A HÁTTÉR · Miért van ez a program
     ============================================================ */
  .section-author {
    padding: clamp(72px, 12vh, 140px) 0 clamp(96px, 14vh, 160px);
    position: relative;
  }
  .section-author::before {
    content: '';
    display: block;
    width: 56px;
    height: 1px;
    background: var(--ink);
    opacity: 0.35;
    margin: 0 0 clamp(48px, 7vh, 88px);
  }
  .author-head {
    max-width: 720px;
    margin: 0 0 clamp(56px, 8vh, 88px);
  }
  .author-head .eyebrow { margin-bottom: 24px; }
  h2.author-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0 0 18px;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .author-sub {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--earth);
    margin: 0;
    max-width: 56ch;
  }
  .author-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.66fr) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 88px);
    align-items: stretch;
  }
  @media (max-width: 860px) {
    .author-grid { grid-template-columns: 1fr; gap: 48px; align-items: start; }
  }
  .author-portrait {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-width: 440px;
    overflow: hidden;
    border-radius: 4px;
    background: var(--card);
    margin: 0;
  }
  @media (max-width: 860px) {
    .author-portrait { aspect-ratio: 4 / 5; height: auto; }
  }
  .author-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.92) contrast(0.98);
  }
  .author-media {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .author-caption {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--earth);
    margin-top: 18px;
    opacity: 0.9;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    line-height: 1.4;
  }
  .author-caption .name {
    color: var(--ink);
    font-weight: 500;
    letter-spacing: 0.24em;
  }
  .author-caption .role {
    color: var(--earth);
    font-weight: 400;
    letter-spacing: 0.18em;
    opacity: 0.85;
  }
  .author-text {
    max-width: 58ch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .author-text p {
    font-family: 'Inter', sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--ink);
    margin: 0 0 24px;
  }
  .author-text p:last-of-type { margin-bottom: 0; }
  .author-pull {
    margin: clamp(36px, 5vh, 56px) 0;
    padding: 4px 0 4px 22px;
    border-left: 1px solid var(--terra);
  }
  .author-pull .q {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.35;
    color: var(--ink);
    margin: 0 0 10px;
    letter-spacing: -0.005em;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .author-pull .src {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: var(--earth);
    margin: 0;
    opacity: 0.9;
  }
  .author-coda {
    max-width: 820px;
    margin: clamp(72px, 9vh, 104px) auto 0;
    padding: clamp(40px, 6vh, 56px) clamp(28px, 4vw, 56px);
    border-top: 1px solid var(--rule);
    text-align: center;
  }
  .author-coda-line {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(22px, 2.6vw, 28px);
    line-height: 1.35;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.005em;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .author-coda-line + .author-coda-line { margin-top: 6px; }
  .author-coda-line em {
    font-style: italic;
    color: var(--terra);
    font-weight: 400;
  }

  /* ============================================================
     SZEKCIÓ — AZ INDULÁS · Amit a program tartalmaz
     ============================================================ */
  .section-offer {
    padding: clamp(72px, 12vh, 140px) 0 clamp(96px, 14vh, 160px);
    position: relative;
  }
  .section-offer::before {
    content: '';
    display: block;
    width: 56px;
    height: 1px;
    background: var(--ink);
    opacity: 0.35;
    margin: 0 0 clamp(48px, 7vh, 88px);
  }
  .offer-head {
    max-width: 720px;
    margin: 0 0 clamp(56px, 8vh, 88px);
  }
  .offer-head .eyebrow { margin-bottom: 24px; }
  h2.offer-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0 0 18px;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .offer-sub {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--earth);
    margin: 0;
    max-width: 56ch;
  }
  .offer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 88px);
    align-items: start;
  }
  @media (max-width: 900px) {
    .offer-grid { grid-template-columns: 1fr; gap: 56px; }
  }
  .offer-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--rule);
  }
  .offer-row {
    padding: clamp(22px, 3vh, 30px) 0;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 20px;
    align-items: baseline;
  }
  .offer-row .n {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 15px;
    color: var(--terra);
    line-height: 1;
    font-variant-ligatures: none;
  }
  .offer-row h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.3;
    color: var(--ink);
    margin: 0 0 6px;
    letter-spacing: -0.005em;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .offer-row p {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--earth);
    margin: 0;
    max-width: 48ch;
  }
  .offer-card-wrap { position: sticky; top: 32px; }
  @media (max-width: 900px) { .offer-card-wrap { position: static; } }
  .offer-card {
    background: var(--card);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: clamp(28px, 4vw, 40px);
  }
  .offer-card .label {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 17px;
    color: var(--ink);
    margin: 0 0 18px;
    letter-spacing: -0.005em;
    font-variant-ligatures: none;
  }
  .offer-card .price {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(48px, 6vw, 64px);
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.015em;
    margin: 0 0 12px;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .offer-card .price-note {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--earth);
    margin: 0 0 8px;
    line-height: 1.55;
  }
  .offer-card .price-compare {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    color: var(--terra);
    line-height: 1.45;
    margin: 0 0 26px;
    letter-spacing: 0.005em;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .offer-card .cta-full {
    display: block;
    width: 100%;
    text-align: center;
    /* Finom függőleges gradient — világosabb felül, sötétebb alul. Igazi
       fém-/műanyag-gomb illúzió. Fallback: tiszta --terra ha gradient nem megy. */
    background: var(--terra);
    background: linear-gradient(180deg, #C7775B 0%, #B8674A 45%, #A15538 100%);
    color: var(--cream);
    border: 0;
    padding: 16px 24px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    /* 3D nyomógomb hatás: belső felső highlight + sötét alsó perem + külső drop shadow */
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      inset 0 -3px 0 rgba(0, 0, 0, 0.22),
      0 4px 0 -1px rgba(91, 70, 54, 0.35),
      0 8px 18px -6px rgba(91, 70, 54, 0.45);
    transition: background 160ms ease, transform 120ms ease, box-shadow 160ms ease, filter 160ms ease;
  }
  .offer-card .cta-full:hover {
    background: linear-gradient(180deg, #B8674A 0%, #A15538 45%, #8E462C 100%);
    transform: translateY(-1px);
    filter: brightness(1.04) saturate(1.05);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.26),
      inset 0 -3px 0 rgba(0, 0, 0, 0.26),
      0 6px 0 -1px rgba(91, 70, 54, 0.40),
      0 16px 28px -10px rgba(91, 70, 54, 0.55);
  }
  .offer-card .cta-full:active {
    background: linear-gradient(180deg, #A15538 0%, #8E462C 100%);
    transform: translateY(2px);
    filter: brightness(0.98);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -1px 0 rgba(0, 0, 0, 0.22),
      0 1px 0 -1px rgba(91, 70, 54, 0.30),
      0 3px 8px -4px rgba(91, 70, 54, 0.40);
  }
  .offer-card .cta-full .arrow { transition: transform 180ms ease; display: inline-block; margin-left: 6px; }
  .offer-card .cta-full:hover .arrow { transform: translateX(3px); }
  .offer-card .sub-cta {
    display: block;
    text-align: center;
    margin-top: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--ink);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration-color: var(--rule);
    transition: color 160ms ease, text-decoration-color 160ms ease;
  }
  .offer-card .sub-cta:hover { color: var(--terra); text-decoration-color: var(--terra); }
  .offer-card .guarantee {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--terra);
  }
  .offer-card .guarantee .g-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terra);
    margin: 0 0 10px;
    line-height: 1.35;
    font-variant-ligatures: none;
  }
  .offer-card .guarantee .g-title svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--terra);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .offer-card .guarantee p {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--earth);
    margin: 0;
    opacity: 0.95;
  }
  .offer-closing {
    margin-top: clamp(56px, 8vh, 88px);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(17px, 1.8vw, 20px);
    color: var(--earth);
    opacity: 0.9;
    font-variant-ligatures: none;
  }

  /* ============================================================
     V2 VARIÁNS — Szekció-headerek középre igazítva
     (eyebrow + H2 főcím + alatta lead)
     ============================================================ */
  /* Teljes szélességű, finom elválasztó a szekciók előtt
     (felülírja a korábbi balra-tapadó 56px-es vonalat) */
  .section-who::before,
  .section-help::before,
  .section-origin::before,
  .section-program::before,
  .section-author::before,
  .section-offer::before {
    width: 100%;
    opacity: 0.18;
    margin: 0 0 clamp(72px, 10vh, 120px);
  }

  .who-head,
  .help-head,
  .program-head,
  .author-head,
  .offer-head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .who-head .eyebrow,
  .help-head .eyebrow,
  .program-head .eyebrow,
  .author-head .eyebrow,
  .offer-head .eyebrow {
    justify-content: center;
  }
  .who-head .eyebrow::after,
  .help-head .eyebrow::after,
  .program-head .eyebrow::after,
  .author-head .eyebrow::after,
  .offer-head .eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--earth);
    display: inline-block;
  }
  .who-head .who-sub,
  .help-head .help-sub,
  .program-head .program-sub,
  .author-head .author-sub,
  .offer-head .offer-sub {
    margin-left: auto;
    margin-right: auto;
  }
  /* ——— Kifogások ——— */
  .section-objections {
    padding: clamp(72px, 12vh, 140px) 0 clamp(96px, 14vh, 160px);
    max-width: var(--maxw);
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .section-objections::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    opacity: 0.18;
    margin: 0 0 clamp(72px, 10vh, 120px);
  }
  .obj-head {
    max-width: 720px;
    margin: 0 auto clamp(56px, 8vh, 88px);
    text-align: center;
  }
  .obj-head .eyebrow {
    justify-content: center;
    margin-bottom: 24px;
  }
  .obj-head .eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--earth);
    display: inline-block;
  }
  .obj-head h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0 0 18px;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .obj-head p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: var(--earth);
    line-height: 1.65;
    max-width: 56ch;
    margin: 0 auto;
  }
  .obj-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    max-width: 920px;
    margin: 0 auto;
  }
  @media (max-width: 720px) {
    .obj-grid { grid-template-columns: 1fr; }
  }
  .obj-cell {
    background: var(--card);
    padding: clamp(32px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .obj-cell .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terra);
    opacity: 0.9;
    margin-bottom: 4px;
  }
  .obj-cell .obj-q {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.005em;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .obj-cell .obj-q::before {
    content: '\201E';
    color: var(--terra);
    margin-right: 1px;
  }
  .obj-cell .obj-q::after {
    content: '\201D';
    color: var(--terra);
    margin-left: 1px;
  }
  .obj-cell .obj-a {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--earth);
    margin: 0;
  }
  /* ——— Mid CTA ——— */
  .section-midcta {
    padding: clamp(72px, 12vh, 140px) 0 clamp(72px, 12vh, 140px);
    max-width: var(--maxw);
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .section-midcta::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    opacity: 0.18;
    margin: 0 0 clamp(72px, 10vh, 120px);
  }
  .midcta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .midcta-inner .eyebrow {
    justify-content: center;
    margin-bottom: 24px;
  }
  .midcta-inner .eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--earth);
    display: inline-block;
  }
  .midcta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0 0 22px;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .midcta-inner p {
    font-family: 'Inter', sans-serif;
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--earth);
    margin: 0 auto 36px;
    max-width: 56ch;
  }
  .midcta-inner .btn-primary {
    margin: 0;
  }
  .midcta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
  }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--earth);
    border: 1px solid rgba(91, 70, 54, 0.35);
    padding: 15px 30px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
  }
  .btn-secondary:hover {
    border-color: var(--earth);
    color: var(--ink);
    background: rgba(91, 70, 54, 0.05);
  }
  /* Popup overlay */
  .stay-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 59, 63, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
    /* safe center: ha a modal magasabb mint a viewport (kis mobilon),
       fallback flex-start, így az overflow-y: auto-val végig görgethető. */
    align-items: safe center;
    justify-content: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
    padding: 24px;
    opacity: 0;
    transition: opacity 220ms ease;
  }
  .stay-overlay.is-open {
    display: flex;
    opacity: 1;
  }
  .stay-modal {
    background: var(--card);
    border-radius: 4px;
    max-width: 520px;
    width: 100%;
    /* Soha ne legyen magasabb mint a viewport - 48px overlay padding.
       A belső tartalom scrolloódik, nem az egész modal. */
    max-height: calc(100dvh - 48px);
    display: flex;
    flex-direction: column;
    padding: clamp(36px, 5vh, 56px);
    position: relative;
    box-shadow: 0 30px 80px rgba(42, 59, 63, 0.25);
    transform: translateY(8px);
    transition: transform 280ms ease;
  }
  .stay-overlay.is-open .stay-modal { transform: translateY(0); }
  /* A form maga is flex column — magába foglalja a scrollable .stay-content-et
     ÉS a sticky .stay-actions footert. */
  .stay-modal .stay-form {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    gap: 12px;
  }
  /* Scrollable belső tartalom — a kerethez tapadó × gomb és a sticky actions
     mindig látszanak. min-height:0 a flex-children default auto-jának override-ja,
     e nélkül nem scrollozna. */
  .stay-modal .stay-content,
  .stay-modal .stay-thanks {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
    flex: 1 1 auto;
  }
  /* Sticky actions footer — a submit gomb és a "Mégis kipróbálom" link egymás
     mellett, mindig láthatók (nem scrollozódnak ki). */
  .stay-modal .stay-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(91, 70, 54, 0.12);
    flex-shrink: 0;
  }
  .stay-modal .stay-actions .stay-submit {
    margin-top: 0;
    flex: 1 1 auto;
    width: auto;
  }
  .stay-modal .stay-actions .stay-buy-fallback {
    margin: 0;
    padding: 8px 4px;
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .stay-modal .stay-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--earth);
    font-size: 22px;
    line-height: 1;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 160ms ease, color 160ms ease;
  }
  .stay-modal .stay-close:hover {
    background: rgba(91, 70, 54, 0.08);
    color: var(--ink);
  }
  .stay-modal .eyebrow {
    margin-bottom: 18px;
  }
  .stay-modal h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(24px, 3vw, 30px);
    line-height: 1.2;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0 0 18px;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .stay-modal p {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--earth);
    margin: 0 0 24px;
  }
  .stay-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .stay-form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(91, 70, 54, 0.3);
    border-radius: 4px;
    background: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--ink);
    transition: border-color 160ms ease;
  }
  .stay-form input[type="email"]:focus {
    outline: none;
    border-color: var(--terra);
  }
  .stay-form button {
    width: 100%;
    padding: 14px 20px;
    background: var(--terra);
    color: var(--cream);
    border: 0;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 160ms ease;
  }
  .stay-form button:hover { background: var(--terra-dark); }
  .stay-modal .stay-fineprint {
    font-size: 12.5px;
    color: var(--earth);
    opacity: 0.7;
    margin: 12px 0 0;
    line-height: 1.5;
  }
  /* ——— GYIK ——— */
  .section-faq {
    padding: clamp(72px, 12vh, 140px) 0 clamp(96px, 14vh, 160px);
    max-width: var(--maxw);
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .section-faq::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    opacity: 0.18;
    margin: 0 0 clamp(72px, 10vh, 120px);
  }
  .faq-head {
    max-width: 720px;
    margin: 0 auto clamp(48px, 7vh, 72px);
    text-align: center;
  }
  .faq-head .eyebrow {
    justify-content: center;
    margin-bottom: 24px;
  }
  .faq-head .eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--earth);
    display: inline-block;
  }
  .faq-head h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0 0 18px;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .faq-head p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: var(--earth);
    line-height: 1.65;
    max-width: 56ch;
    margin: 0 auto;
  }
  .faq-list {
    max-width: 780px;
    margin: 0 auto;
    border-top: 1px solid rgba(91, 70, 54, 0.22);
  }
  .faq-item {
    border-bottom: 1px solid rgba(91, 70, 54, 0.22);
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: clamp(22px, 3vh, 30px) 0;
    display: flex;
    align-items: baseline;
    gap: 18px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.35;
    color: var(--ink);
    letter-spacing: -0.005em;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
    transition: color 0.18s ease;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::marker { content: ''; }
  .faq-item summary:hover { color: var(--terra); }
  .faq-item summary .faq-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-left: auto;
    position: relative;
    align-self: center;
    transition: transform 0.25s ease;
  }
  .faq-item summary .faq-icon::before,
  .faq-item summary .faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--terra);
    transform: translate(-50%, -50%);
  }
  .faq-item summary .faq-icon::before {
    width: 14px;
    height: 1.5px;
  }
  .faq-item summary .faq-icon::after {
    width: 1.5px;
    height: 14px;
    transition: transform 0.25s ease;
  }
  .faq-item[open] summary .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .faq-item .faq-a {
    padding: 0 0 clamp(24px, 3vh, 32px) 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--earth);
    max-width: 62ch;
  }

/* ---- */

/* ——— Lábléc ——— */
  .sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
  }
  .site-footer {
    margin-top: clamp(48px, 8vh, 96px);
    padding: clamp(64px, 9vh, 96px) 0 clamp(28px, 4vh, 36px);
    border-top: 1px solid var(--rule);
  }
  .footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 96px);
    padding-bottom: clamp(56px, 8vh, 88px);
  }
  @media (max-width: 720px) {
    .footer-top { grid-template-columns: 1fr; gap: 48px; }
  }
  .footer-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0 0 18px;
  }
  .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
    margin: 0 0 18px;
  }
  .footer-logo svg {
    width: 36px;
    height: 36px;
    display: block;
    flex-shrink: 0;
  }
  .footer-logo-word {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.1;
    white-space: nowrap;
  }
  .footer-essence {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    color: var(--earth);
    margin: 0 0 32px;
    max-width: 38ch;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .footer-links,
  .footer-contact-list,
  .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: var(--ink);
    text-decoration: none;
    line-height: 1.5;
    transition: color 160ms ease;
  }
  .footer-links a:hover { color: var(--terra); }

  .footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-contact-list li {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: var(--ink);
    line-height: 1.55;
  }
  .footer-contact-list .footer-name {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.005em;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0;
  }
  .footer-contact-list a {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-color: var(--rule);
    transition: color 160ms ease, text-decoration-color 160ms ease;
  }
  .footer-contact-list a:hover {
    color: var(--terra);
    text-decoration-color: var(--terra);
  }
  .footer-contact-list .footer-meta {
    color: var(--earth);
    font-size: 13.5px;
    opacity: 0.85;
    margin-top: 4px;
  }
  .footer-social {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .footer-social a {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    border: 1px solid var(--rule);
    color: var(--earth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
  }
  .footer-social a:hover {
    color: var(--terra);
    border-color: var(--terra);
    background: rgba(184, 103, 74, 0.06);
  }
  .footer-social svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
    display: block;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: clamp(20px, 3vh, 28px);
    border-top: 1px solid var(--rule);
    flex-wrap: wrap;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
  .footer-legal li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--earth);
    line-height: 1.4;
  }
  .footer-legal li[aria-hidden="true"] {
    color: var(--earth);
    opacity: 0.5;
    user-select: none;
  }
  .footer-legal a {
    color: var(--earth);
    text-decoration: none;
    transition: color 160ms ease;
  }
  .footer-legal a:hover { color: var(--terra); }
  .footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--earth);
    margin: 0;
    opacity: 0.85;
  }
  @media (max-width: 560px) {
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }

/* ---- */

/* ——— Bizalom (záró blokk) ——— */
  .section-trust {
    padding: clamp(72px, 12vh, 140px) 0 clamp(120px, 16vh, 180px);
    max-width: var(--maxw);
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .section-trust::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    opacity: 0.18;
    margin: 0 0 clamp(72px, 10vh, 120px);
  }
  .trust-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .trust-inner .eyebrow {
    justify-content: center;
    margin-bottom: 24px;
  }
  .trust-inner .eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--earth);
    display: inline-block;
  }
  h2.trust-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(36px, 4.4vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.008em;
    color: var(--ink);
    margin: 0 0 24px;
    text-wrap: pretty;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "dlig" 0, "clig" 0, "hlig" 0;
  }
  h2.trust-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--terra);
  }
  .trust-lead {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--earth);
    margin: 0 auto clamp(36px, 5vh, 48px);
    max-width: 56ch;
  }
  .trust-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(48px, 7vh, 72px);
  }
  .trust-sig {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 auto;
    color: var(--earth);
    opacity: 0.85;
  }
  .trust-sig .trust-rule {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--earth);
    opacity: 0.55;
  }
  .trust-sig .trust-sig-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.01em;
    color: var(--earth);
  }
/* ==========================================================================
   "Miért nem vetted meg" popup — új field szerkezet (checkboxok + textarea)
   ========================================================================== */
.stay-modal { max-width: 520px; }

.stay-reasons {
    border: 0;
    padding: 0;
    margin: 18px 0 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}
@media (max-width: 480px) {
    .stay-reasons { grid-template-columns: 1fr; }
}

.stay-reason {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14.5px;
    line-height: 1.4;
    color: var(--ink);
    user-select: none;
}
.stay-reason input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--terra);
    cursor: pointer;
}
.stay-reason:hover { color: var(--terra-dark); }

.stay-freetext-label {
    display: block;
    font-size: 13px;
    color: var(--earth);
    margin: 16px 0 6px;
}

.stay-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--rule);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    background: #fff;
    color: var(--ink);
    resize: vertical;
    min-height: 70px;
}
.stay-form textarea:focus {
    outline: 2px solid var(--terra);
    outline-offset: 1px;
    border-color: var(--terra);
}

.stay-submit {
    margin-top: 14px;
    width: 100%;
    background: var(--terra);
    color: #fff;
    border: 0;
    padding: 13px 20px;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background .15s;
}
.stay-submit:hover:not(:disabled) { background: var(--terra-dark); }
.stay-submit:disabled { opacity: .6; cursor: not-allowed; }

.stay-thanks {
    text-align: center;
    padding: 8px 0;
}
.stay-thanks h3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 3vw, 28px);
    color: var(--ink);
    margin: 8px 0 12px;
}
.stay-thanks .eyebrow { color: var(--terra); }
.stay-thanks p { color: var(--earth); margin-bottom: 16px; }

.stay-close-button {
    background: var(--ink);
    color: #fff;
    border: 0;
    padding: 11px 22px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
}
.stay-close-button:hover { background: #1a2528; }

.stay-form .stay-error {
    margin: 10px 0 0;
    color: var(--terra-dark);
    font-size: 13.5px;
}

/* sr-only ha még nincs a CSS-ben */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* ==========================================================================
   Statikus oldalak + blog + 404
   ========================================================================== */
.static-page,
.blog-list-section,
.blog-single,
.not-found-section {
    padding: clamp(40px, 6vw, 80px) 0;
    max-width: 760px;
    margin: 0 auto;
}
.static-page-inner,
.blog-single-inner,
.not-found-inner { padding: 0 clamp(20px, 5vw, 40px); }

.static-page-title,
.blog-single h1,
.blog-list-title,
.not-found-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 24px;
}

.static-page-content,
.blog-single-body {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink);
}
.static-page-content h2,
.blog-single-body h2 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 3vw, 28px);
    margin: 36px 0 14px;
    color: var(--ink);
}
.static-page-content h3,
.blog-single-body h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin: 24px 0 10px;
    color: var(--ink);
}
.static-page-content p,
.blog-single-body p { margin: 0 0 14px; }
.static-page-content a,
.blog-single-body a { color: var(--terra-dark); text-decoration: underline; }
.static-page-content ul,
.static-page-content ol,
.blog-single-body ul,
.blog-single-body ol { margin: 0 0 16px 24px; }

.blog-list-section {
    max-width: 1100px;
}
.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    padding: 0 clamp(20px, 5vw, 40px);
}
.blog-card {
    background: var(--card);
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(42, 59, 63, 0.08);
}
.blog-card-cover {
    aspect-ratio: 16 / 9;
    background: var(--rule) center / cover no-repeat;
}
.blog-card-body {
    padding: 18px 20px 22px;
}
.blog-card h2 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    margin: 0 0 8px;
    color: var(--ink);
    line-height: 1.3;
}
.blog-card p {
    color: var(--earth);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 10px;
}
.blog-card-date {
    font-size: 12.5px;
    color: var(--earth);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 32px 20px 0;
}
.blog-pagination a,
.blog-pagination span {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    color: var(--earth);
    text-decoration: none;
    border: 1px solid var(--rule);
}
.blog-pagination .current {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.blog-single-meta {
    color: var(--earth);
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 16px;
}
.blog-cover-wrap {
    margin: 0 -20px 28px;
    aspect-ratio: 16 / 9;
    background: var(--rule) center / cover no-repeat;
}
@media (min-width: 720px) {
    .blog-cover-wrap { margin: 0 0 36px; border-radius: 12px; }
}
.blog-lead {
    font-size: 19px;
    line-height: 1.55;
    color: var(--earth);
    margin: 0 0 28px;
    padding: 0 0 0 18px;
    border-left: 3px solid var(--terra);
    font-style: italic;
}

/* ==========================================================================
   Hero pill list — a CTA gomb felett
   ========================================================================== */
.hero-pills {
    list-style: none;
    padding: 0;
    margin: 24px 0 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hero-pills li {
    background: #FAF8F4;
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 14.5px;
    color: var(--ink);
    line-height: 1.3;
    white-space: nowrap;
}
@media (max-width: 480px) {
    .hero-pills li { font-size: 13.5px; padding: 7px 14px; }
}

/* ==========================================================================
   Section "Miben más" — kiemelt pull-quote statement
   ========================================================================== */
.different-statement {
    margin: 0 auto;
    padding: 28px 40px;
    border-left: 3px solid var(--terra);
    border-right: 3px solid var(--terra);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.45;
    color: var(--ink);
    max-width: 820px;
}
.different-statement em {
    color: var(--terra);
    font-style: italic;
    font-weight: 500;
}
@media (max-width: 600px) {
    .different-statement {
        padding: 22px 22px;
        font-size: clamp(19px, 4.5vw, 24px);
    }
    .different-divider {
        font-size: 24px;
        margin: 32px 0 28px;
    }
}

/* Section "Miben más" — bevezető és elválasztó */
.different-intro {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--earth);
    max-width: 760px;
}
.different-divider {
    margin: 44px 0 40px;
    color: var(--terra);
    font-size: 32px;
    letter-spacing: 0.5em;
    line-height: 1;
    text-align: center;
    user-select: none;
    opacity: 0.9;
}
@media (max-width: 600px) {
    .different-divider { margin: 28px 0 24px; }
}

/* Section "Aki vezet" — mobile fix: caption túlcsordult/összecsúszott */
@media (max-width: 600px) {
    .author-caption {
        margin-top: 16px;
        font-size: 10.5px;
        letter-spacing: 0.16em;
        line-height: 1.55;
    }
    .author-caption .name { letter-spacing: 0.18em; }
    .author-caption .role { letter-spacing: 0.10em; word-spacing: 0.1em; }
    .author-portrait { min-height: 0; }
    .author-grid { gap: 32px; }
    .author-text { padding-top: 4px; }
}

/* Még keskenyebb (iPhone SE szerű) — extra védelem */
@media (max-width: 380px) {
    .author-caption {
        font-size: 10px;
        letter-spacing: 0.12em;
    }
    .author-caption .name, .author-caption .role { letter-spacing: 0.08em; }
}

/* Section "Aki vezet" — tablet/mobile gap fix (a column-collapse 860px-nél van) */
@media (max-width: 860px) {
    .author-media {
        height: auto;
        margin-bottom: 8px;  /* a grid gap mellé extra puffer */
    }
    .author-portrait {
        height: auto;
        min-height: 0;
        max-width: 100%;
    }
    .author-caption {
        margin-top: 18px;
        margin-bottom: 24px;  /* tisztább elválasztás a bio-tól */
        font-size: 11px;
        letter-spacing: 0.18em;
    }
    .author-caption .role { letter-spacing: 0.12em; }
    .author-text { padding-top: 12px; }
    .author-grid { gap: 16px; }  /* a margin-bottom + caption margin végzi a fő munkát */
}

/* Smooth scroll for in-page anchor jumps (pl. nav Kapcsolat -> footer) */
html { scroll-behavior: smooth; }

/* "Mégis kipróbálom" link a popup-ban a submit gomb alatt */
.stay-buy-fallback {
    display: block;
    text-align: center;
    margin: 14px 0 4px;
    color: var(--terra-dark);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}
.stay-buy-fallback:hover {
    background: rgba(184, 103, 74, 0.08);
    color: var(--terra-dark);
    text-decoration: none;
}

/* ==========================================================================
   SZEKCIÓ — A FELÜLET · Így néz ki, amikor belépsz  (.section-app)
   ========================================================================== */
.section-app {
  padding: clamp(36px, 6vh, 70px) 0 clamp(40px, 6vh, 72px);
  position: relative;
  overflow: hidden;
}
.section-app::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ink);
  opacity: 0.18;
  margin: 0 0 clamp(36px, 5vh, 60px);
}
.app-head {
  max-width: 720px;
  margin: 0 auto clamp(56px, 8vh, 88px);
  text-align: center;
}
.app-head .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}
/* A globális .eyebrow-nak csak ::before line-ja van; itt centered szekciókban
   szimmetrikus a vonal mindkét oldalt. */
.app-head .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--earth);
  display: inline-block;
}
h2.app-title {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 18px;
  text-wrap: pretty;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "dlig" 0;
}
.app-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--terra);
}
.app-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--earth);
  margin: 0 auto;
  max-width: 56ch;
}

/* Stage — laptop + álló mobil egymás mellett */
.app-stage {
  position: relative;
  max-width: 1180px;
  margin: 0 auto clamp(64px, 9vh, 96px);
  padding: 0 clamp(0px, 2vw, 24px);
}
.app-stage-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(20px, 4vh, 40px) 0 clamp(28px, 4vh, 48px);
}

/* Laptop frame — pure CSS bezel + base/hinge */
.app-laptop {
  flex: 0 1 680px;
  max-width: 680px;
  min-width: 0;
  position: relative;
  filter: drop-shadow(0 50px 70px rgba(42, 59, 63, 0.22));
}
.app-laptop-lid {
  background: #1a1815;
  border-radius: 14px 14px 3px 3px;
  padding: 22px 16px 16px;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 1px 0 rgba(255,255,255,0.05) inset;
}
.app-laptop-lid::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #3a322a;
  border-radius: 50%;
  z-index: 2;
}
.app-laptop-screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  background: var(--cream);
}
.app-laptop-base {
  height: 14px;
  margin: 0 -4.2%;
  background: linear-gradient(180deg, #DCD8D2 0%, #B8B3AB 55%, #8E8A82 100%);
  border-radius: 0 0 14px 14px;
  position: relative;
  box-shadow:
    0 2px 4px rgba(42, 59, 63, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
.app-laptop-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14%;
  max-width: 110px;
  height: 5px;
  background: linear-gradient(180deg, #4a4640 0%, #2e2b27 100%);
  border-radius: 0 0 8px 8px;
}

/* Phone — flex order:-1 -> a laptop bal oldalán előtte lóg */
.app-phone {
  flex: 0 0 auto;
  order: -1;
  width: clamp(130px, 16vw, 175px);
  margin-right: clamp(-90px, -7vw, -50px);
  margin-bottom: -12px;
  background: #1a1815;
  border-radius: 26px;
  padding: 5px;
  box-shadow:
    0 36px 64px -22px rgba(42, 59, 63, 0.45),
    0 6px 16px rgba(42, 59, 63, 0.14),
    0 0 0 1px rgba(20, 18, 15, 0.08);
  position: relative;
  z-index: 3;
  transition: transform 400ms cubic-bezier(0.22, 0.7, 0.18, 1);
}
.app-phone:hover { transform: translateY(-6px); }
.app-phone::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 14px;
  background: #0a0908;
  border-radius: 8px;
  z-index: 2;
}
.app-phone img,
.app-phone picture { display: block; width: 100%; }
.app-phone img {
  height: auto;
  border-radius: 21px;
  background: var(--cream);
}

@media (max-width: 900px) {
  .app-stage-inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 28px;
    padding: 20px 0;
  }
  .app-laptop { flex: 1 1 auto; max-width: 100%; width: 100%; }
  .app-phone {
    order: 0;
    margin-right: 0;
    margin-bottom: 0;
    width: clamp(150px, 38vw, 200px);
  }
}
@media (max-width: 560px) {
  .app-laptop-lid { padding: 14px 10px 10px; border-radius: 10px 10px 2px 2px; }
  .app-laptop-lid::before { top: 6px; width: 4px; height: 4px; }
  .app-laptop-screen { border-radius: 2px; }
  .app-laptop-base { height: 10px; border-radius: 0 0 10px 10px; }
  .app-laptop-base::before { height: 3px; }
  .app-phone { padding: 5px; border-radius: 24px; }
  .app-phone::before { height: 12px; top: 8px; }
  .app-phone img { border-radius: 19px; }
}

/* 3 feature kártya — egységes "papír" grid */
.app-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .app-features { grid-template-columns: 1fr; }
}
.app-feature {
  background: var(--card);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-feature .ico {
  width: 28px;
  height: 28px;
  color: var(--terra);
  margin-bottom: 6px;
}
.app-feature .ico svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.app-feature h3 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "dlig" 0;
}
.app-feature p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--earth);
  margin: 0;
}

/* ==========================================================================
   SZEKCIÓ — HOGYAN FOGSZ HALADNI  (.section-howto)
   ========================================================================== */
.section-howto {
  padding: clamp(36px, 6vh, 70px) 0 clamp(48px, 7vh, 80px);
  position: relative;
}
.section-howto::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ink);
  opacity: 0.18;
  margin: 0 0 clamp(36px, 5vh, 60px);
}
.howto-head {
  max-width: 720px;
  margin: 0 auto clamp(48px, 7vh, 72px);
  text-align: center;
}
.howto-head .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}
.howto-head .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--earth);
  display: inline-block;
}
h2.howto-title {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 22px;
  text-wrap: pretty;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "dlig" 0;
}
.howto-lead {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--earth);
  margin: 0 auto;
  max-width: 56ch;
}
.howto-divider {
  text-align: center;
  margin: clamp(48px, 7vh, 72px) auto clamp(40px, 6vh, 56px);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  max-width: 720px;
  opacity: 0.9;
}
.howto-divider::before,
.howto-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--rule);
  display: inline-block;
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .howto-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 28px; }
}
@media (max-width: 520px) {
  .howto-grid { grid-template-columns: 1fr; gap: 48px; max-width: 320px; }
}

.howto-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.howto-step .howto-phone {
  position: relative;
  width: 100%;
  max-width: 200px;
  background: #1a1815;
  border-radius: 26px;
  padding: 5px;
  box-shadow:
    0 24px 48px -18px rgba(42, 59, 63, 0.32),
    0 4px 12px rgba(42, 59, 63, 0.10),
    0 0 0 1px rgba(20, 18, 15, 0.08);
  transition: transform 360ms cubic-bezier(0.22, 0.7, 0.18, 1);
}
.howto-step:hover .howto-phone { transform: translateY(-6px); }
.howto-step .howto-phone::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 13px;
  background: #0a0908;
  border-radius: 8px;
  z-index: 2;
}
.howto-step .howto-phone picture { display: block; width: 100%; }
/* Fix arány — a step screenshotok különböző méretűek, picture/img cover-rel
   egyenlő magasak lesznek. */
.howto-step .howto-phone img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 740 / 1240;
  object-fit: cover;
  object-position: top center;
  border-radius: 21px;
  background: var(--cream);
}
.howto-step .howto-num {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--terra);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.01em;
}
.howto-step h3 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "dlig" 0;
}
.howto-step p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--earth);
  margin: 0;
  max-width: 28ch;
}
.howto-step .howto-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* ==========================================================================
   BLOKK CTA — adminban kapcsolható gomb a blokk után + ugró anchor
   ========================================================================== */

/* Anchor target — minden blokk elé bekerül. A scroll-margin-top biztosítja,
   hogy ugrás után a célblokk címe ne ragadjon a viewport tetejéhez. */
.block-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 24px;
}

/* Blokk-aljak tighter spacing — az egyes <section>-ök content-jében inline
   `style="padding: X Y 96px"` van, ami minden external CSS-t felülír. !important
   kell hogy az alsó paddingot egységesen felére csökkentsük. A `main > section`
   selector csak a top-level (homepage) blokkokra hat, máshol nem. */
main > section {
  padding-bottom: 48px !important;
}

/* Defenzív cursor — minden CTA gomb ÉS gyermek elemén (text, arrow, svg) pointer.
   User report: desktopon csak a gomb fele mutatta a pointer-t; a `<span class="arrow">`
   és a text node között a cursor inheritance néha auto-ra esik vissza bizonyos
   böngészőkben. Az explicit override biztosít konzisztens viselkedést. */
.btn-primary, .btn-primary *,
.cta-full, .cta-full *,
.block-cta, .block-cta *,
.msc-btn, .msc-btn *,
.nav-cta, .nav-cta *,
.sub-cta, .sub-cta * {
  cursor: pointer;
}

/* CTA gomb row — a blokk content után, középre. A .btn-primary már létezik.
   FONTOS: position:relative + z-index hogy a felette lévő <section> (ami
   gyakran position:relative és belóg a saját bottom-paddingjával erre a div-re
   a negative margin miatt) ne interceptálja a kattintásokat a gomb felső felén. */
.block-cta-row {
  display: flex;
  justify-content: center;
  padding: 0 clamp(20px, 5vw, 56px) clamp(56px, 9vh, 96px);
  margin-top: clamp(-32px, -4vh, -16px);
  position: relative;
  z-index: 1;
}
.block-cta-row .block-cta {
  /* öröklődik a .btn-primary-ból; itt csak biztos hogy ne legyen text-decoration */
  text-decoration: none;
}

/* ==========================================================================
   MOBILE STICKY CTA — alulról felcsúszó "Elkezdem" sáv (admin kapcsolható)
   ========================================================================== */
/* Sticky CTA — alulról felcsúszó sáv. Mobilon teljes szélességű, desktopon
   középen lebegő kompakt sáv. Lassú, finom animáció. */
.mobile-sticky-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: var(--cream);
  box-shadow:
    0 -1px 0 rgba(42, 59, 63, 0.06),
    0 -12px 28px -4px rgba(42, 59, 63, 0.22),
    0 -28px 60px -16px rgba(42, 59, 63, 0.18);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 620ms cubic-bezier(0.22, 0.7, 0.18, 1), opacity 460ms ease;
  will-change: transform, opacity;
}
.mobile-sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-sticky-cta .msc-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}
.mobile-sticky-cta .msc-brand {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--earth);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-sticky-cta .msc-price {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.mobile-sticky-cta .msc-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: var(--earth);
  opacity: 0.7;
  line-height: 1.3;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-sticky-cta .msc-btn {
  flex: 0 0 auto;
  background: var(--terra);
  color: var(--cream);
  padding: 13px 22px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 160ms;
}
.mobile-sticky-cta .msc-btn:hover,
.mobile-sticky-cta .msc-btn:active {
  background: var(--terra-dark);
}
.mobile-sticky-cta .msc-arrow {
  font-size: 16px;
  line-height: 1;
}

/* CookieYes revisit-gomb (bal alsó) ne átfedje a stickyt mobilon, amikor a
   sticky tényleg látható. :has() szelektor ~95%+ browser coverage 2025-től. */
@media (max-width: 720px) {
  body:has(.mobile-sticky-cta.is-visible) .cky-revisit-bottom-left,
  body:has(.mobile-sticky-cta.is-visible) .cky-btn-revisit-consent {
    transform: translateY(-76px);
    transition: transform 260ms ease;
  }
}

/* Desktop variant — nem teljes szélességű, középen lebegő kompakt sáv. */
@media (min-width: 721px) {
  .mobile-sticky-cta {
    left: 50%;
    right: auto;
    bottom: 24px;
    width: min(640px, calc(100vw - 48px));
    border-radius: 12px;
    padding: 14px 18px;
    padding-bottom: 14px;
    box-shadow:
      0 18px 40px -10px rgba(42, 59, 63, 0.28),
      0 6px 16px -6px rgba(42, 59, 63, 0.18);
    transform: translate(-50%, calc(100% + 40px));
  }
  .mobile-sticky-cta.is-visible {
    transform: translate(-50%, 0);
  }
}

/* ==========================================================================
   Ghost button — outlined verzió a btn-primary mellé (Belépés a hero-ban stb.)
   ========================================================================== */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--terra);
  border: 1px solid var(--terra);
  padding: 14px 28px; /* 1px kevesebb mint btn-primary, hogy a border miatt egy magasságban legyen */
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.btn-ghost:hover {
  background: var(--terra);
  color: var(--cream);
}
.btn-ghost:active { transform: translateY(1px); }
.btn-ghost .arrow {
  display: inline-block;
  transition: transform 180ms ease;
}
.btn-ghost:hover .arrow { transform: translateX(3px); }

/* ==========================================================================
   Belépés popup — kis, fókuszált modal
   ========================================================================== */
.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 59, 63, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: safe center;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  transition: opacity 220ms ease;
}
.login-overlay.is-open {
  display: flex;
  opacity: 1;
}
.login-modal {
  background: var(--card);
  border-radius: 4px;
  max-width: 460px;
  width: 100%;
  padding: clamp(32px, 5vh, 48px);
  position: relative;
  box-shadow: 0 30px 80px rgba(42, 59, 63, 0.25);
  transform: translateY(8px);
  transition: transform 280ms ease;
}
.login-overlay.is-open .login-modal { transform: translateY(0); }
.login-modal .eyebrow { margin-bottom: 14px; }
.login-modal h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 14px;
}
.login-modal p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--earth);
  margin: 0 0 24px;
}
.login-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--earth);
  font-size: 22px;
  line-height: 1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease;
}
.login-close:hover {
  background: rgba(91, 70, 54, 0.08);
  color: var(--ink);
}
.login-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.login-actions .login-go {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: var(--cream);
  border: 0;
  padding: 13px 22px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 160ms ease;
  flex: 1 1 auto;
  justify-content: center;
}
.login-actions .login-go:hover { background: var(--terra-dark); }
.login-actions .login-go .arrow {
  display: inline-block;
  transition: transform 180ms ease;
}
.login-actions .login-go:hover .arrow { transform: translateX(3px); }
.login-actions .login-cancel {
  background: transparent;
  border: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--earth);
  cursor: pointer;
  padding: 8px 12px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: var(--rule);
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.login-actions .login-cancel:hover {
  color: var(--terra);
  text-decoration-color: var(--terra);
}
