*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #111014;
  --pink: #f582c5;
  --text: #f0eaf2;
  --muted: #9a8fa0;
  --border: rgba(245, 130, 197, 0.2);
}

html, body {
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
}

body::before {
  content: '';
  position: fixed;
  top: -20%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(
    ellipse at center,
    rgba(180, 60, 130, 0.3) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px;
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--text);
}

.gomb {
  font-size: 1.2rem; /* FIXED */
  font-family: 'Inter', system-ui, sans-serif;
  color: #fff;
  padding: 6px 14px;
  margin: 8px;
  border: 2px solid #ff69c0;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none; /* REMOVE UNDERLINE */
}

.gomb:visited {
  color: #fff;
}

.gomb::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3),
    rgba(0, 255, 255, 0) 70%
  );
  transition: 0.4s;
  transform: scale(0);
}

.gomb:hover::before {
  transform: scale(1);
}

.gomb:hover {
  color: #000;
  background: #ff6ac1;
  box-shadow: 0 0 8px #ff6ac1, 0 0 30px #ff6ac1, 0 0 60px #ff6ac1;
}

.gomb:active {
  transform: scale(0.95);
}

.doboz {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 80px;
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 48px;
  align-items: flex-start;
}

.Bal {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}

.Bal h1 {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.Bal a {
  color: var(--pink);
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}

.Bal a:hover {
  opacity: 0.7;
}

.Bal p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

.Jobb {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 44px 48px;
}

.Jobb h1 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 32px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row input {
  flex: 1;
}

input,
textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.85rem;
  padding: 12px 16px;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

input:focus,
textarea:focus {
  border-color: var(--pink);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button[type="submit"] {
  align-self: flex-start;
  background: var(--pink);
  border: none;
  color: #1a0a1a;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 999px;
  cursor: pointer;
}

button[type="submit"]:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.kategoria-sor {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
}

.kategoria {
  padding: 24px 48px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.kategoria:last-child {
  border-right: none;
}

@media (max-width: 800px) {
  .doboz {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
    margin: 60px auto;
  }

  .Jobb {
    padding: 28px 24px;
  }

  .form-row {
    flex-direction: column;
  }

  .kategoria-sor {
    grid-template-columns: repeat(2, 1fr);
  }

  .kategoria {
    padding: 20px 24px;
  }
}