/* =========================================================
   MUCK'N'RIDE — Main stylesheet
   Egyseges design rendszer a teljes oldalhoz
   ========================================================= */

:root {
  --color-bg:        #faf7f2;     /* warm off-white, kicsit pergament */
  --color-surface:   #f0ebe1;     /* sandy beige */
  --color-ink:       #1a1410;     /* dark earth */
  --color-ink-soft:  #4a3f36;
  --color-muted:     #8a7d70;
  --color-line:      #e1d8c8;
  --color-brand:     #3d5d3a;     /* moss / forest green */
  --color-brand-2:   #54784f;
  --color-accent:    #e25e00;     /* a logod narancsa */
  --color-accent-2:  #ff7a1f;
  --color-clay:      #b8714a;     /* terracotta */
  --color-dark:      #1a1410;
  --shadow-sm: 0 1px 2px rgba(26,20,16,.05), 0 1px 1px rgba(26,20,16,.04);
  --shadow-md: 0 8px 24px rgba(26,20,16,.10), 0 2px 6px rgba(26,20,16,.05);
  --shadow-lg: 0 20px 60px rgba(26,20,16,.20);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --maxw: 1200px;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Bowlby One SC", "Inter", sans-serif; /* graffitis, vastag display */
  --font-hand: "Permanent Marker", cursive; /* kezzel-iras / spray accent */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2 {
  font-family: var(--font-display);
  margin: 0 0 .4em;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--color-ink);
  text-transform: uppercase;
}
h3, h4 {
  margin: 0 0 .4em;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--color-ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; color: var(--color-ink-soft); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--color-accent);
  margin-bottom: 1rem;
  transform: rotate(-2deg);
  line-height: 1.1;
}
/* Bowlby-stilusu kitoltott narancs graffiti-tag a szekcio-cimek folott */
.tag-graffiti {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-accent);
  margin-bottom: 1.3rem;
  padding: 8px 18px 7px;
  border-radius: 6px;
  transform: rotate(-1.5deg);
  line-height: 1;
  box-shadow: 3px 3px 0 rgba(26,20,16,.10);
}
.section-dark .tag-graffiti,
.cta .tag-graffiti {
  background: var(--color-accent-2) !important;
  color: #1a1410 !important;
  box-shadow: 3px 3px 0 rgba(0,0,0,.28);
  border-color: transparent !important;
}
/* Hero/subhero (vilagos szovegen): vilagosabb hatter, sotetebb szoveg neha jobb */
.hero .tag-graffiti,
.subhero .tag-graffiti {
  font-size: 1.1rem;
  padding: 9px 20px 8px;
  box-shadow: 4px 4px 0 rgba(0,0,0,.35);
}
.tag-pill {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-accent);
  padding: 4px 12px;
  border-radius: 999px;
}
/* underline accent for headings */
.h-underline {
  position: relative;
  display: inline-block;
}
.h-underline::after {
  content: "";
  display: block;
  width: 60%;
  height: 6px;
  background: var(--color-accent);
  border-radius: 4px;
  margin-top: 6px;
  transform: skewX(-12deg);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
@media (max-width: 700px) {
  section { padding: 64px 0; }
}

/* ---------- Navbar (transparent over hero / solid on scroll) ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.nav.scrolled {
  background: rgba(15, 22, 20, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 0;
  box-shadow: var(--shadow-sm);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.brand img {
  height: 110px;
  width: auto;
  transition: height .25s ease;
  display: block;
}
.nav.scrolled .brand img { height: 80px; }
@media (max-width: 880px) {
  .brand img { height: 70px; }
  .nav.scrolled .brand img { height: 58px; }
}
/* Footer: a feher PNG-t hasznaljuk, nem kell filter sem */
/* A globalis .brand szabaly (display:flex, align-items:center) a navigaciohoz keszult,
   itt visszaallitjuk block elrendezesre, hogy a logo, a tagline es a social ikonok
   egymas alatt jelenjenek meg — kulonben mobilon a FB/IG ikonok a jobb szelre csusznak. */
.footer .col.brand {
  display: block;
  align-items: initial;
  gap: 0;
}
.footer .brand img {
  height: 160px;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .footer .brand img { height: 120px; }
}
/* Anchor scroll-fix: nav alatt jelenjen meg a kategoria-cim, ne mogotte
   Logo 110px + padding => nav ~130px non-scrolled, ~96px scrolled.
   Use 150px to land below the navbar with breathing room on the title. */
.category-block {
  scroll-margin-top: 150px;
}
@media (max-width: 880px) {
  .category-block { scroll-margin-top: 110px; }
}

/* ---------- Mini gallery / carousel ---------- */
.gallery {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-surface);
  aspect-ratio: 4 / 3;
  width: 100%;
}
.gallery-track {
  display: flex;
  height: 100%;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
  user-select: none;
  -webkit-user-drag: none;
}
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.88);
  border: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  color: var(--color-ink);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.gallery-btn:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.gallery-btn.prev { left: 12px; }
