:root{
  --bg-0:#070b14;
  --bg-1:#0d1322;
  --bg-2:#121a2d;
  --card:rgba(255,255,255,0.08);
  --card-strong:rgba(255,255,255,0.12);
  --text:#eef4ff;
  --muted:#a8b3c7;
  --line:rgba(255,255,255,0.12);
  --primary:#5eead4;
  --secondary:#7c8cff;
  --accent:#c084fc;
  --danger:#ff7b8c;
  --success:#63e6a2;
  --shadow:0 20px 60px rgba(0,0,0,0.35);
  --radius:22px;
  --radius-sm:14px;
  --container:1180px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(124,140,255,0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(192,132,252,0.18), transparent 25%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 45%, var(--bg-2));
  min-height:100vh;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.narrow{
  width:min(760px, calc(100% - 32px));
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(14px);
  background:rgba(7,11,20,0.6);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:74px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:0.02em;
}

.brand-mark{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  color:#071018;
  font-weight:900;
  box-shadow:0 10px 30px rgba(94,234,212,0.25);
}

.brand-text{
  font-size:1.08rem;
}

.menu{
  display:flex;
  gap:18px;
  align-items:center;
}

.menu a{
  color:var(--muted);
  transition:0.2s ease;
}

.menu a:hover,
.menu a.active{
  color:var(--text);
}

.hero{
  padding:84px 0 52px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:28px;
  align-items:center;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border:1px solid rgba(94,234,212,0.25);
  border-radius:999px;
  background:rgba(94,234,212,0.08);
  color:var(--primary);
  font-size:0.92rem;
  margin-bottom:16px;
}

.hero h1{
  margin:0 0 14px;
  font-size:clamp(2.2rem, 5vw, 4.2rem);
  line-height:1.02;
  letter-spacing:-0.03em;
}

.lead{
  color:var(--muted);
  font-size:1.06rem;
  line-height:1.7;
  max-width:680px;
}

.hero-actions,
.form-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:26px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:700;
  transition:0.22s ease;
  cursor:pointer;
}

.btn-primary{
  background:linear-gradient(135deg, var(--primary), var(--secondary));
  color:#071018;
  box-shadow:0 16px 38px rgba(124,140,255,0.24);
}

.btn-primary:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

.btn-secondary{
  background:rgba(255,255,255,0.04);
  color:var(--text);
  border-color:var(--line);
}

.btn-secondary:hover{
  background:rgba(255,255,255,0.08);
}

.glass{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
}

.hero-card{
  padding:24px;
}

.hero-card h3{
  margin-top:0;
  margin-bottom:18px;
  font-size:1.2rem;
}

.role-cards,
.steps{
  display:grid;
  gap:16px;
}

.role-card,
.step{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
}

.role-card h4,
.step h3{
  margin:0 0 8px;
}

.role-card p,
.step p,
.muted{
  color:var(--muted);
  line-height:1.65;
}

.section{
  padding:52px 0;
}

.section-alt{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}

.section h2{
  margin:0 0 18px;
  font-size:clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing:-0.02em;
}

.steps{
  grid-template-columns:repeat(3, 1fr);
}

.step-num{
  display:inline-grid;
  place-items:center;
  width:36px;
  height:36px;
  border-radius:12px;
  margin-bottom:14px;
  background:linear-gradient(135deg, var(--accent), var(--secondary));
  color:#fff;
  font-weight:800;
}

.site-footer{
  border-top:1px solid var(--line);
  padding:18px 0;
  margin-top:30px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:0.95rem;
}

.form-wrap{
  padding:28px;
}

.form-wrap h1{
  margin-top:0;
  margin-bottom:8px;
  font-size:clamp(1.8rem, 3vw, 2.5rem);
}

.field{
  margin-bottom:16px;
}

label{
  display:block;
  margin-bottom:8px;
  font-weight:600;
}

input,
select,
textarea{
  width:100%;
  border:none;
  outline:none;
  color:var(--text);
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:14px;
  padding:14px 14px;
  font:inherit;
  transition:0.2s ease;
}

input:focus,
select:focus,
textarea:focus{
  border-color:rgba(94,234,212,0.6);
  box-shadow:0 0 0 4px rgba(94,234,212,0.12);
}

.grid-2,
.grid-3{
  display:grid;
  gap:16px;
}

.grid-2{
  grid-template-columns:repeat(2, 1fr);
}

.grid-3{
  grid-template-columns:repeat(3, 1fr);
}

.checkbox{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-top:8px;
  color:var(--muted);
}

.checkbox input{
  width:18px;
  height:18px;
  margin-top:2px;
  flex:0 0 18px;
}

.alert{
  padding:14px 16px;
  border-radius:16px;
  margin:18px 0;
  border:1px solid transparent;
}

.alert ul{
  margin:0;
  padding-left:18px;
}

.alert-success{
  background:rgba(99,230,162,0.09);
  border-color:rgba(99,230,162,0.28);
  color:#dffff0;
}

.alert-error{
  background:rgba(255,123,140,0.09);
  border-color:rgba(255,123,140,0.28);
  color:#ffe9ed;
}

.info-box{
  padding:14px 16px;
  border-radius:16px;
  background:rgba(124,140,255,0.08);
  border:1px solid rgba(124,140,255,0.2);
  color:#e8ebff;
  margin-bottom:16px;
}

.conditional-block{
  margin-bottom:16px;
}

.hidden{
  display:none !important;
}

@media (max-width: 980px){
  .hero-grid,
  .steps{
    grid-template-columns:1fr;
  }

  .grid-3{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 640px){
  .menu{
    gap:12px;
    font-size:0.95rem;
  }

  .hero{
    padding-top:56px;
  }

  .grid-2,
  .grid-3{
    grid-template-columns:1fr;
  }

  .form-wrap{
    padding:20px;
  }

  .hero-actions,
  .form-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }
}
h3 a{
color:inherit;
text-decoration:none;
}

h3 a:hover{
text-decoration:underline;
}
select{
    background:rgba(255,255,255,0.06);
    color:#fff;
    border:1px solid rgba(255,255,255,0.15);
    backdrop-filter:blur(6px);
}

select option{
    background:#020617;
    color:#e2e8f0;
}
select{
    background:#0f172a;
    color:#e5e7eb;
    border:1px solid rgba(255,255,255,0.15);
}

select:focus{
    outline:none;
    border-color:#38bdf8;
}

/* Chrome option háttér javítás */

select option{
    background:#0f172a;
    color:#e5e7eb;
}

/* hover */
select option:hover{
    background:#1e293b;
}
.footer-legal{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  align-items:center;
  margin-top:12px;
  font-size:.95rem;
}

.footer-legal a{
  color:inherit;
  text-decoration:none;
  opacity:.9;
}

.footer-legal a:hover{
  text-decoration:underline;
  opacity:1;
}