/* ============================================================
   BADOR — theme.css
   Statikus demo design rendszer
   FSE megfelelő: theme.json (a "központi agy": színpaletta,
   betűtípusok, térközök, blokkstílusok) + assets/css/custom.css
   (hover, transition, overlay effektek)
   ============================================================ */

/* ── DESIGN TOKENEK ──
   FSE megfelelő: theme.json → settings.color.palette,
   settings.typography.fontFamilies, settings.spacing */
:root {
  /* Színpaletta — theme.json: settings.color.palette */
  --offwhite: #F5F2EC;   /* slug: "offwhite"  name: "Törtfehér" — alap háttér */
  --sand:     #E8E0D0;   /* slug: "sand"      name: "Homok" — másodlagos háttér, chip */
  --navy:     #08205B;   /* slug: "navy"      name: "Tinta kék" — szöveg, sötét szekció */
  --steel:    #8FAFC8;   /* slug: "steel"     name: "Acélkék" — accent, kiemelés */
  --pale:     #DDEAF3;   /* slug: "pale"      name: "Halványkék" — világos szekció */
  --white:    #FFFFFF;   /* slug: "white"     name: "Fehér" — kártyák */

  /* Tipográfia — theme.json: settings.typography.fontFamilies */
  --serif: 'DM Serif Display', Georgia, serif;   /* slug: "heading" */
  --sans:  'Poppins', system-ui, sans-serif;     /* slug: "body" */

  /* Árnyék — theme.json: settings.shadow.presets */
  --shadow: 0 16px 52px rgba(8,32,91,.10);
}

/* ── ALAP ──
   FSE megfelelő: theme.json → styles.color, styles.typography */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--offwhite);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Pont-textúra — FSE megfelelő: assets/css/custom.css */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(circle, rgba(8,32,91,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}

/* ── FADEUP ANIMÁCIÓ — FSE megfelelő: assets/css/custom.css ── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ──
   FSE megfelelő: parts/header.html (wp:template-part "header":
   wp:site-title + wp:navigation) */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(245,242,236,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(8,32,91,.06);
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--serif); font-size: 20px; color: var(--navy);
  text-decoration: none; letter-spacing: .01em;
}
.nav-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--steel); flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 12.5px; font-weight: 300;
  color: rgba(8,32,91,.6);
  text-decoration: none;
  transition: color .2s;
}
.nav-link:hover { color: var(--navy); }
.nav-link.active { color: var(--navy); font-weight: 500; }
.nav-cta {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  color: var(--navy);
  border: 1.5px solid var(--steel);
  border-radius: 40px;
  padding: 9px 22px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--steel); color: white; }

/* ── HERO ──
   FSE megfelelő: patterns/hero-featured.php */
