* {
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #000;
  background: #fff;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  font-size: 14px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: black;
}

/* HERO */
.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* BUTTONS */
.buttons button {
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  margin: 5px;
  font-size: 16px;
  cursor: pointer;
}

.primary {
  background: black;
  color: white;
}

.secondary {
  background: white;
  border: 1px solid #ccc;
}

/* SECTIONS */
.section {
  text-align: center;
  padding: 120px 20px;
}

.gray {
  background: #f5f5f7;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.section p {
  color: #666;
  max-width: 500px;
  margin: auto;
}

/* CTA */
.cta {
  background: black;
  color: white;
}

.cta button {
  background: white;
  color: black;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #999;
  font-size: 14px;
}

/* FADE-IN ANIMÃCIÃ“ */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* HERO lebegÅ‘ hatÃ¡s */
.hero h1 {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s ease forwards;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* GOMB HOVER */
button {
  transition: all 0.3s ease;
}

button:hover {
  transform: scale(1.05);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

.quiz {
  max-width: 500px;
  margin: 100px auto;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 0 20px 40px;
  box-sizing: border-box;
}

#question-text {
  font-size: 28px;
  margin-bottom: 30px;
  line-height: 1.2;
}

#input-box input,
#input-box select {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

#next-btn {
  margin-top: 30px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: black;
  color: white;
  font-size: 16px;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}

#next-btn:enabled {
  opacity: 1;
}

/* INPUTOK */
#input-box input,
#input-box select {
width: 100%;
padding: 16px;
font-size: 18px;
min-height: 52px;
border-radius: 12px;
border: 1px solid #ddd;
outline: none;
transition: all 0.2s ease;
box-sizing: border-box;
position: relative;
z-index: 2;
pointer-events: auto;
touch-action: manipulation;
-webkit-user-select: text;
user-select: text;
-webkit-appearance: none;
appearance: none;
background: white;
}

/* fÃ³kusz */
#input-box input:focus,
#input-box select:focus {
border-color: black;
}

/* spacing */
#input-box {
margin-top: 20px;
width: 100%;
}

/* GOMB CSOPORT */
.button-group {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
margin-top: 20px;
width: 100%;
}

/* GOMBOK */
.choice-btn {
padding: 14px 24px;
border-radius: 999px;
border: 1px solid #ddd;
background: white;
cursor: pointer;
font-size: 16px;
transition: all 0.2s ease;
min-height: 48px;
}

/* hover */
.choice-btn:hover {
border-color: black;
}

/* aktÃ­v */
.choice-btn.active {
background: black;
color: white;
border-color: black;
transform: scale(0.95);
}

#input-box input {
transition: all 0.2s ease;
}

.consent-card {
text-align: left;
background: #f5f5f7;
border-radius: 24px;
padding: 24px;
}

.consent-copy,
.consent-note {
color: #555;
line-height: 1.6;
}

.consent-link {
display: inline-block;
margin: 6px 0 20px;
color: black;
font-weight: 600;
}

.consent-option {
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 15px;
line-height: 1.6;
width: 100%;
}

#input-box .consent-option input[type="checkbox"] {
width: 18px;
height: 18px;
padding: 0;
margin-top: 4px;
border-radius: 6px;
flex: 0 0 18px;
}

.consent-option span {
flex: 1 1 auto;
min-width: 0;
display: block;
overflow-wrap: break-word;
word-break: normal;
white-space: normal;
text-align: left;
}

.contact-fields {
display: grid;
gap: 14px;
width: 100%;
}

.contact-helper {
margin: 14px 0 0;
color: #666;
font-size: 14px;
line-height: 1.6;
}

.verification-card {
text-align: left;
background: #f5f5f7;
border-radius: 24px;
padding: 24px;
}

.verification-copy,
.verification-note,
.verification-status {
color: #555;
line-height: 1.6;
}

.verification-copy {
margin: 0 0 10px;
}

.verification-note {
margin: 0 0 18px;
}

.verification-actions {
justify-content: flex-start;
margin-top: 0;
margin-bottom: 18px;
}

.verification-status {
margin: 0;
font-size: 14px;
}

.verification-status.error {
color: #b42318;
}

