 :root {
  --bg: #070b12;
  --bg-2: #0c1320;
  --navy: #12233a;
  --grey-18: #2e3138;
  --panel: rgba(255,255,255,.045);
  --panel-strong: rgba(255,255,255,.075);
  --line: rgba(255,255,255,.11);
  --text: #f6f7f9;
  --muted: rgba(246,247,249,.66);
  --muted-2: rgba(246,247,249,.48);
  --gold: #d4a73a;
  --gold-2: #ffe08a;
  --shadow-gold: 0 0 44px rgba(212,167,58,.16);
  --shadow-heavy: 0 38px 110px rgba(0,0,0,.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1240px;
  --font: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.theme-light {
  --bg: #f7f6f2;
  --bg-2: #eeece5;
  --navy: #12233a;
  --grey-18: #e8e6de;
  --panel: rgba(18,35,58,.055);
  --panel-strong: rgba(18,35,58,.085);
  --line: rgba(18,35,58,.12);
  --text: #12233a;
  --muted: rgba(18,35,58,.68);
  --muted-2: rgba(18,35,58,.48);
  --shadow-heavy: 0 34px 90px rgba(18,35,58,.12);
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 8%, rgba(212,167,58,.16), transparent 30%),
    radial-gradient(circle at 78% 22%, rgba(18,35,58,.9), transparent 35%),
    radial-gradient(circle at 52% 88%, rgba(212,167,58,.09), transparent 34%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

body.theme-light .site-bg {
  background:
    radial-gradient(circle at 18% 8%, rgba(212,167,58,.18), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(18,35,58,.08), transparent 35%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section-xl { padding: 140px 0 70px; }
.section { padding: 96px 0; }
.compact-top { padding-top: 46px; }

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  height: 72px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px 0 20px;
  background: rgba(7,11,18,.64);
  backdrop-filter: blur(22px);
  z-index: 50;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(7,11,18,.88);
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
}

body.theme-light .site-header {
  background: rgba(247,246,242,.84);
  border-color: rgba(18,35,58,.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #10131a;
  font-weight: 950;
  box-shadow: var(--shadow-gold);
}

.brand-text { font-size: 1.05rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 760;
}

.main-nav a {
  text-decoration: none;
  transition: color .18s ease;
}

.main-nav a:hover { color: var(--text); }

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-cta {
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 18px;
  color: #10131a;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: var(--shadow-gold);
}

.theme-toggle,
.menu-toggle {
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.theme-toggle-track {
  width: 48px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: block;
  position: relative;
  background: rgba(255,255,255,.04);
}

.theme-toggle-thumb {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 3px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform .2s ease;
}

body.theme-light .theme-toggle-thumb { transform: translateX(20px); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
}

.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 950;
  margin: 0 0 18px;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3.4rem, 7.8vw, 7.8rem);
  line-height: .88;
  letter-spacing: -.085em;
  margin-bottom: 30px;
  max-width: 920px;
}

h2 {
  font-size: clamp(2.3rem, 5.1vw, 5.25rem);
  line-height: .94;
  letter-spacing: -.075em;
  margin-bottom: 24px;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .78fr);
  gap: 72px;
  align-items: center;
}

.hero-lead {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  max-width: 760px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 930;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  color: #10131a;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255,255,255,.035);
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-signals span,
.topic-list span,
.workshop-cards span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 820;
  background: rgba(255,255,255,.035);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-heavy), var(--shadow-gold);
  background: var(--panel);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,18,.04), rgba(7,11,18,.58)),
    radial-gradient(circle at 72% 18%, rgba(212,167,58,.18), transparent 34%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.05) brightness(.84);
}

.hero-card {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px 18px;
  background: rgba(7,11,18,.66);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}

.hero-card strong { display:block; font-size: 1.05rem; }
.hero-card span { color: var(--muted); font-size: .86rem; font-weight: 800; }
.hero-card-a { left: 24px; bottom: 26px; }
.hero-card-b { right: 24px; top: 26px; }

.narrow { max-width: 980px; }
.narrow p { max-width: 870px; }

.section-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2 { margin-bottom: 0; }
.section-head p:last-child { margin-bottom: 8px; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.audience-grid article,
.process-line article,
.counter-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 10%, rgba(212,167,58,.10), transparent 34%),
    var(--panel);
  padding: 28px;
  min-height: 260px;
}

