:root {
  --graphite: #111827;
  --graphite-2: #1F2937;
  --ink: #172033;
  --muted: #6B7280;
  --line: #E5E7EB;
  --paper: #FFFFFF;
  --off: #F9FAFB;
  --soft: #F3F4F6;
  --brand-red: #D92314;
  --brand-red-dark: #8F1D14;
  --brand-burgundy: #5E1712;
  --brand-gold: #F5B82E;
  --brand-gold-light: #FFD56A;
  --brand-tint: #FFF4E8;
  --brand-red-tint: #FCEBE8;
  --gold: var(--brand-gold);
  --gold-2: #B87500;
  --success: var(--brand-red-dark);
  --shadow: 0 18px 50px rgba(94, 23, 18, 0.13);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(245, 184, 46, 0.62);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--brand-burgundy);
  color: var(--paper);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(94, 23, 18, 0.1);
  backdrop-filter: blur(16px);
}

.topbar {
  background: linear-gradient(90deg, var(--brand-burgundy), var(--graphite));
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.topbar__inner,
.nav,
.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.topbar__links,
.topbar__note {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 244px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(245, 184, 46, 0.72);
  border-radius: 50%;
  background: var(--brand-burgundy);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(143, 29, 20, 0.22);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__name {
  display: block;
  color: var(--graphite);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.1;
}

.brand__tagline {
  display: block;
  color: var(--brand-red-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--graphite);
  cursor: pointer;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--graphite-2);
  font-size: 15px;
  font-weight: 750;
}

.nav__menu a[aria-current="page"],
.nav__menu a:hover {
  background: var(--brand-red-tint);
  color: var(--brand-burgundy);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(94, 23, 18, 0.1);
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
  color: var(--brand-burgundy);
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(143, 29, 20, 0.18);
}

.nav__cta:hover,
.button--primary:hover {
  background: linear-gradient(135deg, var(--brand-gold-light), var(--brand-gold));
}

.hero {
  position: relative;
  min-height: 690px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(94, 23, 18, 0.92) 0%, rgba(17, 24, 39, 0.78) 42%, rgba(143, 29, 20, 0.2) 76%),
    var(--hero-image, url("assets/hero-auto-felvasarlas.webp")) center / cover no-repeat;
}

.hero__inner {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
  padding: 118px 0 68px;
}

.hero__content {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--brand-red-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.hero .eyebrow,
.page-hero .eyebrow,
.section--dark .eyebrow,
.cta-band .eyebrow {
  color: var(--brand-gold-light);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.page-title {
  margin-bottom: 20px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  color: var(--graphite);
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  color: var(--graphite);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 850;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  max-width: 620px;
}

.hero__actions,
.section-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__actions {
  margin: 30px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  border-color: rgba(94, 23, 18, 0.1);
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
  color: var(--brand-burgundy);
}

.button--dark {
  background: var(--brand-burgundy);
  color: var(--paper);
}

.button--light {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button--outline {
  border-color: rgba(94, 23, 18, 0.18);
  background: var(--paper);
  color: var(--brand-burgundy);
}

.button--outline:hover,
.button--dark:hover {
  border-color: rgba(217, 35, 20, 0.28);
  background: var(--brand-red-tint);
  color: var(--brand-burgundy);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}

.button--whatsapp {
  border-color: rgba(31, 138, 91, 0.2);
  background: #1F8A5B;
  color: #fff;
}

.button--whatsapp:hover {
  background: #176B47;
  color: #fff;
}

.phone-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.hero__brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 430px;
  margin-top: 28px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.32);
  backdrop-filter: blur(10px);
}

.hero__brand-lockup img {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(245, 184, 46, 0.72);
  border-radius: 50%;
  object-fit: cover;
}

.hero__brand-lockup strong,
.hero__brand-lockup span {
  display: block;
}

.hero__brand-lockup span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.trust-strip {
  position: relative;
  width: min(calc(100% - 32px), var(--container));
  margin: -48px auto 0;
  padding: 18px;
  border: 1px solid rgba(94, 23, 18, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-item {
  display: flex;
  gap: 12px;
  padding: 15px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, var(--brand-tint));
}

.trust-item i,
.icon-badge {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--brand-red-tint);
  color: var(--brand-red-dark);
}

.trust-item strong {
  display: block;
  color: var(--graphite);
  font-weight: 900;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 84px 0;
}

.section--soft {
  background: var(--off);
}

.section--dark {
  background: linear-gradient(135deg, var(--graphite), var(--brand-burgundy));
  color: #fff;
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark p,
.section--dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-head__text {
  max-width: 740px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  border: 1px solid rgba(94, 23, 18, 0.12);
  border-radius: 8px;
  background: var(--paper);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
}

.card p:last-child,
.feature p:last-child,
.article p:last-child {
  margin-bottom: 0;
}

.feature {
  border: 1px solid rgba(94, 23, 18, 0.12);
  border-radius: 8px;
  background: var(--paper);
  padding: 26px;
}

.feature .button {
  margin-top: 8px;
}

.facebook-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) 1fr;
  gap: 28px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(94, 23, 18, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(249, 250, 251, 0.98)),
    radial-gradient(circle at 0% 0%, rgba(217, 35, 20, 0.12), transparent 38%);
  box-shadow: var(--shadow);
}