.gallery-btn.next { right: 12px; }
.gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}
.gallery-dots .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  transition: background .2s, transform .15s;
  border: 1px solid rgba(0,0,0,.15);
}
.gallery-dots .dot:hover { background: rgba(255,255,255,.85); }
.gallery-dots .dot.active { background: #fff; transform: scale(1.15); }
@media (max-width: 600px) {
  .gallery-btn { width: 36px; height: 36px; font-size: 18px; }
}
.nav-links {
  display: flex;
  gap: 26px;
  font-size: .95rem;
  color: rgba(255,255,255,.92);
  align-items: center;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  font-weight: 500;
}
.nav-links a:hover { color: var(--color-accent); }
.nav-links a.active { color: var(--color-accent); }
.nav-links .btn { padding: 10px 18px; font-size: .9rem; }
/* Kontakt CTA button keeps its own color even when active/hover */
.nav-links a.btn.active,
.nav-links a.btn:hover { color: #fff; }
.nav-links a.btn-primary.active { background: var(--color-accent); color: #fff; }
.nav-links a.btn-primary.active:hover { background: #c47a2a; color: #fff; }

/* ---------- Language switcher ---------- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,.22);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
}
.lang-switcher a {
  color: rgba(255,255,255,.6);
  padding: 5px 8px;
  border-radius: 4px;
  transition: color .2s ease, background .2s ease;
  text-transform: uppercase;
  border-bottom: none !important;
}
.lang-switcher a:hover { color: #fff; }
.lang-switcher a.lang-active {
  color: #fff;
  background: rgba(255,255,255,.14);
}
@media (max-width: 880px) {
  .lang-switcher {
    margin-left: 0;
    margin-top: 8px;
    padding-left: 0;
    padding-top: 14px;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.1);
    width: 100%;
    justify-content: center;
    gap: 14px;
  }
  .lang-switcher a { padding: 8px 14px; font-size: .9rem; }
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 880px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(15,22,20,.98);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    width: 100%;
  }
  .nav-links a:last-child { border-bottom: none; }
  .menu-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: 130px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,22,20,.4) 0%, rgba(15,22,20,.6) 70%, rgba(15,22,20,.85) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero h1 {
  color: #fff;
  margin-bottom: .55em;
  letter-spacing: -0.025em;
}
.hero .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,.92);
  max-width: 720px;
  margin-bottom: 2em;
}
.hero .eyebrow { color: var(--color-accent); }
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.5em;
}
.hero-meta {
  margin-top: 2.5em;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
}
.hero-meta strong { color: #fff; font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  text-align: center;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: #c47a2a;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(214,138,60,.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: #fff;
  color: var(--color-ink);
}
.btn-dark {
  background: var(--color-brand);
  color: #fff;
}
.btn-dark:hover {
  background: var(--color-brand-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--color-brand);
  border-color: var(--color-line);
}
.btn-ghost:hover {
  background: var(--color-surface);
  border-color: var(--color-brand);
}
.btn-arrow::after {
  content: "→";
  font-size: 1.15em;
  transition: transform .22s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }
.btn-sm { padding: 10px 18px; font-size: .9rem; }

/* ---------- Sections ---------- */
.section-light { background: var(--color-surface); }
.section-dark  {
  background: var(--color-dark);
  color: #fff;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.78); }
.section-dark .eyebrow { color: var(--color-accent); }

.section-header {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Two-column split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse > :first-child { order: 0; }
}

/* ---------- Icon list ---------- */
.icon-list { list-style: none; padding: 0; margin: 1.5em 0 0; }
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 1.02rem;
  color: var(--color-ink);
}
.icon-list .ico {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-brand);
}

/* ---------- Cards grid ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card .ico-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #eef2ee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  margin-bottom: 20px;
}
.card .ico-wrap svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; margin: 0; color: var(--color-ink-soft); }

/* ---------- Bike / Product cards ---------- */
.bike-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.bike-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.bike-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.bike-card .img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--color-surface);
}
.bike-card .body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bike-card .tag {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.bike-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.bike-card .desc {
  font-size: .94rem;
  flex: 1;
  margin-bottom: 18px;
}
.bike-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.bike-card .meta span {
  font-size: .8rem;
  background: var(--color-surface);
  border-radius: 999px;
  padding: 4px 12px;
  color: var(--color-ink-soft);
}
.bike-card .price {
  font-weight: 700;
  color: var(--color-brand);
  font-size: 1.05rem;
  border-top: 1px solid var(--color-line);
  padding-top: 16px;
}
.bike-card .price small {
  font-weight: 500;
  color: var(--color-muted);
  font-size: .82rem;
  margin-left: 4px;
}

.category-block {
  margin-bottom: 80px;
}
.category-block:last-child { margin-bottom: 0; }
.category-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}
.category-head h2 { margin: 0; }
.category-head .note { color: var(--color-muted); font-size: .9rem; }

/* ---------- Price tables ---------- */
.price-table {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 22px;
  margin: 18px 0 26px;
}
.price-table .cell { text-align: center; }
.price-table .cell .label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-muted);
  margin-bottom: 6px;
}
.price-table .cell .val {
  font-weight: 700;
  color: var(--color-brand);
  font-size: 1.1rem;
}
@media (max-width: 700px) {
  .price-table { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ---------- CTA section ---------- */
.cta {
  background: var(--color-brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cta-bg, none);
  background-size: cover;
  background-position: center;
  opacity: .22;
  z-index: 0;
}
.cta .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.88); font-size: 1.1rem; margin-bottom: 2em; }

