/* ============================================================
   Matics Zsolt — landing page
   Dark + gold (Fit4Race brand)
   ============================================================ */
:root {
  --bg-0: #070b0c;
  --bg-1: #0d1417;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --gold: #f9d200;
  --gold-bright: #ffe25a;
  --gold-deep: #f0b400;
  --cream: #f3e9c6;
  --text: #f4f6f8;
  --muted: #97a0a6;
  --maxw: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(1200px 760px at 50% -8%, #13211f 0%, transparent 58%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 { font-family: "Sora", "Inter", sans-serif; letter-spacing: 0; line-height: 1.08; }

/* ---- ambient background ---- */
.bg-glow {
  position: fixed; top: -280px; left: 50%;
  width: 1200px; height: 680px; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(180, 230, 210, 0.10), transparent 70%);
  pointer-events: none; z-index: 0;
}
.bg-vignette {
  position: fixed; inset: 0;
  background: radial-gradient(120% 90% at 50% 24%, transparent 52%, rgba(0,0,0,0.55) 100%);
  pointer-events: none; z-index: 0;
}

.hl {
  background: linear-gradient(100deg, #e6a200, #ffd200 30%, #fff3b0 50%, #ffd200 70%, #e6a200);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ============================ NAV ============================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 16px 40px;
  background: rgba(7, 11, 12, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(7, 11, 12, 0.82); }
.logo img { height: 46px; width: auto; }
.menu { display: flex; align-items: center; gap: 38px; }
.menu a {
  color: var(--text); text-decoration: none; font-size: 16px; font-weight: 600;
  opacity: .85; transition: color .2s, opacity .2s;
}
.menu a:hover { color: var(--gold); opacity: 1; }
.menu-cta {
  border: 1px solid var(--border-strong); border-radius: 999px;
  padding: 9px 20px; opacity: 1 !important;
}
.menu-cta:hover { border-color: var(--gold); color: var(--gold) !important; }

.menu-toggle { display: none; }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; text-decoration: none; cursor: pointer;
  border-radius: 999px; padding: 14px 28px; border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .25s, background .25s, color .2s;
  white-space: nowrap;
}
.btn.lg { padding: 16px 34px; font-size: 17px; }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  color: #1a1405;
  box-shadow: 0 8px 30px -8px rgba(249, 210, 0, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px -8px rgba(249, 210, 0, 0.62); }
.btn-ghost { background: transparent; border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.eyebrow, .kicker {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
}
.kicker { color: var(--muted); }
.kicker::before { content: ""; }

/* ============================ HERO ============================ */
.hero { position: relative; z-index: 2; padding: 24px 40px 18px; }
.hero-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
  min-height: calc(100vh - 185px);
}
.hero-copy { max-width: 650px; }
.eyebrow { margin-bottom: 18px; }
.service-label {
  color: var(--cream);
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  margin: -8px 0 14px;
}
.hero-title {
  font-size: clamp(34px, 4.5vw, 54px); font-weight: 800; color: var(--cream);
  margin-bottom: 20px;
}
.hero-sub { font-size: clamp(16px, 1.35vw, 19px); color: var(--muted); max-width: 620px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-note {
  font-size: 14px; color: var(--muted); display: inline-flex; align-items: center; gap: 10px;
}
.hero-note::before {
  content: ""; width: 28px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-figure { position: relative; justify-self: center; }
.hero-figure img {
  position: relative; z-index: 2; max-height: 560px; width: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
}
.figure-glow {
  position: absolute; z-index: 1; inset: 8% 4% -2% 4%;
  background: radial-gradient(closest-side, rgba(249, 210, 0, 0.22), rgba(249, 210, 0, 0.06) 55%, transparent 72%);
  filter: blur(8px);
}

/* ===================== CREDIBILITY GALLERY ===================== */
.proof { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 20px 40px 70px; }
.proof-label {
  text-align: center; color: var(--muted); font-size: 13px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 24px;
}
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.proof-card {
  position: relative; overflow: hidden; border-radius: 14px; border: 1px solid var(--border);
  aspect-ratio: 4 / 5; background: var(--panel);
}
.proof-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.35) brightness(0.82); transition: transform .5s var(--ease), filter .4s;
}
.proof-card:hover img { transform: scale(1.05); filter: grayscale(0) brightness(1); }
.proof-card figcaption {
  position: absolute; inset: auto 0 0 0; padding: 28px 14px 12px;
  font-size: 13px; font-weight: 600; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.82));
}

