/* BluePulsar Safe – közérthető marketingréteg és mobiljavítások */
.hero-simple {
  padding: 72px 0 82px;
}

.hero-simple-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
}

.hero-simple h1 {
  max-width: 760px;
}

.hero-lock {
  position: relative;
  border: 1px solid rgba(104, 168, 255, .2);
  border-radius: 42px;
  overflow: hidden;
  background: #031225;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34), 0 0 80px rgba(38, 125, 255, .09);
}

.hero-lock::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.hero-lock img {
  display: block;
  width: 100%;
  height: auto;
}

.simple-security {
  align-items: center;
}

.tech-section {
  border-block: 1px solid rgba(255, 255, 255, .07);
  background: rgba(5, 14, 23, .58);
}

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

.tech-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: linear-gradient(145deg, rgba(16, 30, 43, .94), rgba(8, 20, 30, .94));
}

.tech-card .badge {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--mint);
  border-color: rgba(100, 232, 195, .28);
  background: rgba(100, 232, 195, .07);
}

.tech-card h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.tech-card p {
  margin: 0;
  color: var(--muted);
}

.tech-more {
  margin-top: 28px;
}

.privacy-section {
  padding-bottom: 30px;
}

.privacy-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding: 42px;
  border: 1px solid rgba(104, 168, 255, .28);
  border-radius: 30px;
  background: linear-gradient(120deg, rgba(104, 168, 255, .11), rgba(100, 232, 195, .07));
}

.privacy-card h2 {
  margin: 12px 0 9px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.privacy-card p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.privacy-table-wrap {
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.privacy-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--panel);
}

.privacy-table th,
.privacy-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.privacy-table th {
  color: var(--text);
  background: rgba(255, 255, 255, .025);
  font-size: 13px;
}

.privacy-table td {
  color: var(--muted);
  font-size: 14px;
}

.privacy-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 900px) {
  .hero-simple-grid {
    grid-template-columns: 1fr;
  }

  .hero-lock {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .privacy-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-nav {
    position: fixed;
    z-index: 70;
    top: 72px;
    left: 12px;
    right: 12px;
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
  }

  .site-nav a {
    padding: 11px 10px;
  }

  .hero-simple {
    padding-top: 42px;
  }

  .hero-simple h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .hero-lock {
    border-radius: 26px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .privacy-card {
    padding: 28px 22px;
    align-items: flex-start;
  }
}