.progress-container {
width: 100%;
height: 8px;
margin-bottom: 28px;
background: #ececef;
border-radius: 999px;
overflow: hidden;
}

#progress-bar {
width: 0;
height: 100%;
background: black;
border-radius: inherit;
transition: width 0.3s ease;
}

.policy-page {
min-height: calc(100vh - 120px);
padding: 24px 20px 80px;
background:
radial-gradient(circle at top, rgba(0, 0, 0, 0.04), transparent 35%),
linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.brand-link {
color: inherit;
text-decoration: none;
}

.policy-eyebrow {
margin: 0 0 14px;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #666;
}

.policy-hero,
.policy-layout {
max-width: 1120px;
margin: 0 auto;
}

.policy-hero {
padding: 72px 20px 56px;
text-align: center;
}

.policy-hero h1 {
max-width: 860px;
margin: 0 auto 24px;
font-size: clamp(40px, 6vw, 64px);
line-height: 1.05;
letter-spacing: -0.04em;
}

.policy-lead {
max-width: 760px;
margin: 0 auto;
line-height: 1.7;
font-size: 18px;
color: #555;
}

.policy-summary {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
margin-top: 42px;
}

.policy-summary-card,
.policy-highlight,
.policy-section {
background: rgba(255, 255, 255, 0.88);
backdrop-filter: blur(10px);
border: 1px solid rgba(0, 0, 0, 0.06);
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}

.policy-summary-card {
padding: 24px;
border-radius: 24px;
text-align: left;
}

.policy-summary-card span {
display: block;
margin-bottom: 10px;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #777;
}

.policy-summary-card strong {
font-size: 20px;
line-height: 1.4;
}

.policy-layout {
display: grid;
grid-template-columns: 320px minmax(0, 1fr);
gap: 24px;
align-items: start;
}

.policy-highlight {
position: sticky;
top: 24px;
padding: 28px;
border-radius: 28px;
text-align: center;
}

.policy-highlight h2,
.policy-section h2 {
margin: 0 0 14px;
font-size: 28px;
text-align: center;
}

.policy-highlight p,
.policy-section p,
.policy-list li {
color: #444;
line-height: 1.7;
text-align: center;
}

.policy-cta-link {
display: inline-block;
margin-top: 12px;
padding: 12px 18px;
border-radius: 999px;
background: black;
color: white;
text-decoration: none;
font-weight: 600;
transition: transform 0.3s ease;
}

.policy-cta-link:hover {
transform: scale(1.03);
}

.policy-content {
display: grid;
gap: 18px;
}

.policy-section {
padding: 30px 32px;
border-radius: 28px;
text-align: center;
background: #f5f5f7;
border: 1px solid rgba(0, 0, 0, 0.04);
box-shadow: none;
}

.policy-section a {
color: black;
font-weight: 600;
}

.policy-list {
margin: 0;
padding-left: 0;
list-style: none;
}

.policy-list li + li {
margin-top: 10px;
}

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

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-highlight {
    position: static;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 18px 20px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  nav a {
    margin-left: 0;
    margin-right: 16px;
  }

  .policy-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .policy-hero {
    padding: 52px 4px 40px;
  }

  .policy-lead {
    font-size: 16px;
  }

  .policy-summary-card,
  .policy-highlight,
  .policy-section {
    border-radius: 22px;
  }

  .policy-highlight,
  .policy-section {
    padding: 24px 20px;
  }

  .quiz {
    max-width: none;
    margin: 32px auto 48px;
    padding: 0 16px 32px;
  }

  .quiz h1 {
    font-size: 32px;
    margin-bottom: 18px;
  }

  #question-text {
    font-size: 24px;
    margin-bottom: 24px;
  }

  #input-box input,
  #input-box select {
    box-sizing: border-box;
    font-size: 16px;
    padding: 14px 16px;
    min-height: 52px;
  }

  .button-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .choice-btn,
  #next-btn {
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    padding: 15px 18px;
  }

  .consent-card {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .verification-card {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .consent-option {
    align-items: flex-start;
  }

  .consent-copy,
  .consent-note,
  .consent-link,
  .consent-option,
  .contact-helper,
  .verification-copy,
  .verification-note,
  .verification-status {
    font-size: 15px;
  }

  button:hover {
    transform: none;
  }
}