/* ============================ SECTIONS ============================ */
.section { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 80px 40px; }
.section-head { max-width: 820px; margin: 0 auto 14px; }
.section-head.reveal .kicker, .kicker { margin-bottom: 14px; }
.section-title { font-size: clamp(26px, 3.2vw, 40px); font-weight: 800; color: var(--cream); }
.section-title.center { text-align: center; }
.section-head.reveal { text-align: center; }

.prose { max-width: 760px; margin: 22px auto 0; }
.prose.wide { max-width: 880px; }
.prose p { color: var(--muted); font-size: 17px; margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }
.intro-flow { padding-top: 70px; padding-bottom: 70px; }
.narrative { padding-top: 20px; }

/* ---- split (intro) ---- */
.split {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 54px; align-items: center;
}
.split-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); position: relative; }
.split-media::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 90px rgba(0,0,0,0.5); pointer-events: none;
}
.split-media img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; }
.split-copy .section-title { margin: 12px 0 18px; }
.split-copy p { color: var(--muted); font-size: 17px; margin-bottom: 15px; }
.pullquote {
  margin-top: 24px; padding: 18px 22px; border-left: 3px solid var(--gold);
  background: var(--panel); border-radius: 0 12px 12px 0;
  font-family: "Sora", sans-serif; font-size: clamp(18px, 1.7vw, 21px); font-weight: 600;
  color: var(--cream); font-style: normal;
}

/* ---- team photo ---- */
.team-photo {
  max-width: 1000px; margin: 34px auto 0;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); position: relative;
}
.team-photo::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.45); pointer-events: none;
}
.team-photo img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  transition: transform .6s var(--ease);
}
.team-photo:hover img { transform: scale(1.02); }

/* ---- pillars ---- */
.pillars {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  max-width: 920px; margin: 40px auto 0;
}
.pillars li {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--panel); font-weight: 600; font-size: 15px; color: var(--text);
  transition: border-color .25s, transform .2s, background .25s;
}
.pillars li:hover { border-color: var(--gold); transform: translateY(-2px); background: var(--panel-2); }
.p-ico { font-size: 17px; }