.audience-grid article span,
.process-line article span {
  color: var(--gold);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 950;
  display: inline-block;
  margin-bottom: 18px;
}

.audience-grid article p,
.process-line article p { font-size: .98rem; }

.split-grid,
.about-grid,
.contact-grid,
.why-grid {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.split-media,
.about-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-heavy);
}

.split-media img,
.about-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04) brightness(.86);
}

.topic-list,
.workshop-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-line article {
  min-height: 310px;
  position: relative;
}

.process-line article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -10px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(212,167,58,.55), transparent);
  opacity: .45;
}

.process-line article:first-child::before { display: none; }

.workshop-panel {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 50px;
  align-items: center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  padding: clamp(32px, 5vw, 64px);
  background:
    radial-gradient(circle at 80% 20%, rgba(212,167,58,.16), transparent 36%),
    linear-gradient(135deg, rgba(18,35,58,.65), rgba(255,255,255,.035));
  box-shadow: var(--shadow-heavy), var(--shadow-gold);
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
}

.why-grid {
  align-items: start;
}

.contact-grid {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-details a {
  color: var(--text);
  text-decoration: none;
  font-weight: 880;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px;
  background: var(--panel);
  box-shadow: var(--shadow-heavy);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 820;
  margin-bottom: 16px;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  background: rgba(255,255,255,.045);
  color: var(--text);
  font: inherit;
  outline: none;
}

body.theme-light input,
body.theme-light textarea,
body.theme-light select {
  background: rgba(255,255,255,.62);
}

textarea { resize: vertical; }
.form-note {
  font-size: .82rem;
  margin: 14px 0 0;
  color: var(--muted-2);
}

.site-footer {
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .92rem;
  font-weight: 780;
}

.scroll-progress {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  z-index: 35;
}

.scroll-progress svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.scroll-progress circle {
  fill: rgba(7,11,18,.62);
  stroke: rgba(255,255,255,.12);
  stroke-width: 2;
}

.scroll-progress-ring {
  fill: transparent !important;
  stroke: var(--gold) !important;
  stroke-width: 3 !important;
  stroke-linecap: round;
}

.scroll-progress span {
  position: relative;
  font-weight: 900;
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }

@media (max-width: 1180px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-block; }
  .main-nav.is-open {
    display: grid;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7,11,18,.95);
  }
  body.theme-light .main-nav.is-open { background: rgba(247,246,242,.98); }
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .hero-grid,
  .section-head,
  .split-grid,
  .about-grid,
  .contact-grid,
  .why-grid,
  .workshop-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }
  .hero-visual img { min-height: 520px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, var(--max)); }
  .site-header { inset: 12px 12px auto; height: 64px; }
  .brand-text { display: none; }
  .header-cta { display: none; }
  .section-xl { padding-top: 112px; }
  .section { padding: 68px 0; }
  h1 { font-size: clamp(3rem, 16vw, 4.9rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3.55rem); }
  .audience-grid,
  .process-line {
    grid-template-columns: 1fr;
  }
  .hero-visual,
  .hero-visual img,
  .split-media,
  .split-media img,
  .about-media,
  .about-media img {
    min-height: 430px;
  }
  .footer-inner { flex-direction: column; }
}


/* --- BartaGeri.hu v2.1 prémium navy + gold + új képek ténylegesen beépítve --- */
:root {
  --bg: #020813;
  --bg-2: #050d1b;
  --navy: #07172d;
  --deep-navy: #020716;
  --grey-18: #2b2e35;
  --panel: rgba(9, 19, 36, .62);
  --panel-strong: rgba(13, 27, 51, .82);
  --line: rgba(255, 255, 255, .135);
  --gold: #d6a637;
  --gold-2: #ffd977;
  --gold-3: #fff0b5;
  --shadow-gold: 0 0 34px rgba(214,166,55,.24), 0 0 86px rgba(214,166,55,.12);
  --shadow-gold-strong: 0 0 0 1px rgba(214,166,55,.24), 0 28px 100px rgba(214,166,55,.18), 0 42px 120px rgba(0,0,0,.42);
}