.facebook-panel__media {
  display: grid;
  place-items: center;
  min-height: 250px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-burgundy));
}

.facebook-panel__media img {
  width: min(260px, 82%);
  aspect-ratio: 1;
  border: 4px solid rgba(245, 184, 46, 0.74);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.24);
}

.facebook-panel__content {
  max-width: 720px;
}

.facebook-panel__content p {
  color: var(--muted);
}

.mini-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.mini-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--brand-tint);
  color: var(--brand-burgundy);
  font-weight: 850;
}

.media-split {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 42px;
  align-items: center;
}

.media-split__image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--brand-burgundy);
}

.media-split__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list,
.simple-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.simple-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-red-tint);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 5px;
  height: 9px;
  border: solid var(--brand-red-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 2px;
  background: var(--brand-red);
}

.process {
  counter-reset: step;
}

.step-card {
  position: relative;
  min-height: 238px;
  border: 1px solid rgba(94, 23, 18, 0.12);
  border-radius: 8px;
  background: var(--paper);
  padding: 24px;
  overflow: hidden;
}

.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--brand-burgundy);
  color: var(--brand-gold-light);
  font-weight: 900;
}

.step-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 26px;
  width: 46px;
  height: 2px;
  background: rgba(94, 23, 18, 0.16);
}

.step-card p {
  color: var(--muted);
}

.page-hero {
  background: linear-gradient(135deg, var(--brand-burgundy), var(--graphite));
  color: #fff;
}

.page-hero__inner {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
  padding: 78px 0;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.breadcrumbs a {
  color: #fff;
  font-weight: 800;
}

.cta-band {
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(94, 23, 18, 0.94), rgba(17, 24, 39, 0.9)),
    url("assets/auto-eladas-tippek.webp") center / cover;
  color: #fff;
}

.cta-band h2,
.cta-band h3 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
}

.service-row {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: start;
}

.quote-block {
  padding: 24px;
  border-left: 4px solid var(--brand-red);
  background: var(--brand-tint);
  border-radius: 0 8px 8px 0;
  color: var(--brand-burgundy);
  font-weight: 750;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid rgba(94, 23, 18, 0.12);
  border-radius: 8px;
  background: var(--paper);
  padding: 0;
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  color: var(--brand-burgundy);
  cursor: pointer;
  font-weight: 850;
}