/* ---- audience cards ---- */
.audience-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px;
}
.aud-card {
  padding: 32px 28px; border-radius: var(--radius); border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  transition: border-color .3s, transform .25s, box-shadow .3s;
}
.aud-card:hover {
  border-color: var(--border-strong); transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.7);
}
.aud-label {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 34px; padding: 7px 12px; border-radius: 999px; margin-bottom: 18px;
  color: var(--gold); background: rgba(249, 210, 0, 0.08);
  border: 1px solid rgba(249, 210, 0, 0.24);
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.aud-card h3 { font-size: 20px; font-weight: 700; color: var(--cream); margin-bottom: 10px; line-height: 1.2; }
.aud-card p { color: var(--muted); font-size: 16px; }
.closing-line {
  max-width: 760px; margin: 36px auto 0; text-align: center;
  color: var(--cream); font-family: "Sora", sans-serif; font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

/* ===================== CTA BAND ===================== */
.cta-band {
  position: relative; z-index: 2; max-width: 980px; margin: 30px auto; padding: 64px 40px;
  text-align: center; border-radius: 28px;
  border: 1px solid rgba(249, 210, 0, 0.22);
  background:
    radial-gradient(120% 160% at 50% -30%, rgba(249, 210, 0, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
}
.cta-title { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--cream); margin-bottom: 18px; }
.cta-text { color: var(--muted); font-size: 17px; max-width: 680px; margin: 0 auto 28px; }

/* ===================== CONTACT FORM ===================== */
.contact { padding-top: 40px; }
.contact-inner {
  max-width: 820px; margin: 0 auto; padding: 44px;
  border: 1px solid var(--border); border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}
.contact-head { text-align: left; margin-bottom: 30px; }
.contact-head .section-title { margin: 10px 0 12px; }
.contact-lead { color: var(--muted); font-size: 17px; max-width: 620px; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full, .form-actions.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; color: var(--text); }
.field label .opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 16px; color: var(--text);
  background: rgba(0,0,0,0.25); border: 1px solid var(--border); border-radius: 12px;
  padding: 13px 15px; outline: none; transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: #5d676d; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(249, 210, 0, 0.14); background: rgba(0,0,0,0.35);
}
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2397a0a6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px;
}
.field input:invalid:not(:placeholder-shown):not(:focus) { border-color: rgba(255, 110, 90, 0.6); }
.form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.form-status { font-size: 15px; font-weight: 600; }
.form-status.ok { color: var(--gold-bright); }
.form-status.err { color: #ff8a72; }

.contact-foot {
  text-align: center; max-width: 640px; margin: 32px auto 0;
  color: var(--cream); font-family: "Sora", sans-serif; font-size: 17px; font-weight: 600;
  opacity: 0.92;
}

/* ============================ FOOTER ============================ */
.footer {
  position: relative; z-index: 2; text-align: center; padding: 60px 40px 50px;
  border-top: 1px solid var(--border); margin-top: 40px;
}
.footer .logo img { height: 50px; margin: 0 auto 18px; }
.foot-name { color: var(--text); font-weight: 600; margin-bottom: 6px; }
.foot-copy { color: var(--muted); font-size: 14px; }

/* ============================ REVEAL ANIM ============================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 10px; min-height: 0; text-align: center; padding-top: 10px; }
  .hero-copy { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-note { justify-content: center; }
  .hero-figure { order: -1; }
  .hero-figure img { max-height: 420px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split-media { max-width: 480px; margin: 0 auto; }
  .audience-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { padding: 14px 22px; }
  .menu { gap: 18px; }
  .hero, .section, .proof { padding-left: 22px; padding-right: 22px; }
  .hero { padding-top: 16px; padding-bottom: 14px; }
  .section { padding-top: 60px; padding-bottom: 60px; }
  .menu { position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(7, 11, 12, 0.97); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border); padding: 8px 0;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
  .menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .menu a { width: 100%; padding: 14px 24px; }
  .menu-cta { border: none; border-radius: 0; }
  .menu-toggle {
    display: flex; flex-direction: column; gap: 5px; background: none; border: none;
    cursor: pointer; padding: 8px;
  }
  .menu-toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .contact-inner { padding: 26px 20px; }
  .contact-form { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }
  .hero-figure img { max-height: 200px; }
  .hero-sub { margin-bottom: 18px; font-size: 15px; }
  .service-label { margin-bottom: 10px; }
  .hero-actions { margin-bottom: 0; }
  .btn { padding: 13px 24px; }
}
@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 28px; margin-bottom: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-actions .btn-ghost { display: none; }
}

/* ============================================================
   MÁRKASZAVAK — Inner You / Bestofyou
   ============================================================ */
/* Inner You: krém szín, félkövér — a "belső" réteg */
.bw-inner {
  color: var(--cream); font-weight: 700; white-space: nowrap;
}
/* Bestofyou: arany gradiens — a "felszínre hozott" csúcsállapot */
.bw-best {
  font-weight: 800; white-space: nowrap;
  background: linear-gradient(100deg, #e6a200, #ffd200 30%, #fff3b0 50%, #ffd200 70%, #e6a200);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ============================================================
   HERO STATS — tapasztalat számokban
   ============================================================ */
.hero-stats {
  max-width: var(--maxw); margin: 26px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  overflow: hidden;
}
.stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 22px 24px; text-align: center;
  border-left: 1px solid var(--border);
}
.stat:first-child { border-left: none; }
.stat-num {
  font-family: "Sora", "Inter", sans-serif; font-weight: 800;
  font-size: clamp(20px, 2.2vw, 28px); color: var(--cream); line-height: 1.1;
}
.stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ============================================================
   KONCEPCIÓ-KÁRTYÁK (intro: A tét / Inner You / Bestofyou)
   ============================================================ */
.concept-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1080px; margin: 40px auto 0;
}
.concept-card {
  padding: 30px 26px; border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  transition: border-color .3s, transform .25s, box-shadow .3s;
}
.concept-card:hover {
  border-color: rgba(249, 210, 0, 0.35); transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.7);
}
.concept-ico {
  width: 46px; height: 46px; margin-bottom: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 13px; color: var(--gold);
  background: rgba(249, 210, 0, 0.09);
  border: 1px solid rgba(249, 210, 0, 0.24);
}
.concept-ico svg { width: 24px; height: 24px; }
.concept-card h3 { font-size: 19px; font-weight: 700; color: var(--cream); margin-bottom: 10px; line-height: 1.25; }
.concept-card p { color: var(--muted); font-size: 15.5px; }
.lead-line { text-align: center; font-size: 18px !important; color: #b7c0c5 !important; }
.concept-foot {
  max-width: 720px; margin: 30px auto 0; text-align: center;
  color: var(--cream); font-family: "Sora", sans-serif;
  font-size: 17px; font-weight: 600; opacity: 0.92;
}

/* ============================================================
   IDÉZET-SÁV háttérfotóval
   ============================================================ */
.quote-band {
  position: relative; z-index: 2; overflow: hidden;
  margin: 30px auto; padding: 96px 40px;
  text-align: center;
}
.quote-band-bg {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(7, 11, 12, 0.92), rgba(7, 11, 12, 0.62) 50%, rgba(7, 11, 12, 0.92)),
    url("assets/olympia-gold.jpg");
  background-size: cover; background-position: center 12%;
  filter: grayscale(0.5);
}
.quote-band blockquote { max-width: 860px; margin: 0 auto; }
.quote-band blockquote p {
  font-family: "Sora", "Inter", sans-serif; font-weight: 700;
  font-size: clamp(22px, 3vw, 34px); line-height: 1.35; color: var(--cream);
  margin-bottom: 18px;
}
.quote-band footer {
  color: var(--muted); font-size: 15px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ============================================================
   RÓLAM — tapasztalat-címkék
   ============================================================ */
.exp-chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px;
}
.exp-chips li {
  padding: 8px 15px; border-radius: 999px;
  border: 1px solid rgba(249, 210, 0, 0.24); background: rgba(249, 210, 0, 0.07);
  color: var(--cream); font-size: 14px; font-weight: 600;
}

/* ============================================================
   MIÉRT MÁS — ikonos feature-kártyák + képaláírás
   ============================================================ */
.feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 1000px; margin: 40px auto 0;
}
.feature-card {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 26px 26px; border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  transition: border-color .3s, transform .25s;
}
.feature-card:hover { border-color: rgba(249, 210, 0, 0.35); transform: translateY(-3px); }
.feature-card .concept-ico { margin-bottom: 0; }
.feature-card h3 { grid-column: 2; font-size: 18px; font-weight: 700; color: var(--cream); margin: 4px 0 8px; }
.feature-card p { grid-column: 2; color: var(--muted); font-size: 15px; }
.feature-card h3 + p { margin-top: -2px; }
.feature-card > .concept-ico { grid-row: 1 / span 2; }