.site-bg {
  background:
    radial-gradient(circle at 16% 7%, rgba(214,166,55,.24), transparent 27%),
    radial-gradient(circle at 76% 16%, rgba(3,23,55,.96), transparent 42%),
    radial-gradient(circle at 40% 72%, rgba(214,166,55,.12), transparent 34%),
    linear-gradient(180deg, #020813 0%, #050d1b 44%, #020716 100%);
}

body.theme-light {
  --bg: #f7f3ea;
  --bg-2: #ede7da;
  --panel: rgba(255,255,255,.68);
  --panel-strong: rgba(255,255,255,.88);
  --line: rgba(18,35,58,.14);
  --text: #07172d;
  --muted: rgba(7,23,45,.70);
  --muted-2: rgba(7,23,45,.50);
}

body.theme-light .site-bg {
  background:
    radial-gradient(circle at 14% 8%, rgba(214,166,55,.24), transparent 30%),
    radial-gradient(circle at 84% 15%, rgba(7,23,45,.12), transparent 34%),
    linear-gradient(180deg, #f7f3ea 0%, #ede7da 100%);
}

.site-header {
  background: rgba(2,8,19,.72);
  border-color: rgba(214,166,55,.16);
  box-shadow: 0 0 0 1px rgba(214,166,55,.04), 0 22px 80px rgba(0,0,0,.24);
}

.site-header.is-scrolled {
  background: rgba(2,8,19,.92);
  border-color: rgba(214,166,55,.22);
  box-shadow: 0 24px 90px rgba(0,0,0,.36), var(--shadow-gold);
}

.brand-mark,
.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #b98722 0%, #d6a637 42%, #fff0b5 100%);
  box-shadow: 0 0 32px rgba(214,166,55,.32), 0 16px 42px rgba(214,166,55,.18);
}

.section-label {
  color: var(--gold-2);
  text-shadow: 0 0 22px rgba(214,166,55,.28);
}

h1, h2 {
  text-shadow: 0 12px 52px rgba(0,0,0,.36);
}

.hero-grid {
  gap: 84px;
}

.hero-visual {
  border-color: rgba(214,166,55,.24);
  background: linear-gradient(160deg, rgba(7,23,45,.8), rgba(255,255,255,.04));
  box-shadow: var(--shadow-gold-strong);
}

.hero-visual::after {
  background:
    linear-gradient(180deg, rgba(2,8,19,.02), rgba(2,8,19,.58)),
    radial-gradient(circle at 76% 12%, rgba(255,217,119,.24), transparent 28%),
    radial-gradient(circle at 22% 86%, rgba(214,166,55,.16), transparent 30%);
}

.hero-visual img {
  filter: saturate(.9) contrast(1.11) brightness(.82);
  object-position: center 26%;
}

.hero-card {
  border-color: rgba(214,166,55,.22);
  background:
    radial-gradient(circle at 88% 10%, rgba(214,166,55,.14), transparent 36%),
    rgba(2,8,19,.72);
  box-shadow: 0 22px 80px rgba(0,0,0,.34), 0 0 52px rgba(214,166,55,.13);
}

.hero-signals span,
.topic-list span,
.workshop-cards span {
  border-color: rgba(214,166,55,.18);
  background:
    linear-gradient(135deg, rgba(214,166,55,.08), rgba(255,255,255,.035));
  box-shadow: 0 0 34px rgba(214,166,55,.06);
}

.audience-grid article,
.process-line article,
.counter-card,
.contact-form {
  border-color: rgba(214,166,55,.18);
  background:
    radial-gradient(circle at 84% 8%, rgba(214,166,55,.17), transparent 32%),
    linear-gradient(145deg, rgba(7,23,45,.72), rgba(4,9,20,.68));
  box-shadow:
    0 0 0 1px rgba(214,166,55,.035),
    0 26px 84px rgba(0,0,0,.28),
    0 0 58px rgba(214,166,55,.08);
}

.audience-grid article:hover,
.process-line article:hover {
  border-color: rgba(214,166,55,.34);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(214,166,55,.08),
    0 30px 100px rgba(0,0,0,.34),
    0 0 80px rgba(214,166,55,.14);
}

.audience-grid article,
.process-line article {
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.split-media,
.about-media {
  border-color: rgba(214,166,55,.2);
  box-shadow:
    0 34px 110px rgba(0,0,0,.36),
    0 0 70px rgba(214,166,55,.10);
}

.split-media img,
.about-media img {
  filter: saturate(.88) contrast(1.1) brightness(.82);
}

.workshop-panel {
  border-color: rgba(214,166,55,.26);
  background:
    radial-gradient(circle at 82% 16%, rgba(255,217,119,.21), transparent 30%),
    radial-gradient(circle at 8% 90%, rgba(214,166,55,.13), transparent 32%),
    linear-gradient(135deg, rgba(3,14,32,.92), rgba(10,25,49,.78));
  box-shadow:
    0 0 0 1px rgba(214,166,55,.04),
    0 32px 120px rgba(0,0,0,.36),
    0 0 96px rgba(214,166,55,.16);
}

.workshop-side {
  display: grid;
  gap: 18px;
}

.workshop-image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.workshop-image-stack img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(214,166,55,.2);
  filter: saturate(.88) contrast(1.08) brightness(.78);
  box-shadow: 0 20px 70px rgba(0,0,0,.24), 0 0 46px rgba(214,166,55,.1);
}

input, textarea, select {
  border-color: rgba(214,166,55,.16);
  background: rgba(2,8,19,.55);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(214,166,55,.46);
  box-shadow: 0 0 0 4px rgba(214,166,55,.10);
}

.btn-secondary {
  border-color: rgba(214,166,55,.19);
  background: rgba(2,8,19,.42);
}

.scroll-progress-ring {
  stroke: var(--gold-2) !important;
  filter: drop-shadow(0 0 8px rgba(214,166,55,.45));
}

body.theme-light .site-header {
  background: rgba(247,243,234,.86);
  border-color: rgba(214,166,55,.24);
}

body.theme-light .audience-grid article,
body.theme-light .process-line article,
body.theme-light .counter-card,
body.theme-light .contact-form,
body.theme-light .workshop-panel {
  background:
    radial-gradient(circle at 84% 8%, rgba(214,166,55,.13), transparent 32%),
    rgba(255,255,255,.74);
  box-shadow: 0 22px 80px rgba(7,23,45,.10), 0 0 54px rgba(214,166,55,.09);
}

body.theme-light .hero-visual,
body.theme-light .split-media,
body.theme-light .about-media {
  box-shadow: 0 28px 90px rgba(7,23,45,.16), 0 0 54px rgba(214,166,55,.12);
}

@media (max-width: 980px) {
  .hero-grid {
    gap: 46px;
  }
}

@media (max-width: 720px) {
  .workshop-image-stack {
    grid-template-columns: 1fr;
  }
}


/* --- BartaGeri.hu v3 finalizált vizuális és layout módosítások --- */
:root {
  --bg: #04070d;
  --bg-2: #07111e;
  --navy: #071b36;
  --deep-navy: #030a14;
  --charcoal: #15181e;
  --grey-18: #2e3138;

  --gold: #b88a3a;
  --gold-2: #d6b46a;
  --gold-3: #ead59a;
  --bronze: #8a6428;

  --neon-blue: #2f80ff;
  --neon-blue-2: #59a7ff;

  --panel: rgba(6, 14, 28, .64);
  --panel-strong: rgba(9, 20, 38, .84);
  --line: rgba(255, 255, 255, .125);

  --shadow-gold: 0 0 28px rgba(184,138,58,.18), 0 0 70px rgba(184,138,58,.08);
  --shadow-gold-strong: 0 0 0 1px rgba(184,138,58,.22), 0 26px 86px rgba(184,138,58,.12), 0 38px 110px rgba(0,0,0,.42);
}

.site-bg {
  background:
    radial-gradient(circle at 80% 12%, rgba(47,128,255,.20), transparent 34%),
    radial-gradient(circle at 16% 10%, rgba(184,138,58,.10), transparent 24%),
    radial-gradient(circle at 44% 72%, rgba(47,128,255,.09), transparent 34%),
    linear-gradient(180deg, #04070d 0%, #07111e 45%, #03070d 100%);
}

body.theme-light .site-bg {
  background:
    radial-gradient(circle at 80% 12%, rgba(47,128,255,.12), transparent 34%),
    radial-gradient(circle at 16% 10%, rgba(184,138,58,.14), transparent 25%),
    linear-gradient(180deg, #f5f4ef 0%, #e9ecef 100%);
}

.section-xl { padding: 122px 0 54px; }
.section { padding: 74px 0; }
.compact-top { padding-top: 42px; }

h1 {
  font-size: clamp(3rem, 6.6vw, 6.25rem);
  line-height: .9;
  letter-spacing: -.08em;
  max-width: 820px;
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.35rem);
  line-height: .96;
  letter-spacing: -.072em;
}

.hero-grid {
  grid-template-columns: minmax(0, .98fr) minmax(380px, .72fr);
  gap: 68px;
}

.hero-lead { max-width: 690px; }

.hero-visual {
  min-height: 590px;
  border-color: rgba(184,138,58,.22);
  background: linear-gradient(150deg, rgba(7,27,54,.86), rgba(21,24,30,.55));
  box-shadow: var(--shadow-gold-strong), 0 0 90px rgba(47,128,255,.08);
}

.hero-visual img {
  min-height: 590px;
  object-position: center;
  filter: saturate(.88) contrast(1.08) brightness(.78);
}

.hero-visual::after {
  background:
    linear-gradient(180deg, rgba(4,7,13,.02), rgba(4,7,13,.55)),
    radial-gradient(circle at 78% 10%, rgba(47,128,255,.18), transparent 32%),
    radial-gradient(circle at 22% 90%, rgba(184,138,58,.12), transparent 34%);
}

.brand-mark,
.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #9b712d 0%, #b88a3a 48%, #d6b46a 100%);
  box-shadow: 0 0 24px rgba(184,138,58,.24), 0 14px 38px rgba(184,138,58,.16);
}

.section-label {
  color: var(--gold-2);
  text-shadow: 0 0 18px rgba(184,138,58,.20);
}

.site-header {
  background: rgba(4,7,13,.76);
  border-color: rgba(47,128,255,.12);
  box-shadow: 0 0 0 1px rgba(184,138,58,.035), 0 22px 80px rgba(0,0,0,.22);
}

.site-header.is-scrolled {
  border-color: rgba(184,138,58,.18);
  box-shadow: 0 24px 90px rgba(0,0,0,.34), 0 0 46px rgba(47,128,255,.08), var(--shadow-gold);
}

.two-col-section {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(330px, .72fr);
  gap: 64px;
  align-items: center;
}

.section-copy p { max-width: 720px; }

.section-photo {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(184,138,58,.20);
  min-height: 460px;
  background: var(--panel);
  box-shadow: 0 32px 100px rgba(0,0,0,.32), 0 0 62px rgba(184,138,58,.09), 0 0 60px rgba(47,128,255,.06);
}

.section-photo.wide { min-height: 380px; }

.section-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.86) contrast(1.08) brightness(.80);
}