.hero-section {
  position: relative; z-index: 1;
  padding: 80px 48px 0;
}
.hero-text {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.hero-eyebrow {
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--steel);
  margin-bottom: 18px;
  display: block;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--steel);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 7px;
}
.hero-sub {
  font-size: 16px; font-weight: 300;
  color: rgba(8,32,91,.58);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
  justify-content: center;
}
.chip {
  font-size: 12px; font-weight: 300;
  background: var(--sand);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(8,32,91,.07);
}
.hero-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--offwhite);
  background: var(--navy);
  border-radius: 50px;
  padding: 16px 40px;
  text-decoration: none;
  box-shadow: 0 10px 34px rgba(8,32,91,.24);
  transition: transform .2s ease, background .2s;
  border: none; cursor: pointer;
}
.hero-btn:hover { transform: translateY(-3px); background: #0a2a73; }
.hero-note {
  font-size: 11px; font-weight: 300;
  color: rgba(8,32,91,.36);
  margin-top: 13px;
}

/* ── HERO STAGE (kártyák) — patterns/hero-featured.php része ── */
.hero-stage {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  padding: 20px 40px 0;
  min-height: 360px;
}
.h-bubble {
  position: absolute;
  border-radius: 12px;
  padding: 11px 15px;
  font-size: 11px; font-weight: 300;
  color: var(--navy); line-height: 1.58;
  box-shadow: 0 8px 24px rgba(8,32,91,.09);
  border: 1px solid rgba(8,32,91,.07);
  max-width: 158px;
  pointer-events: none;
  z-index: 10;
}
.hb-left {
  background: var(--sand);
  left: 20px; top: 50%;
  transform: translateY(-50%) rotate(-2deg);
  animation: floatA 4s ease-in-out infinite;
}
.hb-right {
  background: var(--offwhite);
  right: 20px; top: 40%;
  transform: translateY(-50%) rotate(2.5deg);
  border: 1px solid var(--sand);
  animation: floatB 5s ease-in-out infinite;
}
.h-card {
  flex-shrink: 0;
  border-radius: 18px;
  position: relative;
}
.hc-left {
  background: var(--navy);
  width: 224px;
  padding: 22px;
  transform: rotate(-4deg) translateY(28px);
  z-index: 1;
  box-shadow: 0 24px 60px rgba(8,32,91,.22);
}
.hc-center {
  background: var(--white);
  width: 288px;
  padding: 22px;
  border: 1px solid rgba(8,32,91,.06);
  z-index: 3;
  box-shadow: 0 28px 72px rgba(8,32,91,.13);
}
.hc-right {
  background: var(--pale);
  width: 210px;
  padding: 22px;
  transform: rotate(3.5deg) translateY(20px);
  z-index: 2;
  box-shadow: 0 20px 52px rgba(8,32,91,.10);
}
.nc-eyebrow {
  font-size: 8.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(245,242,236,.42);
  margin-bottom: 10px; display: block;
}
.nc-title {
  font-family: var(--serif);
  font-size: 22px; color: var(--offwhite);
  margin-bottom: 18px; line-height: 1.1;
}
.nc-step {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  background: rgba(245,242,236,.06);
  border: 1px solid rgba(245,242,236,.1);
  font-size: 11.5px; font-weight: 300;
  color: rgba(245,242,236,.72);
  margin-bottom: 6px;
  line-height: 1.45;
}
.nc-step-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.nc-arrow {
  text-align: center;
  font-size: 10px;
  color: rgba(245,242,236,.25);
  margin: -2px 0 2px;
}
.sc-eyebrow {
  font-size: 8.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(8,32,91,.42);
  margin-bottom: 12px; display: block;
}
.sc-icon-wrap {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(8,32,91,.2);
}
.sc-title {
  font-family: var(--serif);
  font-size: 18px; color: var(--navy);
  margin-bottom: 4px;
}
.sc-sub {
  font-size: 11px; font-weight: 300;
  color: rgba(8,32,91,.5); margin-bottom: 14px;
}
.sc-bullet {
  font-size: 11px; font-weight: 300;
  color: rgba(8,32,91,.62);
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 5px;
}
.sc-bullet::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--steel); flex-shrink: 0;
}
.hc-center::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(8,32,91,.04) 1px, transparent 1px);
  background-size: 18px 18px;
  border-radius: 18px;
  pointer-events: none;
}
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--sand);
}
.card-logo {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--serif); font-size: 14px; color: var(--navy);
}
.card-logo-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--steel); }
.card-badge {
  font-size: 8.5px; font-weight: 500; text-transform: uppercase;
  letter-spacing: .1em; background: var(--pale);
  color: var(--navy); padding: 3px 10px; border-radius: 14px;
}
.card-page-title {
  font-family: var(--serif);
  font-size: 16px; color: var(--navy);
  margin-bottom: 14px;
}
.task-list { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.task-row {
  display: grid;
  grid-template-columns: 18px 1fr 68px 64px;
  align-items: center; gap: 0;
  padding: 7px 8px;
  border-radius: 7px;
  border: 1px solid transparent;
  transition: border-color .2s, background .2s;
  cursor: default;
}
.task-row:hover { background: rgba(8,32,91,.025); border-color: var(--sand); }
.task-check {
  width: 13px; height: 13px;
  border: 1.5px solid var(--steel);
  border-radius: 3px; flex-shrink: 0;
}
.task-check.done {
  background: var(--steel); border-color: var(--steel);
  display: flex; align-items: center; justify-content: center;
}
.task-check.done::after { content: '✓'; font-size: 8px; color: white; font-weight: 500; }
.task-name {
  font-size: 12px; font-weight: 300; color: var(--navy);
  padding-left: 8px; line-height: 1.4;
}
.task-name.done { color: rgba(8,32,91,.3); text-decoration: line-through; }
.task-pri {
  font-size: 9px; font-weight: 500; letter-spacing: .04em;
  padding: 2px 8px; border-radius: 10px; text-align: center;
}
.pri-high { background: rgba(8,32,91,.08); color: var(--navy); }
.pri-mid  { background: var(--pale); color: var(--navy); }
.pri-low  { background: var(--sand); color: rgba(8,32,91,.6); }
.task-date { font-size: 10px; font-weight: 300; color: rgba(8,32,91,.38); text-align: right; }
.card-status {
  display: flex; gap: 10px;
  padding-top: 11px;
  border-top: 1px solid var(--sand);
}
.cs-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 300; color: rgba(8,32,91,.42);
}
.cs-dot { width: 7px; height: 7px; border-radius: 50%; }

@keyframes floatA {
  0%,100% { transform: translateY(-50%) rotate(-2deg); }
  50%      { transform: translateY(calc(-50% - 7px)) rotate(-2deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(-50%) rotate(2.5deg); }
  50%      { transform: translateY(calc(-50% - 9px)) rotate(2.5deg); }
}

/* ── SZEKCIÓK ──
   FSE megfelelő: theme.json → styles.blocks["core/group"] variációk
   (lekerekített, egymásra csúszó színes szekciók) */
.section-navy {
  background: var(--navy);
  border-radius: 40px 40px 0 0;
  margin-top: -24px;
  position: relative; z-index: 10;
  padding: 96px 48px 116px;
}
.section-pale {
  background: var(--pale);
  border-radius: 40px 40px 0 0;
  margin-top: -24px;
  position: relative; z-index: 20;
  padding: 96px 48px 116px;
}
.section-sand {
  background: var(--sand);
  border-radius: 40px 40px 0 0;
  margin-top: -24px;
  position: relative; z-index: 25;
  padding: 96px 48px 116px;
}
.section-offwhite {
  background: var(--offwhite);
  border-radius: 40px 40px 0 0;
  margin-top: -24px;
  position: relative; z-index: 30;
  padding: 96px 48px 60px;
}

.inner { max-width: 980px; margin: 0 auto; }
.inner-narrow { max-width: 660px; margin: 0 auto; text-align: center; }

.eyebrow {
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--steel); margin-bottom: 12px; display: block;
}
.eyebrow-light {
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .18em;
  color: rgba(245,242,236,.42); margin-bottom: 12px; display: block;
}
.sec-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
  margin-bottom: 18px;
}
.sec-title em {
  font-style: italic;
  color: var(--steel);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
}
.sec-title-light { color: var(--offwhite); }
.sec-sub {
  font-size: 15px; font-weight: 300;
  color: rgba(8,32,91,.58); line-height: 1.8;
}
.sec-sub-light {
  font-size: 15px; font-weight: 300;
  color: rgba(245,242,236,.62); line-height: 1.8;
}

