/* ============================================================
   ZENTUS — GEO landing (/webshop). A Pencil-terv (Subpage GEO v2)
   layoutját követi, a brand-tokeneket a zentus.css adja.
   ============================================================ */

.geo { --geo-maxw: 1200px; color: var(--text); }

/* Láthatóbb scroll-reveal CSAK a webshopon: nagyobb elmozdulás + kicsit hosszabb
   beúszás, mert a nagy blokkoknál (kártyák, timeline-lépések) a globális 20px/660ms
   alig érzékelhető. A motion.css után tölt, azonos specificitás -> ez nyer; az .in
   végállapot (translateY(0)) magasabb specificitású, így az nyer reveal-kor. A
   transition-delay (var(--rd) stagger) érintetlen marad. */
.js [data-reveal] {
  transform: translateY(40px);
  transition-duration: 850ms;
}

/* Animált kártyák (Forrásbontás mockup + Minta riport): a kártya utoljára úszik
   be (a webshop.js vezérli), benne a csíkok balról jobbra / alulról felfelé nőnek
   (--bd lépcső), a számértékek felpörögnek. A .js prefix miatt JS nélkül semmi
   sincs elrejtve, és a csíkok teljes méretükön látszanak. */
.js [data-anim-card] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 850ms var(--ease-quint), transform 850ms var(--ease-quint);
  will-change: opacity, transform;
}
.js [data-anim-card].is-in {
  opacity: 1;
  transform: none;
}
/* függőleges csíkok (mockup oszlopdiagram) — alulról felfelé */
.js [data-anim-card] .geo-bars span {
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s var(--ease-quint);
  transition-delay: var(--bd, 0ms);
  will-change: transform;
}
.js [data-anim-card].is-charted .geo-bars span {
  transform: scaleY(1);
}
/* vízszintes csíkok (riport sávok) — balról jobbra */
.js [data-anim-card] .geo-rb-track > i {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s var(--ease-quint);
  transition-delay: var(--bd, 0ms);
  will-change: transform;
}
.js [data-anim-card].is-charted .geo-rb-track > i {
  transform: scaleX(1);
}
.geo *, .geo *::before, .geo *::after { box-sizing: border-box; }
.geo .container { max-width: var(--geo-maxw); margin-inline: auto; padding-inline: var(--gutter); }
.geo-section { padding-block: clamp(64px, 8vw, 120px); }

/* ---- megosztott tipográfia ---- */
.geo-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.geo-eyebrow--dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: none; }
.geo-eyebrow--ice { color: var(--ice); }
.geo-h2 { color: var(--navy); font-size: clamp(1.75rem, 1.3rem + 2vw, 2.625rem); font-weight: 700; letter-spacing: -1px; line-height: 1.12; margin: 14px 0 0; }
.geo-h2--center { text-align: center; }
.geo-h2--ice { color: var(--ice); }
.geo-lead { color: var(--text); font-size: clamp(1rem, 0.95rem + 0.3vw, 1.0625rem); line-height: 1.6; margin: 16px 0 0; max-width: 60ch; }
.geo-lead--center { text-align: center; margin-inline: auto; }

/* ============================================================
   01 · HERO
   ============================================================ */
.geo-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #F2F3F7 0%, #E9EEF8 100%); padding: clamp(80px, 11vw, 120px) var(--gutter) clamp(88px, 12vw, 140px); }
.geo-hero-wm { position: absolute; top: 40px; right: max(-60px, calc(50% - 620px)); width: 440px; height: auto; opacity: 0.06; pointer-events: none; }
.geo-hero-inner { position: relative; max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.geo-hero-h1 { color: var(--navy); font-size: clamp(2rem, 1.3rem + 3.4vw, 3rem); font-weight: 700; letter-spacing: -1.2px; line-height: 1.1; margin: 22px 0 0; }
.geo-hero-lead { color: var(--text); font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.125rem); line-height: 1.55; margin: 20px auto 0; max-width: 60ch; }