.photo-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 18px 14px; font-size: 13px; font-weight: 600; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
}

/* pillérek ikonokkal */
.pillars-ico li svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* ============================================================
   FOLYAMAT — 3 lépés
   ============================================================ */
.steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px; align-items: stretch; margin-top: 44px;
}
.step {
  position: relative; padding: 30px 26px; border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
}
.step-num {
  display: inline-block; margin-bottom: 14px;
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 15px;
  color: var(--gold); letter-spacing: 0.1em;
}
.step-num::after {
  content: ""; display: block; width: 34px; height: 2px; margin-top: 8px;
  background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px;
}
.step h3 { font-size: 19px; font-weight: 700; color: var(--cream); margin-bottom: 10px; line-height: 1.3; }
.step p { color: var(--muted); font-size: 15px; }
.step-arrow { align-self: center; color: rgba(249, 210, 0, 0.55); }
.step-arrow svg { width: 26px; height: 26px; }

/* ============================================================
   KÉP-PLACEHOLDER — ide kerülhet fotó
   ============================================================ */
.photo-placeholder {
  max-width: 1000px; margin: 40px auto 0;
  border: 2px dashed rgba(249, 210, 0, 0.35); border-radius: var(--radius);
  background: rgba(249, 210, 0, 0.04);
}
.ph-inner {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 56px 32px; text-align: center;
}
.ph-inner svg { width: 44px; height: 44px; color: rgba(249, 210, 0, 0.6); }
.ph-inner p { color: var(--muted); font-size: 15px; max-width: 520px; }
.ph-inner strong { color: var(--cream); }

/* ============================================================
   KAPCSOLAT — e-mail / telefon kártyák
   ============================================================ */
.contact-cards {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 6px;
  max-width: 440px;
}
.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; border-radius: var(--radius);
  border: 1px solid var(--border); text-decoration: none;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  transition: border-color .3s, transform .25s, box-shadow .3s;
}
.contact-card:hover {
  border-color: rgba(249, 210, 0, 0.4); transform: translateY(-3px);
  box-shadow: 0 20px 44px -24px rgba(0, 0, 0, 0.7);
}
.contact-ico {
  flex: none; width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 13px; color: var(--gold);
  background: rgba(249, 210, 0, 0.09); border: 1px solid rgba(249, 210, 0, 0.24);
}
.contact-ico svg { width: 23px; height: 23px; }
.contact-text { display: flex; flex-direction: column; gap: 3px; }
.cc-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.cc-value { font-size: 17px; font-weight: 700; color: var(--cream); }

/* ============================================================
   ÚJ KOMPONENSEK — RESZPONZÍV kiegészítések
   ============================================================ */
@media (max-width: 980px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--border); }
  .concept-grid { grid-template-columns: 1fr; max-width: 560px; }
  .feature-grid { grid-template-columns: 1fr; max-width: 560px; }
  .steps { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .step-arrow { transform: rotate(90deg); justify-self: center; }
  .contact-cards { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 760px) {
  .quote-band { padding: 70px 24px; }
  .hero-stats { margin-top: 18px; }
  .stat { padding: 16px 14px; }
}