/* ── PROBLÉMA SZEKCIÓ (navy) — patterns/problem-section.php ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 52px;
}
.prob-card {
  background: rgba(245,242,236,.06);
  border: 1px solid rgba(245,242,236,.1);
  border-radius: 14px;
  padding: 22px 22px;
  font-size: 13.5px; font-weight: 300;
  color: rgba(245,242,236,.72);
  line-height: 1.7;
  transition: border-color .25s, background .25s;
  cursor: default;
}
.prob-card:hover {
  border-color: rgba(143,175,200,.45);
  background: rgba(143,175,200,.08);
}
.prob-icon { font-size: 20px; margin-bottom: 10px; display: block; opacity: .85; }
.prob-card strong {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: rgba(245,242,236,.9);
  margin-bottom: 5px;
}
.prob-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 28px);
  color: rgba(245,242,236,.88);
  line-height: 1.35;
  max-width: 580px;
  margin: 56px auto 0;
  text-align: center;
}

/* ── MEGOLDÁSOK SZEKCIÓ (pale) — patterns/solutions-grid.php ── */
.solutions-header { max-width: 620px; margin-bottom: 56px; }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.sol-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(8,32,91,.06);
  box-shadow: 0 8px 28px rgba(8,32,91,.06);
  transition: box-shadow .3s, transform .25s;
}
.sol-card:hover {
  box-shadow: 0 24px 64px rgba(8,32,91,.12);
  transform: translateY(-3px);
}
.sol-icon { font-size: 24px; margin-bottom: 14px; display: block; }
.sol-title {
  font-family: var(--serif);
  font-size: 18px; color: var(--navy);
  margin-bottom: 8px; line-height: 1.2;
}
.sol-text {
  font-size: 13px; font-weight: 300;
  color: rgba(8,32,91,.56); line-height: 1.72;
}
.sol-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 9px; font-weight: 500; text-transform: uppercase;
  letter-spacing: .08em; background: var(--pale);
  color: var(--navy); padding: 3px 10px; border-radius: 14px;
}

/* Hogyan működik — lépések */
.steps-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 34px);
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.18;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 26px;
  border: 1px solid rgba(8,32,91,.06);
  box-shadow: 0 8px 28px rgba(8,32,91,.06);
}
.step-num {
  font-family: var(--serif);
  font-size: 40px; color: var(--steel);
  opacity: .45; line-height: 1; margin-bottom: 16px;
}
.step-title {
  font-family: var(--serif);
  font-size: 18px; color: var(--navy);
  margin-bottom: 8px;
}
.step-text {
  font-size: 13px; font-weight: 300;
  color: rgba(8,32,91,.58); line-height: 1.72;
}