.section-intro-with-image { margin-bottom: 28px; }

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.audience-grid article,
.process-line article,
.difference-grid article,
.contact-form {
  border-color: rgba(184,138,58,.17);
  background:
    radial-gradient(circle at 84% 8%, rgba(184,138,58,.11), transparent 32%),
    radial-gradient(circle at 20% 92%, rgba(47,128,255,.06), transparent 32%),
    linear-gradient(145deg, rgba(7,27,54,.62), rgba(21,24,30,.66));
  box-shadow:
    0 0 0 1px rgba(184,138,58,.028),
    0 24px 76px rgba(0,0,0,.26),
    0 0 46px rgba(184,138,58,.065);
}

.audience-grid article {
  min-height: 240px;
  padding: 26px;
}

.process-head {
  margin-bottom: 28px;
}

.process-line {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-line article {
  min-height: 220px;
}

.process-line article::before { display: none; }

.workshop-panel {
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: 54px;
  padding: clamp(34px, 4.6vw, 56px);
  border-color: rgba(184,138,58,.22);
  background:
    radial-gradient(circle at 84% 18%, rgba(47,128,255,.16), transparent 34%),
    radial-gradient(circle at 5% 8%, rgba(184,138,58,.12), transparent 28%),
    linear-gradient(135deg, rgba(7,27,54,.80), rgba(21,24,30,.58));
  box-shadow:
    0 0 0 1px rgba(184,138,58,.035),
    0 30px 105px rgba(0,0,0,.34),
    0 0 72px rgba(184,138,58,.10);
}

.workshop-main-image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(184,138,58,.22);
  box-shadow: 0 26px 90px rgba(0,0,0,.32), 0 0 56px rgba(184,138,58,.10);
}

