/* ===== DFSZ - Digitális Fogyasztóvédelmi Szervezet ===== */
/* Hatósági jellegű design: sötétkék, fehér, szürke */

:root {
  --navy: #1B3A6B;
  --navy-dark: #122850;
  --red: #CE2939;
  --green: #3A6B3A;
  --gray-light: #F4F6F9;
  --gray-mid: #E2E6ED;
  --gray-text: #555B6E;
  --border: #D0D7E3;
  --white: #FFFFFF;
  --font: 'Inter', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  color: #222;
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy-dark);
  color: #b0bdd4;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 2px solid var(--red);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.topbar a { color: #b0bdd4; font-size: 12px; }
.topbar a:hover { color: #fff; text-decoration: none; }

/* ===== HEADER ===== */
header {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}
.logo-wrap img {
  height: 80px;
  width: auto;
}

/* ===== HAMBURGER BUTTON ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== NAV ===== */
nav {
  background: var(--navy-dark);
  border-bottom: 3px solid var(--red);
  position: relative;
  z-index: 100;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  height: 100%;
}
nav ul li {
  display: flex;
  align-items: stretch;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s;
}
nav ul li:hover,
nav ul li:has(a.active) {
  background: var(--red);
}
nav ul li a {
  display: flex;
  align-items: center;
  color: #ccd6e8;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.15s;
  width: 100%;
  white-space: nowrap;
}
nav ul li:hover a,
nav ul li a.active {
  color: #fff;
  text-decoration: none;
  background: transparent;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e4d8c 100%);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect x="50" y="50" width="120" height="120" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="2"/><rect x="100" y="100" width="200" height="200" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>') no-repeat center;
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 680px;
}
.hero p {
  font-size: 17px;
  color: #b8c8e0;
  max-width: 620px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 13px 28px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #b01e2d; text-decoration: none; color: #fff; }
.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color 0.15s;
  display: inline-block;
}
.btn-secondary:hover { border-color: #fff; text-decoration: none; color: #fff; }

/* ===== ALERT BANNER ===== */
.alert-banner {
  background: #fff3cd;
  border-left: 5px solid #e6a817;
  padding: 14px 20px;
  margin: 28px 0;
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.alert-banner .alert-icon { font-size: 20px; margin-top: 1px; }
.alert-banner strong { color: #7a4f00; }
.alert-banner p { color: #5a3a00; font-size: 14px; margin: 4px 0 0; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--gray-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-number.red { color: var(--red); }
.stat-label {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.4;
}

/* ===== SECTION ===== */
.section {
  padding: 56px 0;
}
.section-alt {
  background: var(--gray-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header {
  margin-bottom: 36px;
}
.section-tag {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.section-header p {
  color: var(--gray-text);
  font-size: 15px;
  max-width: 640px;
}

/* ===== VIOLATION CARDS ===== */
.violations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.violation-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 4px;
  padding: 24px;
}
.violation-card .v-icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}
.violation-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.violation-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}
.violation-card .law-ref {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--navy);
  background: var(--gray-light);
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid var(--border);
}

/* ===== REGISTRY TABLE ===== */
.registry-intro {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}
.registry-toolbar {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.registry-toolbar span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.registry-toolbar .updated {
  color: #8fa8cc;
  font-size: 12px;
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table.registry {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
table.registry thead {
  background: var(--gray-light);
}
table.registry th {
  padding: 11px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
}
table.registry td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
table.registry tr:last-child td { border-bottom: none; }
table.registry tr:hover td { background: #f8f9fc; }
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
}
.status-red { background: #fde8ea; color: #b01e2d; border: 1px solid #f5c2c7; }
.status-orange { background: #fff0e0; color: #a05000; border: 1px solid #ffd8a8; }
.status-yellow { background: #fff9e0; color: #7a6000; border: 1px solid #ffe08a; }
.domain-cell { font-family: monospace; font-size: 13px; color: var(--navy); }
.violation-count { font-weight: 700; color: var(--red); }

/* ===== SERVICE SECTION ===== */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.service-list {
  list-style: none;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list .check {
  width: 22px;
  height: 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-list .item-text strong {
  display: block;
  font-size: 15px;
  color: var(--navy-dark);
  margin-bottom: 3px;
}
.service-list .item-text span {
  font-size: 13px;
  color: var(--gray-text);
}
.pricing-card {
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  padding: 32px;
  text-align: center;
}
.pricing-card .price-label {
  font-size: 13px;
  color: #8fa8cc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.pricing-card .price {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card .price-sub {
  font-size: 13px;
  color: #8fa8cc;
  margin-bottom: 24px;
}
.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.pricing-card ul li {
  padding: 7px 0;
  font-size: 14px;
  color: #ccd6e8;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-card ul li::before { content: '✓'; color: #6fcf97; font-weight: 700; }

/* ===== LAW REFERENCES ===== */
.law-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.law-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: 0 4px 4px 0;
  padding: 18px 20px;
}
.law-card .law-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.law-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}
.law-card p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.5;
}
.law-card a {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--navy);
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.15s;
}
.blog-card:hover { box-shadow: 0 4px 16px rgba(27,58,107,0.12); }
.blog-card-img {
  height: 160px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-body { padding: 20px; }
.blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  background: var(--gray-light);
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 14px;
}
.blog-meta {
  font-size: 12px;
  color: #999;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}
.read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: #8fa8cc;
  padding: 48px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 48px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: #6a88b0;
}
footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a {
  color: #6a88b0;
  font-size: 13px;
  transition: color 0.15s;
}
footer ul li a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #4a6080;
}
.footer-bottom a { color: #4a6080; }
.footer-bottom a:hover { color: #8fa8cc; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--gray-light);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 13px;
  color: var(--gray-text);
}
.breadcrumb a { color: var(--navy); }
.breadcrumb span { margin: 0 6px; color: #bbb; }

/* ===== PAGE CONTENT ===== */
.page-header {
  background: var(--navy);
  color: #fff;
  padding: 40px 0 36px;
}
.page-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.page-header p {
  color: #8fa8cc;
  font-size: 15px;
}

/* ===== RESPONSIVE: TABLET (max 900px) ===== */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .violations-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .law-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
}

/* ===== RESPONSIVE: MOBILE (max 768px) ===== */
@media (max-width: 768px) {
  /* Hamburger toggle megjelenítése */
  .nav-toggle { display: flex; }

  /* Nav elrejtése és mobilos megjelenítés */
  nav .container {
    padding: 0;
  }
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  nav ul.open {
    display: flex;
  }
  nav ul li {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 100%;
  }
  nav ul li a {
    padding: 14px 20px;
    font-size: 15px;
    width: 100%;
  }

  /* Header */
  .logo-wrap img { height: 55px; }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar .container span:first-child { display: none; }

  /* Hero */
  .hero { padding: 40px 0 36px; }
  .hero h1 { font-size: 24px; }
  .hero p { font-size: 14px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { text-align: center; width: 100%; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item { padding: 16px 12px; }
  .stat-number { font-size: 26px; }

  /* Grids */
  .violations-grid { grid-template-columns: 1fr; }
  .law-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: 1fr; }

  /* Section padding */
  .section { padding: 36px 0; }
  .section-header h2 { font-size: 22px; }

  /* Page header */
  .page-header { padding: 28px 0 24px; }
  .page-header h1 { font-size: 22px; }

  /* CTA grid */
  .cta-grid-2col { grid-template-columns: 1fr !important; }
  .cta-icon-grid { grid-template-columns: 1fr 1fr !important; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Buttons */
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 14px; }

  /* Container padding */
  .container { padding: 0 16px; }
}

/* ===== RESPONSIVE: SMALL MOBILE (max 480px) ===== */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-icon-grid { grid-template-columns: 1fr !important; }
  .hero h1 { font-size: 21px; }
  .stat-number { font-size: 22px; }
  .section-header h2 { font-size: 20px; }
}
<!-- cache:1781016994 -->
