/* ===== Modern theme (DE/HU autószerviz) ===== */

:root{
  --bg: #0b1220;
  --surface: rgba(255,255,255,.06);
  --surface-2: rgba(255,255,255,.10);
  --card: rgba(255,255,255,.10);
  --border: rgba(255,255,255,.14);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);

  --accent: #6ee7ff;
  --accent-2: #a78bfa;
  --accent-3: #34d399;

  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --shadow-soft: 0 10px 30px rgba(0,0,0,.22);

  --radius: 18px;
  --radius-sm: 14px;
  --max: 1100px;

  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 10% 10%, rgba(110,231,255,.20), transparent 55%),
    radial-gradient(1000px 600px at 90% 15%, rgba(167,139,250,.18), transparent 52%),
    radial-gradient(900px 700px at 40% 90%, rgba(52,211,153,.12), transparent 55%),
    linear-gradient(180deg, #070b14 0%, #0b1220 60%, #070b14 100%);
}

a { color: inherit; }
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 18px;
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,18,32,.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.header-inner {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.brand{
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand::before{
  content:"";
  width: 10px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(110,231,255,.12);
}

.nav{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.nav a{
  text-decoration: none;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(110,231,255,.18), rgba(167,139,250,.18));
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 42px rgba(0,0,0,.35);
  background: linear-gradient(135deg, rgba(110,231,255,.26), rgba(167,139,250,.26));
}
.btn:active{ transform: translateY(0); }

.btn.secondary{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: var(--text);
  box-shadow: none;
}
.btn.secondary:hover{ background: rgba(255,255,255,.10); }

/* ===== Language switch ===== */
.lang-switch{
  display:flex;
  gap:8px;
  align-items:center;
  color: var(--muted);
}
.lang-switch a{
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.lang-switch a:hover{
  background: rgba(255,255,255,.08);
  color: var(--text);
  transform: translateY(-1px);
}
.lang-switch a.active{
  color: var(--text);
  border-color: rgba(110,231,255,.40);
  box-shadow: 0 0 0 4px rgba(110,231,255,.10);
}

/* ===== Typography ===== */
h1, h2, h3 { margin: 0 0 12px; letter-spacing: -.02em; }
h1{
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
}
h2{
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.2;
}
p{ margin: 0 0 12px; color: var(--muted); line-height: 1.6; }
.lead{
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 70ch;
}

/* ===== Sections ===== */
.hero{ padding: 34px 0 12px; }
.cta-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 12px;
}

/* Trust pills */
.trust{
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  flex-wrap: wrap;
}
.trust li{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.80);
}

/* Cards grid */
.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 10px;
}
.card{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 16px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.card strong{ font-weight: 800; }
.card span{ color: var(--muted); }
.card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.10);
  border-color: rgba(110,231,255,.22);
}

/* Steps */
.steps{ padding-left: 18px; color: rgba(255,255,255,.80); }
.steps li{ margin: 10px 0; }
.steps strong{ color: var(--text); }

/* Highlight */
.highlight{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  background: linear-gradient(135deg, rgba(110,231,255,.10), rgba(167,139,250,.10));
  box-shadow: var(--shadow-soft);
}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 40px;
  padding: 26px 0;
  background: rgba(11,18,32,.45);
  backdrop-filter: blur(12px);
}
.footer-inner{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
}
.site-footer a{ color: rgba(255,255,255,.86); }
.site-footer a:hover{ color: var(--accent); }

/* ===== Forms ===== */
.form{
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin-top: 10px;
  align-items: start;
}
label{ color: rgba(255,255,255,.78); font-size: .92rem; display: grid; gap: 6px; }
.form input, .form select, .form textarea{
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.form input:focus, .form select:focus, .form textarea:focus{
  border-color: rgba(110,231,255,.45);
  box-shadow: 0 0 0 4px rgba(110,231,255,.12);
  background: rgba(255,255,255,.09);
}
textarea{ resize: vertical; }
.form button.btn { justify-self: start; }

.notice{
  padding: 12px 14px;
  border-radius: 14px;
  margin: 12px 0;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
}
.notice.success{
  border-color: rgba(52,211,153,.35);
  background: rgba(52,211,153,.10);
}
.notice.error{
  border-color: rgba(248,113,113,.35);
  background: rgba(248,113,113,.10);
}

/* FAQ */
.faq details{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 12px 14px;
  margin: 10px 0;
  background: rgba(255,255,255,.06);
}
.faq summary{
  cursor: pointer;
  color: rgba(255,255,255,.86);
  font-weight: 700;
}
.faq p{ margin-top: 10px; }

/* Sticky call bar (mobile) */
.sticky-call{
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 12px 14px;
  text-align: center;
  z-index: 60;
  box-shadow: var(--shadow-soft);
}
.sticky-call a{
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}
@media (min-width: 900px){
  .sticky-call{ display: none; }
}

/* Mobile header tweaks */
@media (max-width: 720px){
  .footer-inner{ grid-template-columns: 1fr; }
}

/* ===== Mobile hamburger menu ===== */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.nav-toggle:hover { background: rgba(255,255,255,.10); transform: translateY(-1px); }
.nav-toggle:active { transform: translateY(0); }

.nav-toggle__icon {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.86);
  border-radius: 999px;
}
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.86);
  border-radius: 999px;
}
.nav-toggle__icon::before { top: -6px; }
.nav-toggle__icon::after  { top:  6px; }