/* ── RÓLAM SZEKCIÓ (sand) — patterns/about-section.php ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(143,175,200,.35);
  box-shadow: 0 20px 60px rgba(8,32,91,.10);
  background: linear-gradient(160deg, var(--pale) 0%, var(--offwhite) 100%);
  position: relative;
}
.about-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--navy); color: var(--offwhite);
  border-radius: 12px; padding: 10px 16px;
  font-size: 11px; font-weight: 300; line-height: 1.55;
  box-shadow: 0 8px 22px rgba(8,32,91,.22);
}
.about-badge strong {
  font-weight: 500; display: block; font-size: 13px;
  margin-bottom: 1px;
}
.about-deco {
  position: absolute;
  top: -18px; right: -18px;
  background: var(--pale);
  border-radius: 12px; padding: 12px 16px;
  font-size: 10.5px; font-weight: 300;
  color: var(--navy); line-height: 1.55;
  box-shadow: 0 8px 24px rgba(8,32,91,.09);
  border: 1px solid rgba(8,32,91,.06);
  max-width: 148px;
  transform: rotate(-2.5deg);
  animation: floatA 4.5s ease-in-out infinite;
}
.about-right .eyebrow { text-align: left; }
.about-right .sec-title { color: var(--navy); margin-bottom: 22px; }
.about-right p {
  font-size: 14px; font-weight: 300;
  color: rgba(8,32,91,.65); line-height: 1.82;
  margin-bottom: 18px;
}
.about-right p:last-of-type { margin-bottom: 28px; }
.about-skills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.skill-chip {
  font-size: 12px; font-weight: 300;
  background: rgba(8,32,91,.07);
  color: var(--navy); padding: 6px 16px;
  border-radius: 20px;
}
.about-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 50px; padding: 13px 30px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.about-cta:hover { background: var(--navy); color: var(--offwhite); }

/* ── EMAIL SIGNUP SZEKCIÓ (offwhite) — patterns/newsletter.php ── */
.signup-inner {
  max-width: 880px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.signup-left .sec-title { color: var(--navy); }
.signup-left p {
  font-size: 14px; font-weight: 300;
  color: rgba(8,32,91,.6); line-height: 1.8;
  margin-bottom: 28px;
}
.perks { display: flex; flex-direction: column; gap: 12px; }
.perk {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 13.5px; font-weight: 300;
  color: rgba(8,32,91,.7); line-height: 1.65;
}
.perk-dot {
  width: 7px; height: 7px;
  border-radius: 50%; background: var(--steel);
  flex-shrink: 0; margin-top: 8px;
}
.signup-form-wrap {
  background: var(--white);
  border-radius: 20px; padding: 36px 30px;
  box-shadow: 0 16px 52px rgba(8,32,91,.09);
  border: 1px solid rgba(8,32,91,.06);
}
.form-eyebrow {
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--steel); margin-bottom: 10px; display: block;
}
.form-title {
  font-family: var(--serif);
  font-size: 22px; color: var(--navy);
  margin-bottom: 6px; line-height: 1.2;
}
.form-sub {
  font-size: 12.5px; font-weight: 300;
  color: rgba(8,32,91,.48); line-height: 1.65;
  margin-bottom: 24px;
}
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-input {
  width: 100%;
  font-family: var(--sans); font-size: 13.5px; font-weight: 300;
  color: var(--navy);
  background: var(--offwhite);
  border: 1px solid var(--sand);
  border-radius: 10px; padding: 13px 16px;
  outline: none;
  transition: border-color .2s;
}
.form-input:focus { border-color: var(--steel); }
.form-input::placeholder { color: rgba(8,32,91,.35); }
.form-btn {
  width: 100%;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--offwhite);
  background: var(--navy);
  border: none; border-radius: 50px;
  padding: 15px; cursor: pointer;
  box-shadow: 0 8px 28px rgba(8,32,91,.22);
  transition: transform .2s, background .2s;
}
.form-btn:hover { transform: translateY(-2px); background: #0a2a73; }
.form-note {
  font-size: 11px; font-weight: 300;
  color: rgba(8,32,91,.35); text-align: center;
  margin-top: 10px;
}

/* ── FOOTER ──
   FSE megfelelő: parts/footer.html (wp:template-part "footer") */
footer {
  background: var(--navy);
  padding: 52px 48px;
  position: relative; z-index: 35;
}
.footer-inner {
  max-width: 980px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--serif); font-size: 20px;
  color: var(--offwhite); text-decoration: none; letter-spacing: .01em;
}
.footer-logo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--steel); }
.footer-tagline {
  font-size: 12px; font-weight: 300;
  color: rgba(245,242,236,.42);
  margin-top: 5px;
}
.footer-links { display: flex; gap: 28px; align-items: center; }
.footer-link {
  font-size: 12px; font-weight: 300;
  color: rgba(245,242,236,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-link:hover { color: var(--offwhite); }
.footer-copy {
  width: 100%;
  font-size: 11px; font-weight: 300;
  color: rgba(245,242,236,.25);
  border-top: 1px solid rgba(245,242,236,.08);
  padding-top: 20px; margin-top: 8px;
}

/* ============================================================
   BLOG ARCHÍVUM
   FSE megfelelő: templates/archive.html +
   patterns/archive-header.php + wp:query / wp:post-template
   ============================================================ */
.archive-header {
  padding: 72px 48px 48px;
  text-align: center;
  position: relative; z-index: 1;
}
.archive-header .sec-title { color: var(--navy); }
.archive-header .sec-sub { max-width: 520px; margin: 0 auto; }

/* Kategória szűrő — FSE megfelelő: wp:categories / query filter blokk */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin: 32px auto 0;
  position: relative; z-index: 1;
}
.filter-chip {
  font-family: var(--sans);
  font-size: 12px; font-weight: 300;
  background: var(--sand);
  color: var(--navy);
  padding: 7px 18px;
  border-radius: 20px;
  border: 1px solid rgba(8,32,91,.07);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.filter-chip:hover { border-color: var(--steel); }
.filter-chip.active {
  background: var(--navy);
  color: var(--offwhite);
  border-color: var(--navy);
}

/* Cikk rács — FSE megfelelő: wp:query → wp:post-template */
.posts-section {
  padding: 56px 48px 96px;
  position: relative; z-index: 1;
}
.posts-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.post-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(8,32,91,.06);
  box-shadow: 0 8px 28px rgba(8,32,91,.06);
  transition: box-shadow .3s, transform .25s;
  display: flex; flex-direction: column;
  text-decoration: none;
}
.post-card:hover {
  box-shadow: 0 24px 64px rgba(8,32,91,.12);
  transform: translateY(-3px);
}
.post-thumb {
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
/* Placeholder featured image variációk — wp:post-featured-image */
.thumb-navy { background: linear-gradient(150deg, var(--navy), #0a2a73); }
.thumb-pale { background: linear-gradient(150deg, var(--pale), var(--offwhite)); }
.thumb-sand { background: linear-gradient(150deg, var(--sand), var(--offwhite)); }
.thumb-steel { background: linear-gradient(150deg, var(--steel), var(--pale)); }
.post-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.post-cat {
  font-size: 9px; font-weight: 500; text-transform: uppercase;
  letter-spacing: .1em; background: var(--pale);
  color: var(--navy); padding: 3px 10px; border-radius: 14px;
  align-self: flex-start; margin-bottom: 12px;
}
.post-title {
  font-family: var(--serif);
  font-size: 18px; color: var(--navy);
  margin-bottom: 8px; line-height: 1.25;
}
.post-excerpt {
  font-size: 12.5px; font-weight: 300;
  color: rgba(8,32,91,.56); line-height: 1.7;
  margin-bottom: 16px; flex: 1;
}
.post-meta {
  font-size: 10.5px; font-weight: 300;
  color: rgba(8,32,91,.4);
  display: flex; align-items: center; gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--sand);
}

/* Lapozó — FSE megfelelő: wp:query-pagination */
.pagination {
  max-width: 980px;
  margin: 48px auto 0;
  display: flex; justify-content: center; align-items: center;
  gap: 8px;
}
.page-btn {
  font-family: var(--sans);
  min-width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 12px;
  font-size: 13px; font-weight: 300;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 50px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.page-btn:hover:not(:disabled) { border-color: var(--steel); }
.page-btn.active {
  background: var(--navy); color: var(--offwhite); border-color: var(--navy);
  font-weight: 500;
}
.page-btn:disabled { opacity: .35; cursor: default; }
.posts-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 14px; color: rgba(8,32,91,.5);
  padding: 48px 0;
}

/* ============================================================
   EGYEDI CIKK (single)
   FSE megfelelő: templates/single.html
   ============================================================ */
.article-header {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 48px 40px;
  text-align: center;
  position: relative; z-index: 1;
}
.article-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  color: var(--navy);
  margin: 14px 0 18px;
}
.article-meta {
  font-size: 12px; font-weight: 300;
  color: rgba(8,32,91,.45);
  display: flex; justify-content: center; align-items: center;
  gap: 10px; flex-wrap: wrap;
}
.article-meta .dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--steel); }
.article-hero-img {
  max-width: 880px;
  margin: 24px auto 0;
  padding: 0 48px;
  position: relative; z-index: 1;
}
.article-hero-img .img-frame {
  height: 320px;
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  box-shadow: var(--shadow);
}