/* ---- teszt-form (progresszív) ---- */
.geo-testblock { width: 100%; max-width: 480px; margin: 28px auto 0; }
.geo-form { display: flex; flex-direction: column; gap: 12px; }
.geo-url-row { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 16px 20px; box-shadow: 0 10px 28px rgba(48,60,96,0.08); transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.geo-url-row:focus-within { border-color: var(--blue); box-shadow: 0 10px 28px rgba(24,132,240,0.16); }
.geo-url-icon { color: var(--text-muted); display: inline-flex; flex: none; }
.geo-url-input { flex: 1 1 auto; min-width: 0; border: 0; background: transparent; font-family: var(--font); font-size: 17px; color: var(--navy); padding: 0; }
.geo-url-input::placeholder { color: #9aa3b5; }
.geo-url-input:focus { outline: none; }
.geo-kbd { flex: none; font-size: 11px; font-weight: 600; color: var(--text-muted); background: #F2F3F7; border: 1px solid var(--border); border-radius: 6px; padding: 3px 8px; }

/* progresszív bővülés: 0fr → 1fr (height-mentes animáció) */
.geo-expand { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.32s cubic-bezier(0.22, 1, 0.36, 1); }
.geo-form.is-expanded .geo-expand, .geo-close-form.is-expanded .geo-expand { grid-template-rows: 1fr; }
.geo-expand-inner { overflow: hidden; min-height: 0; display: flex; flex-direction: column; gap: 12px; padding-top: 2px; }
.geo-form.is-expanded .geo-expand-inner { padding-top: 4px; }
.geo-field { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.geo-field label { font-size: 13px; font-weight: 600; color: var(--navy); }
.geo-field input { font-family: var(--font); font-size: 15px; color: var(--navy); padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--r-btn); background: var(--white); }
.geo-field input:focus-visible { outline: none; box-shadow: var(--focus-ring); border-color: var(--blue); }
.geo-consent { display: flex; align-items: flex-start; gap: 9px; text-align: left; color: var(--text); font-size: 13px; line-height: 1.5; }
.geo-consent input { margin-top: 3px; width: 17px; height: 17px; flex: none; accent-color: var(--blue); }
.geo-consent a { color: var(--blue-link); }
.geo-consent a:hover { text-decoration: underline; }
.geo-submit { width: 100%; min-height: 52px; font-size: 16px; }
.geo-note { color: var(--text-muted); font-size: 13px; text-align: center; margin: 14px 0 0; }
/* hero platform-logók (a főoldali .geo-partners méretben, középre) */
.geo-hero-partners { display: flex; justify-content: center; margin: 26px auto 0; }
.geo-msg { margin: 0; font-size: 13.5px; min-height: 1.2em; text-align: center; }
.geo-msg.is-error { color: var(--error); }
.geo-msg.is-success { color: var(--success); font-weight: 600; }
.geo-msg.is-sending { color: var(--text-muted); }
.geo-form.is-success .geo-url-row, .geo-form.is-success .geo-expand, .geo-form.is-success .geo-submit,
.geo-close-form.is-success .geo-close-row, .geo-close-form.is-success .geo-expand { display: none; }

/* ============================================================
   02 · PROBLÉMA + GEO
   ============================================================ */
.geo-problem { background: var(--bg); }
.geo-problem-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 64px); align-items: start; }
.geo-problem-left .geo-h2 { max-width: 18ch; }
.geo-pains { list-style: none; margin: 36px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.geo-pains li { display: flex; gap: 18px; align-items: flex-start; }
.geo-pain-n { flex: none; width: 32px; color: var(--blue); font-size: 20px; font-weight: 700; letter-spacing: -0.4px; }
.geo-pains li > span:last-child { color: var(--navy); font-size: 16px; font-weight: 500; line-height: 1.5; }

.geo-geocard { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-card); padding: clamp(24px, 3vw, 36px); box-shadow: 0 12px 40px rgba(48,60,96,0.10); }
.geo-geocard-title { color: var(--navy); font-size: 22px; font-weight: 700; letter-spacing: -0.4px; margin: 0 0 22px; }
.geo-geocard-rows { display: flex; flex-direction: column; gap: 14px; }
.geo-georow { display: flex; gap: 14px; align-items: flex-start; background: #F2F3F7; border: 1px solid var(--border); border-radius: 14px; padding: 16px; }
.geo-georow--accent { background: rgba(24,132,240,0.04); border-color: rgba(24,132,240,0.2); }
.geo-georow-ic { flex: none; width: 32px; height: 32px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; }
.geo-georow-ic--muted { background: var(--white); color: var(--text-muted); border: 1px solid var(--border); }
.geo-georow-ic--blue { background: var(--blue); color: var(--white); }
.geo-georow-tx { display: flex; flex-direction: column; gap: 3px; }
.geo-georow-l { font-size: 13px; font-weight: 700; letter-spacing: 0.4px; color: var(--text-muted); }
.geo-georow-l--blue { color: var(--blue); }
.geo-georow-tx > span:last-child { color: var(--navy); font-size: 14px; line-height: 1.5; }
.geo-geocard-div { border: 0; border-top: 1px solid var(--border); margin: 22px 0; }
.geo-geocard-close { margin: 0; color: var(--text); font-size: 14px; font-style: italic; line-height: 1.55; }

/* ============================================================
   03 · NEM ELMÉLETBŐL
   ============================================================ */
.geo-proof { background: var(--white); }
.geo-proof-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 80px); align-items: center; }
.geo-proof-p { color: var(--text); font-size: 16px; line-height: 1.7; margin: 18px 0 0; max-width: 56ch; }
.geo-signature { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.geo-sig-photo { flex: none; width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.geo-sig-tx { display: flex; flex-direction: column; gap: 2px; }
.geo-sig-name { color: var(--navy); font-size: 15px; font-weight: 700; }
.geo-sig-row { color: var(--text-muted); font-size: 13px; }
.geo-sig-li { color: var(--blue); font-weight: 600; }
.geo-sig-li:hover { text-decoration: underline; }

/* analytics mockup */
.geo-mockup { margin: 0; background: var(--white); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px rgba(48,60,96,0.12); }
.geo-mockup-top { display: flex; align-items: center; gap: 10px; background: #F2F3F7; border-bottom: 1px solid var(--border); padding: 14px; }
.geo-mockup-dots { display: inline-flex; gap: 6px; flex: none; }
.geo-mockup-dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.geo-mockup-dots i:nth-child(1) { background: rgba(214,69,69,0.4); }
.geo-mockup-dots i:nth-child(2) { background: rgba(217,146,10,0.4); }
.geo-mockup-dots i:nth-child(3) { background: rgba(31,169,113,0.4); }
.geo-mockup-url { flex: 1; text-align: center; color: var(--text-muted); font-size: 11px; font-weight: 500; }
.geo-mockup-body { padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.geo-mockup-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.geo-mockup-h { color: var(--navy); font-size: 14px; font-weight: 700; }
.geo-mockup-sub { color: var(--text-muted); font-size: 11px; }
.geo-mockup-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(217,146,10,0.1); color: #9a6b08; border-radius: 999px; padding: 5px 10px; font-size: 9px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; }
.geo-mockup-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--warning); }
.geo-chart { display: flex; flex-direction: column; gap: 6px; }
.geo-bars { display: flex; align-items: flex-end; gap: 5px; height: 140px; }
.geo-bars span { flex: 1; border-radius: 4px; background: #C5D6EA; opacity: 0.55; }
.geo-bars span.is-ai { background: var(--blue); opacity: 0.5; }
.geo-chart-lbl { display: flex; justify-content: space-between; color: var(--text-muted); font-size: 10px; padding-top: 4px; }
.geo-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.geo-kpi { display: flex; flex-direction: column; gap: 4px; background: #F2F3F7; border-radius: 12px; padding: 14px; }
.geo-kpi-l { color: var(--text-muted); font-size: 10px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.geo-kpi-v { color: var(--text-muted); font-size: 22px; font-weight: 700; letter-spacing: -0.5px; }
.geo-kpi-t { display: inline-flex; align-items: center; gap: 4px; color: var(--success); font-size: 11px; font-weight: 600; }
.geo-mockup-cap { color: var(--text-muted); font-size: 11px; font-style: italic; line-height: 1.5; text-align: center; margin: 12px 0 0; }

/* ============================================================
   04 · MIT ÉPÍTÜNK + RIPORT
   ============================================================ */
.geo-build { background: var(--bg); }
.geo-build-inner { display: flex; flex-direction: column; gap: 64px; }
.geo-build-head { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.geo-steps { list-style: none; margin: 0 auto; padding: 0; max-width: 820px; width: 100%; }
.geo-step { position: relative; display: flex; gap: 24px; }
.geo-step-n { position: relative; z-index: 1; flex: none; width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--white); border: 1.5px solid var(--blue); color: var(--blue); font-size: 14px; font-weight: 700; }
/* a számozott körök közti összekötő vonal a teljes közt kitölti */
.geo-step:not(:last-child)::after { content: ""; position: absolute; left: 21px; top: 50px; bottom: 6px; width: 2px; background: var(--blue); opacity: 0.22; }
.geo-step-tx { padding: 8px 0 36px; }
.geo-step:last-child .geo-step-tx { padding-bottom: 4px; }
.geo-step-tx h3 { color: var(--navy); font-size: 19px; font-weight: 700; letter-spacing: -0.3px; line-height: 1.2; margin: 0; }
.geo-step-tx p { color: var(--text); font-size: 15px; line-height: 1.6; margin: 6px 0 0; max-width: 62ch; }

.geo-report { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(40px, 5vw, 64px); align-items: center; }
.geo-report-h { color: var(--navy); font-size: clamp(1.5rem, 1.2rem + 1.2vw, 1.875rem); font-weight: 700; letter-spacing: -0.7px; line-height: 1.15; margin: 16px 0 0; }
.geo-report-card { position: relative; margin: 0; background: var(--white); border: 1px solid var(--border); border-radius: 24px; box-shadow: 0 24px 60px rgba(48,60,96,0.12); }
.geo-report-badge { position: absolute; top: -14px; left: -10px; display: inline-flex; align-items: center; gap: 6px; background: var(--warning); color: var(--white); border-radius: 999px; padding: 6px 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; box-shadow: 0 4px 12px rgba(217,146,10,0.35); }
.geo-report-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.geo-report-title { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-size: 15px; font-weight: 600; }
.geo-report-title svg { color: var(--blue); }
.geo-report-date { color: var(--text-muted); font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.geo-report-metrics { display: grid; grid-template-columns: repeat(3, 1fr); padding: 24px; border-bottom: 1px solid var(--border); }
.geo-report-metrics > div { display: flex; flex-direction: column; gap: 6px; padding-inline: 24px; }
.geo-report-metrics > div:first-child { padding-left: 0; border-right: 1px solid var(--border); }
.geo-report-metrics > div:nth-child(2) { border-right: 1px solid var(--border); }
.geo-report-metrics > div:last-child { padding-right: 0; }
.geo-rm-n { color: var(--navy); font-size: 32px; font-weight: 700; letter-spacing: -1px; line-height: 1; }
.geo-rm-n--blue { color: var(--blue); }
.geo-rm-l { color: var(--text-muted); font-size: 11px; font-weight: 500; letter-spacing: 0.4px; }
.geo-report-bars { display: flex; flex-direction: column; gap: 14px; padding: 24px; }
.geo-rb-lbl { color: var(--text-muted); font-size: 10px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; }
.geo-rb { display: flex; align-items: center; gap: 12px; }
.geo-rb-n { flex: none; width: 78px; color: var(--navy); font-size: 13px; font-weight: 500; }
.geo-rb-track { flex: 1; height: 8px; border-radius: 999px; background: var(--bg); overflow: hidden; }
.geo-rb-track i { display: block; height: 100%; border-radius: 999px; background: var(--blue); }
.geo-rb-track i.is-navy { background: var(--navy); }
.geo-rb-p { flex: none; width: 34px; text-align: right; color: var(--navy); font-size: 13px; font-weight: 600; }

/* ============================================================
   05 · HORIZONT (graphite)
   ============================================================ */
.geo-horizon { position: relative; overflow: hidden; background: var(--graphite); }
.geo-horizon-wm { position: absolute; top: 40px; right: max(-40px, calc(50% - 640px)); width: 520px; height: auto; opacity: 0.04; pointer-events: none; }
.geo-horizon-inner { position: relative; display: flex; flex-direction: column; gap: 40px; }
.geo-horizon-head { max-width: 800px; }
.geo-horizon-p { color: rgba(216,240,240,0.8); font-size: 16px; line-height: 1.65; margin: 18px 0 0; max-width: 70ch; }
.geo-horizon-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.geo-hcard { border-radius: 18px; padding: 32px; }
.geo-hcard--now { background: #232a3d; border: 1px solid rgba(255,255,255,0.1); }
.geo-hcard--soon { background: rgba(24,132,240,0.08); border: 1px solid rgba(24,132,240,0.2); }
.geo-hcard-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.geo-hcard-ic { width: 36px; height: 36px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; background: rgba(24,132,240,0.13); color: var(--ice); }
.geo-hcard-ic--blue { background: var(--blue); color: var(--white); }
.geo-hcard-e { color: rgba(216,240,240,0.7); font-size: 11px; font-weight: 700; letter-spacing: 0.6px; }
.geo-hcard h3 { color: var(--ice); font-size: 22px; font-weight: 700; letter-spacing: -0.4px; margin: 0 0 10px; }
.geo-hcard p { color: rgba(216,240,240,0.75); font-size: 14px; line-height: 1.65; margin: 0; }
.geo-horizon-foot { display: flex; gap: 10px; align-items: flex-start; color: rgba(216,240,240,0.6); font-size: 13px; font-style: italic; line-height: 1.65; margin: 0; max-width: 80ch; }
.geo-horizon-foot svg { flex: none; margin-top: 2px; }

/* ============================================================
   06 · GYIK
   ============================================================ */
.geo-faq { background: var(--white); }
.geo-faq-grid { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: clamp(40px, 6vw, 80px); align-items: start; }
.geo-faq-sub { color: var(--text); font-size: 14px; line-height: 1.65; margin: 16px 0 0; }
.geo-faq-list { display: flex; flex-direction: column; gap: 12px; }
.geo-q { border: 1px solid var(--border); border-radius: var(--r-card); background: var(--white); overflow: hidden; }
.geo-q[open] { border-color: var(--blue); border-width: 1.5px; }
.geo-q summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 28px; color: var(--navy); font-size: 17px; font-weight: 700; }
.geo-q summary::-webkit-details-marker { display: none; }
.geo-q summary:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--r-card); }
.geo-q-ic { position: relative; flex: none; width: 32px; height: 32px; border-radius: 50%; background: rgba(24,132,240,0.07); }
.geo-q-ic::before, .geo-q-ic::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--blue); }
.geo-q-ic::before { width: 12px; height: 2px; }
.geo-q-ic::after { width: 2px; height: 12px; transition: transform 0.2s ease; }
.geo-q[open] .geo-q-ic { background: var(--blue); }
.geo-q[open] .geo-q-ic::before, .geo-q[open] .geo-q-ic::after { background: var(--white); }
.geo-q[open] .geo-q-ic::after { transform: rotate(90deg); }
.geo-q-a { padding: 0 28px 28px; }
.geo-q-a p { margin: 0; color: var(--text); font-size: 15px; line-height: 1.65; max-width: 70ch; }

/* ============================================================
   07 · ZÁRÓ CTA
   ============================================================ */
.geo-close { background: var(--bg); }
.geo-close-panel { position: relative; overflow: hidden; max-width: 1080px; margin-inline: auto; text-align: center; background: linear-gradient(135deg, #FAFBFD 0%, #E8EFFA 100%); border: 1px solid var(--border); border-radius: var(--r-card-lg); padding: clamp(40px, 6vw, 72px); box-shadow: 0 24px 60px rgba(24,132,240,0.12); display: flex; flex-direction: column; align-items: center; }
.geo-close-wm { position: absolute; top: -80px; right: -40px; width: 380px; height: auto; opacity: 0.06; pointer-events: none; }
.geo-close-eyebrow { position: relative; display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; color: var(--navy); font-size: 11px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; }
.geo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.geo-close-h { position: relative; color: var(--navy); font-size: clamp(1.75rem, 1.3rem + 2.2vw, 2.75rem); font-weight: 700; letter-spacing: -1.1px; line-height: 1.1; margin: 20px 0 0; max-width: 20ch; }
.geo-close-s { position: relative; color: var(--text); font-size: 17px; line-height: 1.6; margin: 18px auto 0; max-width: 62ch; }
.geo-close-test { position: relative; width: 100%; max-width: 560px; margin: 28px auto 0; }
.geo-close-row { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 6px 6px 6px 14px; box-shadow: 0 8px 24px rgba(48,60,96,0.1); }
.geo-close-row:focus-within { border-color: var(--blue); }
.geo-close-row .geo-url-input { font-size: 15px; }
.geo-close-row .btn { flex: none; }
.geo-close-test .geo-expand-inner--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; text-align: left; }
.geo-close-test .geo-consent { grid-column: 1 / -1; }
.geo-booking { position: relative; color: var(--text-muted); font-size: 14px; margin: 14px 0 0; }
.geo-booking a { color: var(--blue-link); font-weight: 600; }
.geo-booking a:hover { text-decoration: underline; }
.geo-trust { position: relative; list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; margin: 24px 0 0; padding: 0; }
.geo-trust li { display: inline-flex; align-items: center; gap: 6px; color: var(--text); font-size: 13px; font-weight: 500; }
.geo-trust svg { color: var(--success); }
.geo-close-div { width: 100%; max-width: 560px; border: 0; border-top: 1px solid var(--border); margin: 32px 0 0; }
.geo-platforms { position: relative; display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 24px; }
.geo-platforms-l { color: var(--text-muted); font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
/* platform-logók kicsiben, szürkével (mint az index.html-en) */
.geo-platforms .geo-partners { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 36px; }
.geo-platforms .geo-partners img { height: 22px; width: auto; opacity: 0.5; filter: grayscale(1); transition: opacity 0.2s ease, filter 0.2s ease; }
.geo-platforms .geo-partners img:hover { opacity: 0.85; filter: grayscale(0); }
.geo-platforms-note { color: var(--text-muted); font-size: 12px; font-style: italic; }
/* GYIK — az index .faq-* osztályait használjuk; a szekció csak keretet ad */
.geo-faq .faq-grid { padding-inline: 0; }
.geo-faq-sub { color: var(--text); font-size: 14px; line-height: 1.65; margin: 16px 0 0; }

/* ============================================================
   RESZPONZÍV
   ============================================================ */
@media (max-width: 900px) {
  .geo-problem-grid, .geo-proof-grid, .geo-report, .geo-faq-grid { grid-template-columns: 1fr; }
  .geo-horizon-cards { grid-template-columns: 1fr; }
  .geo-proof-right { order: -1; }
  .geo-report-card { order: 2; }
  /* a GYIK ne tapadjon az oldal széléhez mobilon (a faq-grid padding-inline:0-t kapott) */
  .geo-faq .faq-grid { padding-inline: var(--gutter); }
}
@media (max-width: 560px) {
  .geo-kpis { grid-template-columns: 1fr; }
  /* az "Enter ↵" hint elveszi a helyet a szűk input elől — mobilon elrejtjük */
  .geo-kbd { display: none; }
  .geo-url-row { padding: 14px 16px; }
  .geo-report-metrics { grid-template-columns: 1fr; gap: 16px; }
  .geo-report-metrics > div { padding-inline: 0 !important; border-right: 0 !important; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
  .geo-report-metrics > div:last-child { border-bottom: 0; padding-bottom: 0; }
  .geo-close-test .geo-expand-inner--row { grid-template-columns: 1fr; }
  /* a záró CTA űrlap mobilon a hős-űrlaphoz hasonló: önálló bordered input-mező
     + alatta teljes szélességű gomb (nem a szűk fehér pillbe zsúfolva). */
  .geo-close-row { flex-direction: column; align-items: stretch; gap: 12px; background: transparent; border: 0; box-shadow: none; padding: 0; }
  .geo-close-row .geo-url-icon { display: none; }
  .geo-close-row .geo-url-input { width: 100%; background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 15px 18px; box-shadow: 0 10px 28px rgba(48,60,96,0.08); }
  .geo-close-row .btn { width: 100%; }
  .geo-platforms-logos { gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .geo-expand { transition: none; }
  .geo-q-ic::after { transition: none; }
}
