* { box-sizing: border-box; }
:root {
  --bg: #0b0d12;
  --card: #121622;
  --text: #e8ecf1;
  --muted: #a9b0bb;
  --accent: #4fd1c5;
  --accent-2: #8b5cf6;
}
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji'; }
.container { width: min(1100px, 92%); margin: 0 auto; }
.navbar { position: sticky; top: 0; backdrop-filter: saturate(180%) blur(8px); background: rgba(11,13,18,.6); border-bottom: 1px solid rgba(255,255,255,.06); z-index: 10; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: .8rem 0; }
.navbar a { color: var(--text); text-decoration: none; margin-left: 1rem; opacity: .85; }
.navbar a:hover { color: white; opacity: 1; }
.brand { font-weight: 800; letter-spacing: .2px; }
.brand span { color: var(--muted); font-weight: 600; }
.hero { position: relative; min-height: 62vh; display: grid; place-items: center; background-image: url('https://dayimotor.hu/wp-content/uploads/2023/12/6-2.jpg'); background-size: cover; background-position: center; }
.hero .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,13,18,.55), rgba(11,13,18,.9)); }
.hero-content { position: relative; text-align: center; padding: 4rem 0; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: .5rem; }
.hero p { color: var(--muted); margin: .5rem 0 1.2rem; }
.btn { display: inline-block; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; padding: .9rem 1.2rem; border-radius: 999px; text-decoration: none; font-weight: 700; box-shadow: 0 10px 30px rgba(79,209,197,.3); }
.disclaimer { font-size: .85rem; opacity: .85; }
.card { background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 1.2rem; margin: 2rem 0; box-shadow: 0 8px 30px rgba(0,0,0,.25); }
.card h2 { margin-top: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.spec-list { list-style: none; padding: 0; margin: 0; }
.spec-list li { padding: .4rem 0; border-bottom: 1px dashed rgba(255,255,255,.08); }
.spec-list li:last-child { border-bottom: none; }
.gallery .img { display: block; overflow: hidden; border-radius: 12px; border: 1px solid rgba(255,255,255,.08); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.gallery .img:hover img { transform: scale(1.05); }
.note { color: var(--muted); font-size: .92rem; }
.faq details { margin: .6rem 0; }
.sources ul { padding-left: 1rem; }
.footer { border-top: 1px solid rgba(255,255,255,.06); padding: 2rem 0; text-align: center; color: var(--muted); }
@media (max-width: 840px) { .grid-2 { grid-template-columns: 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-3 { grid-template-columns: 1fr; } .nav-inner { flex-wrap: wrap; gap: .6rem; } }