.workshop-main-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(.86) contrast(1.08) brightness(.78);
}

.workshop-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(4,7,13,.66));
}

.workshop-main-image span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  border: 1px solid rgba(184,138,58,.22);
  background: rgba(4,7,13,.62);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  color: var(--text);
  text-align: center;
}

.why-head {
  max-width: 980px;
  margin-bottom: 28px;
}

.why-head p {
  max-width: 780px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.difference-grid article {
  border-radius: 28px;
  padding: 30px;
  min-height: 260px;
}

.difference-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 22px;
  color: var(--gold-3);
  border: 1px solid rgba(184,138,58,.22);
  background: radial-gradient(circle at 70% 18%, rgba(184,138,58,.18), rgba(47,128,255,.05));
  box-shadow: 0 0 34px rgba(184,138,58,.12);
  font-size: 1.35rem;
  font-weight: 900;
}

.proof-strip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.proof-strip span {
  border: 1px solid rgba(184,138,58,.16);
  border-radius: 20px;
  padding: 18px 16px;
  background: rgba(7,27,54,.34);
  color: var(--text);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 0 36px rgba(47,128,255,.045);
}

.contact-form .btn-primary {
  min-height: 62px;
  padding: 0 34px;
  font-size: 1rem;
}

.form-note {
  color: var(--muted);
  font-size: .9rem;
}