/* Desktop: nav-panel behaves like a normal row */
.nav-panel {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile: hide nav-panel, show hamburger; open as drawer */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .nav-panel {
    display: none;
    position: fixed;
    top: 74px;
    right: 12px;
    left: 12px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(11,18,32,.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    z-index: 80;
  }

  body.nav-open .nav-panel { display: flex; }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav a {
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.86);
  }

  .nav a:hover { background: rgba(255,255,255,.10); }

  .nav .btn {
    width: 100%;
    justify-content: center;
  }

  .lang-switch {
    justify-content: center;
    margin-top: 8px;
  }
}
/* ===== Modern theme (DE/HU autószerviz) ===== */

:root{
  --bg: #0b1220;
  --surface: rgba(255,255,255,.06);
  --surface-2: rgba(255,255,255,.10);
  --card: rgba(255,255,255,.10);
  --border: rgba(255,255,255,.14);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);

  --accent: #6ee7ff;
  --accent-2: #a78bfa;
  --accent-3: #34d399;

  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --shadow-soft: 0 10px 30px rgba(0,0,0,.22);

  --radius: 18px;
  --radius-sm: 14px;
  --max: 1100px;

  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 10% 10%, rgba(110,231,255,.20), transparent 55%),
    radial-gradient(1000px 600px at 90% 15%, rgba(167,139,250,.18), transparent 52%),
    radial-gradient(900px 700px at 40% 90%, rgba(52,211,153,.12), transparent 55%),
    linear-gradient(180deg, #070b14 0%, #0b1220 60%, #070b14 100%);
}

a { color: inherit; }
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 18px;
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,18,32,.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.header-inner {
  display: flex; gap: 14px; align-items: center; justify-content: space-between;
}

.brand{
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand::before{
  content:"";
  width: 10px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(110,231,255,.12);
}

.nav{
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap;
}
.nav a{
  text-decoration: none;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(110,231,255,.18), rgba(167,139,250,.18));
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 42px rgba(0,0,0,.35);
  background: linear-gradient(135deg, rgba(110,231,255,.26), rgba(167,139,250,.26));
}
.btn:active{ transform: translateY(0); }

.btn.secondary{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: var(--text);
  box-shadow: none;
}
.btn.secondary:hover{
  background: rgba(255,255,255,.10);
}

/* ===== Language switch ===== */
.lang-switch{
  display:flex; gap:8px; align-items:center;
  color: var(--muted);
}
.lang-switch a{
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.lang-switch a:hover{
  background: rgba(255,255,255,.08);
  color: var(--text);
  transform: translateY(-1px);
}
.lang-switch a.active{
  color: var(--text);
  border-color: rgba(110,231,255,.40);
  box-shadow: 0 0 0 4px rgba(110,231,255,.10);
}

/* ===== Typography ===== */
h1, h2, h3 { margin: 0 0 12px; letter-spacing: -.02em; }
h1{
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
}
h2{
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.2;
}
p{ margin: 0 0 12px; color: var(--muted); line-height: 1.6; }
.lead{
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 70ch;
}

/* ===== Sections ===== */
.hero{
  padding: 34px 0 12px;
}
.cta-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 12px;
}

/* Trust pills */
.trust{
  display: flex; gap: 10px;
  list-style: none; padding: 0; margin: 14px 0 0;
  flex-wrap: wrap;
}
.trust li{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.80);
}

/* Cards grid */
.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 10px;
}
.card{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 16px 16px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.card strong{ font-weight: 800; }
.card span{ color: var(--muted); }
.card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.10);
  border-color: rgba(110,231,255,.22);
}

/* Steps */
.steps{
  padding-left: 18px;
  color: rgba(255,255,255,.80);
}
.steps li{
  margin: 10px 0;
}
.steps strong{ color: var(--text); }