/* ---------- Partner / Leasing logos ---------- */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
@media (max-width: 700px) { .partner-logos { grid-template-columns: 1fr; } }
.partner-logos .logo-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.partner-logos .logo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.partner-logos .logo-card .logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.partner-logos .logo-card .caption {
  font-size: .8rem;
  color: var(--color-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.partner-logos .logo-card .domain {
  font-size: .9rem;
  color: var(--color-accent);
  font-weight: 600;
}

/* ---------- Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: .88rem;
  color: var(--color-ink);
  font-weight: 500;
}
.form-field input:not([type=checkbox]):not([type=radio]),
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
  transition: border-color .2s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(43,74,62,.08);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--color-ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.form-check input[type=checkbox],
.form-check input[type=radio] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 3px 0 0 0;
  padding: 0;
  accent-color: var(--color-accent);
}
.form-check span { flex: 1; }

/* ---------- Highlight callout ---------- */
.highlight-box {
  margin: 14px 0;
  padding: 14px 18px;
  background: linear-gradient(90deg, rgba(226,94,0,.10), rgba(226,94,0,.04));
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  color: var(--color-ink);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.highlight-box .hb-icon {
  flex: 0 0 24px;
  color: var(--color-accent);
}
.highlight-box strong { color: var(--color-accent); font-weight: 700; }

/* ---------- Footer ---------- */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
  font-size: .94rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
.footer .col h4 {
  color: #fff;
  font-size: .92rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer .col ul { list-style: none; padding: 0; margin: 0; }
.footer .col li { margin-bottom: 10px; }
.footer .col a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer .col a:hover { color: var(--color-accent); }
/* fenti .footer .brand img szabaly ervenyes — duplikalt sor torolve */
.footer .brand-tagline { color: rgba(255,255,255,.6); font-size: .92rem; line-height: 1.6; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .legal-links a:hover { color: #fff; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px; right: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
  min-width: 260px;
}
.cookie-banner p a { color: var(--color-accent); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-buttons .btn { padding: 10px 20px; font-size: .9rem; }

/* ---------- Modal (legal pages) ---------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(15,22,20,.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.show { display: flex; }
.modal-content {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 56px;
  position: relative;
}
@media (max-width: 700px) {
  .modal-content { padding: 36px 24px; }
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--color-muted);
  line-height: 1;
  padding: 6px 10px;
}
.modal-close:hover { color: var(--color-ink); }
.modal-content h2 { margin-bottom: 24px; }
.modal-content h3 { margin-top: 28px; margin-bottom: 10px; font-size: 1.1rem; }
.modal-content p, .modal-content li { font-size: .96rem; color: var(--color-ink-soft); }
.modal-content ul { padding-left: 22px; margin-bottom: 1em; }

/* ---------- Utilities ---------- */
.muted { color: var(--color-muted); }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* Fade-in on load */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero .lead, .hero .btn, .hero .eyebrow, .hero-meta {
  animation: fadeUp .8s ease both;
}
.hero .eyebrow { animation-delay: .05s; }
.hero h1      { animation-delay: .15s; }
.hero .lead   { animation-delay: .3s; }
.hero .hero-buttons    { animation-delay: .45s; animation: fadeUp .8s ease both; }
.hero-meta    { animation-delay: .6s; }

/* ---------- Social links ---------- */
.footer .socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  transition: background .2s, color .2s, transform .2s;
}
.footer .socials a:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}
.footer .socials svg { width: 18px; height: 18px; display:block; }

.contact-info-card .socials {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.contact-info-card .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-ink);
  border: 1px solid rgba(0,0,0,.08);
  transition: background .2s, color .2s, transform .2s, border-color .2s;
}
.contact-info-card .socials a:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
  border-color: transparent;
}
.contact-info-card .socials svg { width: 20px; height: 20px; display:block; }