/* Cikk törzs — wp:post-content */
.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 48px 72px;
  position: relative; z-index: 1;
}
.article-body p {
  font-size: 15px; font-weight: 300;
  color: rgba(8,32,91,.75);
  line-height: 1.9;
  margin-bottom: 22px;
}
.article-body h2 {
  font-family: var(--serif);
  font-size: 26px; font-weight: 400;
  color: var(--navy);
  margin: 40px 0 14px;
  line-height: 1.2;
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 20px; font-weight: 400;
  color: var(--navy);
  margin: 32px 0 12px;
}
.article-body ul, .article-body ol {
  margin: 0 0 22px 22px;
  font-size: 14.5px; font-weight: 300;
  color: rgba(8,32,91,.72);
  line-height: 1.85;
}
.article-body li { margin-bottom: 6px; }
.article-body blockquote {
  font-family: var(--serif);
  font-size: 21px; line-height: 1.5;
  color: var(--navy);
  border-left: 3px solid var(--steel);
  padding: 6px 0 6px 24px;
  margin: 32px 0;
}
.article-body strong { font-weight: 500; color: var(--navy); }
.article-body a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--steel); text-underline-offset: 3px; }
.article-tip {
  background: var(--pale);
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 13.5px;
  color: rgba(8,32,91,.75);
  margin: 28px 0;
  border: 1px solid rgba(8,32,91,.06);
}
.article-tip strong { display: block; margin-bottom: 4px; }

/* Szerző blokk — FSE megfelelő: patterns/author-block.php */
.author-block {
  max-width: 680px;
  margin: 0 auto;
  display: flex; align-items: center; gap: 22px;
  background: var(--white);
  border-radius: 20px;
  padding: 26px 30px;
  box-shadow: 0 12px 40px rgba(8,32,91,.08);
  border: 1px solid rgba(8,32,91,.06);
  position: relative; z-index: 1;
}
.author-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(143,175,200,.4);
  flex-shrink: 0;
}
.author-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.author-eyebrow {
  font-size: 9px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--steel); display: block; margin-bottom: 3px;
}
.author-name {
  font-family: var(--serif);
  font-size: 19px; color: var(--navy);
  margin-bottom: 4px;
}
.author-bio {
  font-size: 12.5px; font-weight: 300;
  color: rgba(8,32,91,.58); line-height: 1.65;
}
.author-link {
  font-size: 12px; font-weight: 500;
  color: var(--navy); text-decoration: underline;
  text-decoration-color: var(--steel); text-underline-offset: 3px;
}

/* Kapcsolódó cikkek — FSE megfelelő: patterns/related-posts.php */
.related-section {
  padding: 72px 48px 96px;
}
.related-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--navy);
  text-align: center;
  margin-bottom: 36px;
}
.related-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============================================================
   STATIKUS OLDAL (page)
   FSE megfelelő: templates/page.html
   ============================================================ */