body.theme-light .audience-grid article,
body.theme-light .process-line article,
body.theme-light .difference-grid article,
body.theme-light .contact-form,
body.theme-light .workshop-panel,
body.theme-light .section-photo,
body.theme-light .workshop-main-image {
  background:
    radial-gradient(circle at 84% 8%, rgba(184,138,58,.10), transparent 32%),
    rgba(255,255,255,.76);
  box-shadow: 0 22px 80px rgba(7,23,45,.10), 0 0 45px rgba(47,128,255,.06), 0 0 40px rgba(184,138,58,.07);
}

@media (max-width: 1180px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .difference-grid,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .two-col-section,
  .workshop-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-photo,
  .section-photo.wide,
  .workshop-main-image,
  .workshop-main-image img {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .section-xl { padding-top: 108px; padding-bottom: 34px; }
  .section { padding: 56px 0; }
  .compact-top { padding-top: 30px; }

  h1 { font-size: clamp(2.75rem, 13vw, 4.6rem); }
  h2 { font-size: clamp(2rem, 9vw, 3.2rem); }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
  }

  .audience-grid,
  .process-line,
  .difference-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .section-photo,
  .section-photo.wide,
  .workshop-main-image,
  .workshop-main-image img {
    min-height: 330px;
  }
}


/* --- BartaGeri.hu v4 gyűjtött javítások --- */

/* 01 / Szemlélet: kép balra, szöveg jobbra */
.szemlelet-section .image-left {
  grid-template-columns: minmax(360px, .78fr) minmax(0, 1fr);
}

.szemlelet-section .section-photo {
  min-height: 520px;
}

.szemlelet-section .section-photo img {
  object-position: 47% 22%;
}

/* Hero kép crop finomítás: váll ne vágódjon le */
.hero-visual img {
  object-position: 66% center;
}

/* 04 / Folyamat kép cseréje és crop biztonságosabb */
.process-section .section-photo img {
  object-position: center;
}