.faq summary::after {
  content: "+";
  color: var(--brand-red);
  font-size: 24px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.article {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(94, 23, 18, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

.article__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.article__meta {
  margin-bottom: 10px;
  color: var(--brand-red-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.article__body p {
  color: var(--muted);
}

.article__body .button {
  align-self: start;
  margin-top: auto;
}

.form-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

.contact-focus {
  grid-template-columns: 0.78fr 1.22fr;
}

.contact-panel {
  position: sticky;
  top: 112px;
  border: 1px solid rgba(94, 23, 18, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-burgundy), var(--graphite));
  color: #fff;
  padding: 28px;
}

.contact-panel h2,
.contact-panel h3 {
  color: #fff;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.77);
}

.contact-method {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-method .icon-badge {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 184, 46, 0.52);
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
  color: var(--brand-burgundy);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.contact-method .icon-badge svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.contact-method strong {
  display: block;
  color: #fff;
}

.contact-method span,
.contact-method a {
  color: rgba(255, 255, 255, 0.8);
}

.form-card {
  border: 1px solid rgba(94, 23, 18, 0.12);
  border-radius: 8px;
  background: var(--paper);
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-note {
  display: grid;
  gap: 4px;
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 1px solid rgba(217, 35, 20, 0.18);
  border-radius: 8px;
  background: var(--brand-tint);
  color: var(--brand-burgundy);
}

.form-note strong,
.form-note span {
  display: block;
}

.form-note span {
  color: #6f4b46;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

label {
  color: var(--brand-burgundy);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #D9C8C5;
  border-radius: 8px;
  background: #fff;
  color: var(--graphite);
  padding: 10px 12px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input[type="file"] {
  padding: 10px;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-field input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.field:focus-within label {
  color: var(--brand-red-dark);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-red-dark);
}

.form-status {
  min-height: 24px;
  color: var(--success);
  font-weight: 750;
}

.call-card {
  border: 1px solid rgba(94, 23, 18, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 232, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(245, 184, 46, 0.2), transparent 36%);
  padding: 32px;
  box-shadow: var(--shadow);
}

.call-card--quiet {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 248, 238, 0.82)),
    radial-gradient(circle at 100% 0%, rgba(245, 184, 46, 0.1), transparent 34%);
  box-shadow: 0 18px 44px rgba(94, 23, 18, 0.08);
}

.call-card--quiet .lead {
  max-width: 720px;
}

.contact-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.contact-steps article {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(94, 23, 18, 0.12);
  border-radius: 8px;
  background: #fff;
}

.contact-steps--compact {
  margin-top: 22px;
}

.contact-steps--compact article {
  min-height: 96px;
  background: rgba(255, 255, 255, 0.78);
}

.contact-steps strong,
.contact-steps span {
  display: block;
}

.contact-steps strong {
  color: var(--brand-burgundy);
  margin-bottom: 6px;
}

.contact-steps span {
  color: var(--muted);
}

.quiet-note {
  margin: 20px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(245, 184, 46, 0.26);
  border-radius: 8px;
  background: rgba(245, 184, 46, 0.1);
  color: #6b2b24;
  font-weight: 750;
}

.contact-option {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-option .button {
  align-self: start;
  margin-top: auto;
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}

.tiktok-card {
  display: grid;
  place-items: start center;
  min-height: 560px;
  border: 1px solid rgba(94, 23, 18, 0.12);
  border-radius: 8px;
  background: var(--paper);
  padding: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
}

.tiktok-card .tiktok-embed {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

.tiktok-card iframe {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  border-radius: 8px;
}

.embed-note {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.quick-contact-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(94, 23, 18, 0.14);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 -12px 28px rgba(17, 24, 39, 0.12);
}

.quick-contact-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 900;
}

.quick-contact-bar a:first-child {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
  color: var(--brand-burgundy);
}

.quick-contact-bar a:last-child {
  background: #1F8A5B;
  color: #fff;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.legal-content {
  max-width: 880px;
}

.legal-content h2 {
  margin-top: 38px;
  font-size: 28px;
}

.legal-note {
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(217, 35, 20, 0.22);
  border-radius: 8px;
  background: var(--brand-tint);
  color: var(--brand-burgundy);
}

.concept-table {
  display: grid;
  gap: 14px;
}

.concept-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(94, 23, 18, 0.12);
  border-radius: 8px;
  background: var(--paper);
}

.concept-row strong {
  color: var(--graphite);
}

.not-found {
  min-height: 74vh;
  display: grid;
  align-items: center;
  background: var(--off);
}

.footer {
  background: linear-gradient(135deg, var(--graphite), var(--brand-burgundy));
  color: rgba(255, 255, 255, 0.78);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 0.9fr;
  gap: 34px;
  padding: 58px 0 34px;
}

.footer h2,
.footer h3,
.footer strong {
  color: #fff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border: 2px solid rgba(245, 184, 46, 0.66);
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand h2 {
  margin-bottom: 0;
}

.footer a:hover {
  color: #fff;
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer__bottom a {
  color: var(--brand-gold-light);
  font-weight: 850;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: none;
  width: min(460px, calc(100% - 36px));
  border: 1px solid rgba(94, 23, 18, 0.16);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner p {
  margin-bottom: 14px;
  color: var(--muted);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-link {
  color: var(--brand-red-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 1040px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav {
    position: relative;
  }

  .nav__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__menu a {
    width: 100%;
  }

  .nav__cta {
    display: none;
  }

  .trust-strip__grid,
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-split,
  .form-shell,
  .facebook-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    position: static;
  }

  .contact-steps {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
    padding-bottom: 76px;
  }

  .topbar {
    display: none;
  }

  .nav {
    min-height: 66px;
  }

  .nav__menu {
    top: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand__name {
    font-size: 16px;
  }

  .brand__tagline {
    display: none;
  }

  .hero {
    min-height: 640px;
    background:
      linear-gradient(90deg, rgba(94, 23, 18, 0.94) 0%, rgba(17, 24, 39, 0.82) 62%, rgba(143, 29, 20, 0.34) 100%),
      var(--hero-image, url("assets/hero-auto-felvasarlas.webp")) center / cover no-repeat;
  }

  .hero__inner {
    padding: 82px 0 54px;
  }

  h1,
  .page-title {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero p,
  .page-hero p,
  .lead {
    font-size: 17px;
  }

  .trust-strip {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .trust-strip__grid,
  .grid--2,
  .grid--3,
  .grid--4,
  .form-grid,
  .footer__grid,
  .concept-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    display: block;
  }

  .button {
    width: 100%;
  }

  .hero__actions,
  .section-actions,
  .contact-actions,
  .cookie-banner__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__brand-lockup {
    width: 100%;
  }

  .facebook-panel {
    padding: 18px;
  }

  .cta-band,
  .form-card,
  .contact-panel,
  .call-card {
    padding: 22px;
  }

  .contact-option .button {
    align-self: stretch;
  }

  .tiktok-grid {
    grid-template-columns: 1fr;
    max-width: 390px;
    margin-inline: auto;
  }

  .tiktok-card {
    width: 100%;
    min-height: 0;
    padding: 8px;
    overflow: hidden;
  }

  .tiktok-card .tiktok-embed {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .tiktok-card iframe {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: min(680px, 176vw) !important;
  }

  .quick-contact-bar {
    display: grid;
  }

  .cookie-banner {
    bottom: 92px;
    right: 14px;
    width: calc(100% - 28px);
    padding: 14px;
  }

  .cookie-banner__actions {
    align-items: stretch !important;
    flex-direction: row !important;
  }

  .cookie-banner .button {
    width: auto !important;
    flex: 1 1 0;
    min-height: 44px;
    min-width: 0;
    padding: 10px 8px;
    font-size: 13px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