.page-header {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 48px 40px;
  text-align: center;
  position: relative; z-index: 1;
}
.page-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 48px 72px;
  position: relative; z-index: 1;
}
.page-content p {
  font-size: 15px; font-weight: 300;
  color: rgba(8,32,91,.75);
  line-height: 1.9;
  margin-bottom: 22px;
}
.page-content h2 {
  font-family: var(--serif);
  font-size: 26px; font-weight: 400;
  color: var(--navy);
  margin: 40px 0 14px;
}
.page-photo {
  max-width: 380px;
  margin: 0 auto 48px;
  position: relative; z-index: 1;
}

/* CTA blokk — FSE megfelelő: patterns/cta-block.php */
.cta-block {
  max-width: 880px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  position: relative; z-index: 1;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(245,242,236,.07) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--offwhite);
  line-height: 1.15;
  margin-bottom: 14px;
  position: relative;
}
.cta-title em {
  font-style: italic; color: var(--steel);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
}
.cta-text {
  font-size: 14px; font-weight: 300;
  color: rgba(245,242,236,.62);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 30px;
  position: relative;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--navy);
  background: var(--offwhite);
  border-radius: 50px;
  padding: 15px 38px;
  text-decoration: none;
  box-shadow: 0 10px 34px rgba(0,0,0,.25);
  transition: transform .2s, background .2s;
  position: relative;
}
.cta-btn:hover { transform: translateY(-3px); background: var(--white); }
.cta-section { padding: 24px 48px 96px; position: relative; z-index: 1; }

/* ── RESZPONZÍV — theme.json + custom.css media query réteg ── */
@media (max-width: 780px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero-section { padding: 56px 24px 0; }
  .hero-stage { flex-direction: column; align-items: center; min-height: auto; padding: 0 24px; }
  .hc-left, .hc-right { transform: none; width: 100%; max-width: 320px; }
  .hc-center { width: 100%; max-width: 320px; }
  .hb-left, .hb-right { display: none; }
  .section-navy, .section-pale, .section-sand, .section-offwhite {
    padding: 64px 24px 80px;
  }
  .problem-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { max-width: 320px; }
  .about-deco { display: none; }
  .signup-inner { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 44px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 14px 20px; }
  .footer-copy { overflow-wrap: anywhere; }
  .archive-header, .posts-section, .article-header, .article-body,
  .article-hero-img, .page-header, .page-content, .related-section,
  .cta-section { padding-left: 24px; padding-right: 24px; }
  .posts-grid, .related-grid { grid-template-columns: 1fr; }
  .author-block { flex-direction: column; text-align: center; margin-left: 24px; margin-right: 24px; }
  .cta-block { padding: 48px 28px; }
}

/* ============================================================
   WP CORE BLOKK ADAPTÁCIÓK
   A demo osztályok hozzáigazítása a WordPress blokkok
   generált markupjához (wp-block-*).
   ============================================================ */

/* Design tokenek átirányítása a theme.json presetekre —
   így a Global Styles felülírás (Site Editor → Stílusok)
   automatikusan érvényesül az egyedi komponensekben is. */