/* Highlight (Transparency block) */
.highlight{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  background: linear-gradient(135deg, rgba(110,231,255,.10), rgba(167,139,250,.10));
  box-shadow: var(--shadow-soft);
}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 40px;
  padding: 26px 0;
  background: rgba(11,18,32,.45);
  backdrop-filter: blur(12px);
}
.footer-inner{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
}
.site-footer a{ color: rgba(255,255,255,.86); }
.site-footer a:hover{ color: var(--accent); }

/* ===== Forms ===== */
.form{
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin-top: 10px;
  align-items: start;
}
label{ color: rgba(255,255,255,.78); font-size: .92rem; display: grid; gap: 6px; }
.form input, .form select, .form textarea{
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.form input:focus, .form select:focus, .form textarea:focus{
  border-color: rgba(110,231,255,.45);
  box-shadow: 0 0 0 4px rgba(110,231,255,.12);
  background: rgba(255,255,255,.09);
}
textarea{ resize: vertical; }
.form button.btn { justify-self: start; }

.notice{
  padding: 12px 14px;
  border-radius: 14px;
  margin: 12px 0;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
}
.notice.success{
  border-color: rgba(52,211,153,.35);
  background: rgba(52,211,153,.10);
}
.notice.error{
  border-color: rgba(248,113,113,.35);
  background: rgba(248,113,113,.10);
}

/* FAQ */
.faq details{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 12px 14px;
  margin: 10px 0;
  background: rgba(255,255,255,.06);
}
.faq summary{
  cursor: pointer;
  color: rgba(255,255,255,.86);
  font-weight: 700;
}
.faq p{ margin-top: 10px; }

/* Sticky call bar (mobile) */
.sticky-call{
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 12px 14px;
  text-align: center;
  z-index: 60;
  box-shadow: var(--shadow-soft);
}
.sticky-call a{
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}
@media (min-width: 900px){
  .sticky-call{ display: none; }
}

/* Mobile nav spacing tweaks */
@media (max-width: 720px){
  .header-inner{ align-items: flex-start; }
  .nav{ gap: 6px; }
  .nav a{ padding: 7px 9px; }
  .footer-inner{ grid-template-columns: 1fr; }
}
/* ===== Hamburger (single source of truth) ===== */

/* desktop */
.nav-toggle { display:none; }
.nav-panel { display:flex; align-items:center; gap:12px; }

/* mobile */
@media (max-width: 900px){
  .nav-toggle{
    display:inline-flex;
    width:44px; height:44px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    align-items:center; justify-content:center;
    cursor:pointer;
    position:relative;
  }

  /* icon */
  .nav-toggle__icon,
  .nav-toggle__icon::before,
  .nav-toggle__icon::after{
    content:"";
    display:block;
    width:18px; height:2px;
    background: rgba(255,255,255,.90);
    border-radius:999px;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    transition: transform .2s ease, opacity .2s ease, top .2s ease;
  }
  .nav-toggle__icon{ top:50%; }
  .nav-toggle__icon::before{ top: calc(50% - 6px); }
  .nav-toggle__icon::after { top: calc(50% + 6px); }

  /* open -> X */
  body.nav-open .nav-toggle__icon{ opacity:0; }
  body.nav-open .nav-toggle__icon::before{
    top:50%; transform:translateX(-50%) rotate(45deg);
  }
  body.nav-open .nav-toggle__icon::after{
    top:50%; transform:translateX(-50%) rotate(-45deg);
  }

  /* panel */
  .nav-panel{
    display:none;
    position:fixed;
    left:12px; right:12px;
    top:72px;
    padding:14px;
    border-radius:22px;
    background: rgba(11,18,32,.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: var(--shadow);
    flex-direction:column;
    align-items:stretch;
    gap:12px;
    z-index:1000;
  }
  body.nav-open .nav-panel{ display:flex; }

  .nav{
    flex-direction:column;
    align-items:stretch;
    gap:8px;
  }
  .nav a{
    border-radius:14px;
    background: rgba(255,255,255,.06);
    padding:12px 12px;
  }
  .nav .btn{ width:100%; justify-content:center; }

  .lang-switch{ justify-content:center; margin-top:6px; }

  /* backdrop */
  body.nav-open::before{
    content:"";
    position:fixed;
    inset:0;
    background: rgba(0,0,0,.40);
    z-index:900;
  }

  .site-header{ z-index:1100; }
}
/* --- Map embed --- */
.map { margin-top: 10px; }
.map-consent{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 14px;
}
.map-frame{
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  min-height: 260px;
}
.map-frame iframe{
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}
@media (max-width: 720px){
  .map-frame iframe{ height: 320px; }
}