/* 06 / Miért más: balosabb tengely */
.why-head {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.why-head h2,
.why-head p {
  margin-left: 0;
  margin-right: 0;
}

.difference-grid,
.proof-strip {
  margin-left: 0;
  margin-right: auto;
}

/* Kamera ikon a Gyakorlatba fordított tudás kártyán */
.difference-icon svg,
.contact-socials svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.camera-icon svg circle {
  fill: none;
}

/* Contact social links */
.contact-details {
  gap: 8px;
}

.contact-details a {
  width: fit-content;
}

.contact-socials {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(184,138,58,.20);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  background:
    radial-gradient(circle at 75% 15%, rgba(184,138,58,.11), transparent 34%),
    rgba(7,27,54,.36);
  box-shadow: 0 0 32px rgba(184,138,58,.055), 0 0 28px rgba(47,128,255,.035);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.contact-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(184,138,58,.38);
  box-shadow: 0 0 42px rgba(184,138,58,.12), 0 0 35px rgba(47,128,255,.07);
}

.contact-socials svg {
  width: 18px;
  height: 18px;
  color: var(--gold-2);
}

.contact-socials a:nth-child(2) svg,
.contact-socials a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

/* Workshop szekció törölve HTML-ből; ha cache miatt látszana, ne jelenjen meg */
#workshopok {
  display: none !important;
}

/* Picit stabilabb vertikális ritmus */
.section {
  padding-top: 68px;
  padding-bottom: 68px;
}

@media (max-width: 980px) {
  .szemlelet-section .image-left {
    grid-template-columns: 1fr;
  }

  .szemlelet-section .section-photo {
    order: 1;
  }

  .szemlelet-section .section-copy {
    order: 2;
  }
}


/* --- v5 végső javítások --- */
.kinek-section .section-photo img {
  object-position: center 58%;
}

.process-section .section-photo img {
  object-position: center 46%;
}

/* A Miért más? blokk maradjon középen, csak a heading legyen balra zárt */
.why-head {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.why-head h2,
.why-head p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.difference-grid,
.proof-strip {
  margin-left: auto;
  margin-right: auto;
}


/* --- v7 utolsó igazítás: Miért más? fejléc a bal kártya tengelyére --- */
.why-section .why-head {
  max-width: var(--max);
  width: min(100% - 48px, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.why-section .why-head h2,
.why-section .why-head p {
  max-width: 820px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}


/* --- v8 mobil hero javítás --- */
@media (max-width: 720px) {
  .section-xl {
    padding-top: 104px !important;
    padding-bottom: 44px !important;
  }

  .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    align-items: start !important;
  }

  .hero-copy {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .hero-copy .section-label {
    display: block !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-break: normal !important;
    letter-spacing: .26em !important;
    line-height: 1.75 !important;
    font-size: .7rem !important;
    margin-bottom: 22px !important;
  }

  h1 {
    max-width: 100% !important;
    font-size: clamp(2.85rem, 12.4vw, 4.1rem) !important;
    line-height: .92 !important;
    letter-spacing: -.075em !important;
    margin-bottom: 24px !important;
  }

  .hero-lead {
    max-width: 100% !important;
    font-size: 1.02rem !important;
    line-height: 1.62 !important;
  }

  .hero-visual {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 380px !important;
    margin: 0 !important;
    border-radius: 28px !important;
  }

  .hero-visual img {
    min-height: 380px !important;
    object-position: 64% center !important;
  }

  .hero-card {
    left: 16px !important;
    right: auto !important;
    bottom: 16px !important;
    max-width: calc(100% - 32px) !important;
  }

  .hero-badge {
    right: 16px !important;
    top: 16px !important;
    max-width: calc(100% - 32px) !important;
  }

  .hero-cta,
  .hero-signals {
    max-width: 100% !important;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem) !important;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 340px !important;
  }

  .hero-lead {
    font-size: .98rem !important;
  }
}


/* --- v9 mobil hero badge/card positioning fix --- */
@media (max-width: 720px) {
  .hero-card {
    width: auto !important;
    max-width: min(230px, calc(100% - 32px)) !important;
    padding: 14px 16px !important;
  }

  .hero-card strong {
    font-size: 1rem !important;
    line-height: 1.1 !important;
  }

  .hero-card span {
    font-size: .82rem !important;
    line-height: 1.25 !important;
  }

  .hero-card-a {
    left: 16px !important;
    right: auto !important;
    bottom: 16px !important;
    top: auto !important;
  }

  .hero-card-b {
    left: 16px !important;
    right: auto !important;
    top: 16px !important;
    bottom: auto !important;
  }
}


/* --- Kapcsolati űrlap spamcsapda --- */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* --- Üzenetküldés siker / hiba oldal --- */
.system-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px 0;
}

.system-page h1 {
  max-width: 900px;
}

.system-page .hero-lead {
  max-width: 820px;
}