:root {
  --offwhite: var(--wp--preset--color--offwhite, #F5F2EC);
  --sand:     var(--wp--preset--color--sand, #E8E0D0);
  --navy:     var(--wp--preset--color--navy, #08205B);
  --steel:    var(--wp--preset--color--steel, #8FAFC8);
  --pale:     var(--wp--preset--color--pale, #DDEAF3);
  --white:    var(--wp--preset--color--white, #FFFFFF);
  --serif:    var(--wp--preset--font-family--heading, 'DM Serif Display', Georgia, serif);
  --sans:     var(--wp--preset--font-family--body, 'Poppins', system-ui, sans-serif);
}

/* Fejléc: wp:navigation a nav-links-en belül */
.bador-nav { gap: 28px; }
.bador-navigation .wp-block-navigation-item__content {
  font-size: 12.5px; font-weight: 300;
  color: rgba(8,32,91,.6);
  text-decoration: none;
  transition: color .2s;
}
.bador-navigation .wp-block-navigation-item__content:hover,
.bador-navigation .current-menu-item .wp-block-navigation-item__content {
  color: var(--navy);
}
.bador-navigation { gap: 28px; }

/* Query loop: a wp:post-template <ul>-ként renderel */
ul.wp-block-post-template.posts-grid,
ul.wp-block-post-template.related-grid {
  list-style: none;
  padding: 0; margin: 0 auto;
}
.wp-block-post-template.posts-grid > li,
.wp-block-post-template.related-grid > li { display: flex; }
.wp-block-post-template.posts-grid > li > .post-card,
.wp-block-post-template.related-grid > li > .post-card { width: 100%; }

/* Kártya elemek: core blokk osztályok hozzáigazítása */
.post-card .wp-block-post-featured-image.post-thumb {
  height: 150px; overflow: hidden;
  background: linear-gradient(150deg, var(--pale), var(--offwhite));
}
.post-card .wp-block-post-featured-image.post-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.post-card h2.wp-block-post-title.post-title,
.post-card h3.wp-block-post-title.post-title { margin-bottom: 8px; }
.post-card .wp-block-post-title a {
  color: var(--navy); text-decoration: none;
}
.post-card .wp-block-post-title a:hover { color: var(--steel); }
.post-card .wp-block-post-terms.post-cat a {
  color: var(--navy); text-decoration: none;
}
.post-card .wp-block-post-excerpt.post-excerpt p { margin: 0; font-size: 12.5px; }
.post-card .post-meta .wp-block-post-date,
.post-card .post-meta .wp-block-post-author-name {
  font-size: 10.5px; color: rgba(8,32,91,.4);
}

/* Cikk fejléc meta */
.article-header .post-cat { align-self: center; display: inline-block; margin: 0 auto 4px; }
.article-header .wp-block-post-date,
.article-header .wp-block-post-author-name {
  font-size: 12px; font-weight: 300; color: rgba(8,32,91,.45);
}
.article-hero-img .wp-block-post-featured-image img {
  width: 100%; max-height: 380px; object-fit: cover;
  border-radius: 24px; box-shadow: var(--shadow);
}

/* Cikk törzs: a wp:post-content kapja az article-body tipográfiát */
.article-body .wp-block-post-content > p { 
  font-size: 15px; font-weight: 300;
  color: rgba(8,32,91,.75); line-height: 1.9; margin-bottom: 22px;
}

/* Lapozó: wp:query-pagination */
.wp-block-query-pagination.pagination { margin-top: 48px; }
.wp-block-query-pagination.pagination a,
.wp-block-query-pagination.pagination .page-numbers,
.wp-block-query-pagination.pagination .wp-block-query-pagination-previous,
.wp-block-query-pagination.pagination .wp-block-query-pagination-next {
  font-family: var(--sans);
  min-width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 12px;
  font-size: 13px; font-weight: 300;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.wp-block-query-pagination.pagination a:hover { border-color: var(--steel); }
.wp-block-query-pagination.pagination .page-numbers.current {
  background: var(--navy); color: var(--offwhite);
  border-color: var(--navy); font-weight: 500;
}

/* Gomb blokk */
.wp-block-button__link { box-shadow: 0 8px 28px rgba(8,32,91,.22); }


/* ============================================================
   JAVÍTÁSOK
   ============================================================ */

/* A wp:navigation blokk saját <nav class="wp-block-navigation">
   elemet renderel a fejléc nav-sávján BELÜL, így az is megkapta
   a sáv stílusait (háttér, magasság, alsó szegély) — ettől lógott
   ki egy vonal a menü alatt. Itt visszavonjuk ezeket a belső navról. */
nav.wp-block-navigation {
  position: static;
  top: auto;
  z-index: auto;
  height: auto;
  padding: 0;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* A mobil overlay menü panelje viszont kapjon hátteret. */
.wp-block-navigation__responsive-container.is-menu-open {
  background: var(--offwhite);
}

/* Lábléc: a WP-ben a footer part wp-block-group osztályt kap,
   mobilon kisebb oldalpadding, tördelhető linksor. */
@media (max-width: 780px) {
  .bador-footer { padding: 44px 24px; }
  .bador-footer .footer-links { flex-wrap: wrap; gap: 14px 20px; }
}


/* ============================================================
   JAVÍTÁSOK v1.0.1 — erősített szabályok
   ============================================================ */

/* A template part wrapper (tagName:"footer"/"header") miatt a WP
   KÉT egymásba ágyazott footer/header elemet renderel — a külső
   wrapperről le kell venni a footer stílusokat, különben duplázódik
   a padding és mobilon kilóg a lábléc. */
footer.wp-block-template-part,
header.wp-block-template-part {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  height: auto !important;
  position: static !important;
}

/* A wp:navigation belső <nav> eleme SEMMIT ne örököljön a
   fejléc-sáv stílusaiból (háttércsík + kilógó alsó vonal). */
.bador-nav nav.wp-block-navigation,
nav.wp-block-navigation {
  position: static !important;
  height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.wp-block-navigation ul,
.wp-block-navigation li {
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lábléc mobil — vízszintes túlcsordulás ellen */
@media (max-width: 780px) {
  footer,
  .bador-footer { padding: 44px 20px !important; }
  footer.wp-block-template-part { padding: 0 !important; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
  }
  .footer-links { flex-wrap: wrap; gap: 12px 18px; }
  .footer-copy { overflow-wrap: anywhere; word-break: break-word; }
}

/* Biztonsági háló: semmi ne okozzon vízszintes görgetést */
html, body { overflow-x: hidden; max-width: 100vw; }


/* ── TALLY FORM BEÁGYAZÁS ──
   A signup kártyán belüli Tally iframe illesztése. */
.bador-tally {
  display: block;
  width: 100%;
  border: none;
  border-radius: 10px;
  min-height: 240px;
}

/* ============================================================
   PORTFÓLIÓ OLDAL
   FSE megfelelő: templates/page.html (Portfólió) +
   patterns/portfolio-grid.php + patterns/cta-block.php
   Kreatív elem: böngésző-mockup, amelyben ráhúzáskor a teljes
   hosszú képernyőkép legördül; nyomtatott munkák „papír" keretben.
   ============================================================ */

/* ── Hero ── */
.pf-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 48px 8px;
  text-align: center;
  position: relative; z-index: 1;
}
.pf-hero .article-title { margin: 12px 0 18px; }
.pf-hero .sec-sub { max-width: 560px; margin: 0 auto; }
.pf-stats {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-top: 26px;
}
.pf-stat {
  background: var(--sand);
  border: 1px solid rgba(8,32,91,.07);
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 12px; font-weight: 300; color: var(--navy);
}
.pf-stat strong { font-weight: 500; }

/* ── Szűrő ── */
.pf-filterbar {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin: 32px auto 0;
  padding: 0 24px;
  position: relative; z-index: 1;
}

/* ── Kiemelt projekt ── */
.pf-featured-wrap {
  max-width: 1080px;
  margin: 48px auto 0;
  padding: 0 48px;
  position: relative; z-index: 1;
}
.pf-featured {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(8,32,91,.06);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.pf-featured .pf-info { padding: 0; }
.pf-featured-badge {
  display: inline-block;
  font-size: 9px; font-weight: 500; text-transform: uppercase;
  letter-spacing: .12em; color: var(--steel);
  margin-bottom: 10px;
}

/* ── Grid ── */
.pf-grid {
  max-width: 1080px;
  margin: 28px auto 0;
  padding: 28px 48px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative; z-index: 1;
}
.pf-item.hidden { display: none; }

/* ── Projekt kártya ── */
.pf-card {
  background: var(--white);
  border: 1px solid rgba(8,32,91,.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(8,32,91,.06);
  transition: box-shadow .3s, transform .25s;
  display: flex; flex-direction: column;
}
.pf-card:hover {
  box-shadow: 0 26px 66px rgba(8,32,91,.14);
  transform: translateY(-4px);
}

/* Böngésző-mockup (weboldal projektek) */
.pf-browser { background: var(--sand); padding: 10px 12px 0; }
.pf-bar {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 9px;
}
.pf-dot { width: 8px; height: 8px; border-radius: 50%; }
.pf-dot.r { background: #E8836B; }
.pf-dot.y { background: #E8C36B; }
.pf-dot.g { background: #8FC8A0; }
.pf-url {
  margin-left: 8px; flex: 1;
  background: var(--white);
  border-radius: 20px;
  font-size: 9px; font-weight: 300;
  color: rgba(8,32,91,.42);
  padding: 3px 12px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pf-shot {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--offwhite);
  border-radius: 6px 6px 0 0;
}
.pf-shot img {
  width: 100%; display: block;
  transition: transform 7s cubic-bezier(.33,0,.15,1);
}
/* Ráhúzáskor legördül a teljes screenshot */
.pf-card:hover .pf-shot img {
  transform: translateY(calc(-100% + 260px));
}
.pf-scrollhint {
  position: absolute; bottom: 10px; right: 10px;
  display: flex; align-items: center; gap: 5px;
  background: rgba(8,32,91,.86);
  color: var(--offwhite);
  font-size: 9px; font-weight: 400;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: .04em;
  transition: opacity .3s;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.pf-card:hover .pf-scrollhint { opacity: 0; }

/* Papír keret (nyomtatott + dokumentum projektek) */
.pf-paper {
  height: 300px;
  display: flex; align-items: center; justify-content: center;
  padding: 22px;
  background: radial-gradient(circle at 50% 30%, var(--pale), var(--offwhite));
  overflow: hidden;
}
.pf-paper img {
  max-height: 100%; width: auto; max-width: 78%;
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(8,32,91,.20);
  transform: rotate(-2.5deg);
  transition: transform .35s ease, box-shadow .35s ease;
}
.pf-card:hover .pf-paper img {
  transform: rotate(0deg) scale(1.04);
  box-shadow: 0 22px 50px rgba(8,32,91,.26);
}
.pf-paper.doc img { transform: rotate(1.8deg); max-width: 68%; }
.pf-card:hover .pf-paper.doc img { transform: rotate(0deg) scale(1.04); }

/* Kártya infó */
.pf-info { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.pf-cat {
  align-self: flex-start;
  font-size: 9px; font-weight: 500; text-transform: uppercase;
  letter-spacing: .1em; background: var(--pale);
  color: var(--navy); padding: 3px 10px; border-radius: 14px;
  margin-bottom: 11px;
}
.pf-title {
  font-family: var(--serif);
  font-size: 19px; color: var(--navy);
  margin-bottom: 6px; line-height: 1.2;
}
.pf-desc {
  font-size: 12.5px; font-weight: 300;
  color: rgba(8,32,91,.56); line-height: 1.7;
  margin-bottom: 14px; flex: 1;
}
.pf-tools {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 14px;
}
.pf-tool {
  font-size: 10px; font-weight: 300;
  background: rgba(8,32,91,.05);
  color: rgba(8,32,91,.62);
  padding: 3px 10px; border-radius: 12px;
}
.pf-link {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--navy);
  text-decoration: none;
  padding-top: 12px;
  border-top: 1px solid var(--sand);
  width: 100%;
  transition: gap .2s, color .2s;
}
.pf-link:hover { color: var(--steel); gap: 10px; }

/* ── Reszponzív ── */
@media (max-width: 900px) {
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-featured { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 780px) {
  .pf-hero { padding: 56px 24px 8px; }
  .pf-featured-wrap { padding: 0 24px; }
  .pf-grid { grid-template-columns: 1fr; padding: 28px 24px 0; }
  .pf-shot, .pf-featured .pf-shot { height: 230px; }
  .pf-card:hover .pf-shot img { transform: translateY(calc(-100% + 230px)); }
}
