:root {
  --bg: #020617;
  --bg-soft: #020817;
  --card: #0b1220;
  --accent-bence: #2563eb;
  --accent-two: #22c55e;
  --accent-three: #f97316;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border-subtle: #1f2937;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.65);
  --max-width: 1120px;
  --glow-blue: 0 0 20px rgba(37, 99, 235, 0.4), 0 0 40px rgba(37, 99, 235, 0.2);
  --glow-green: 0 0 20px rgba(34, 197, 94, 0.4), 0 0 40px rgba(34, 197, 94, 0.2);
  --glow-orange: 0 0 20px rgba(249, 115, 22, 0.4), 0 0 40px rgba(249, 115, 22, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: 
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
    radial-gradient(circle at top, #0b1120 0, #020617 60%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(2, 6, 23, 0.9) 100%
  );
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: conic-gradient(
    from 180deg,
    var(--accent-bence),
    var(--accent-two),
    var(--accent-three),
    var(--accent-bence)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 0 1px rgba(15, 23, 42, 0.8),
    0 10px 25px rgba(15, 23, 42, 0.9),
    var(--glow-blue);
  font-size: 15px;
  font-weight: 700;
  color: #0b1120;
  position: relative;
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% {
    box-shadow: 
      0 0 0 1px rgba(15, 23, 42, 0.8),
      0 10px 25px rgba(15, 23, 42, 0.9),
      0 0 15px rgba(37, 99, 235, 0.3);
  }
  100% {
    box-shadow: 
      0 0 0 1px rgba(15, 23, 42, 0.8),
      0 10px 25px rgba(15, 23, 42, 0.9),
      0 0 25px rgba(37, 99, 235, 0.6),
      0 0 40px rgba(34, 197, 94, 0.3);
  }
}

.brand-text-main {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.brand-text-sub {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.18s ease border-color, 0.18s ease background, 0.18s ease color;
}

.nav-links a:hover {
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: linear-gradient(135deg, var(--accent-bence), #4f46e5);
  border: 1px solid rgba(191, 219, 254, 0.4);
  color: #e5e7eb;
  box-shadow: 
    0 10px 30px rgba(37, 99, 235, 0.45),
    var(--glow-blue);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 
    0 15px 40px rgba(37, 99, 235, 0.6),
    0 0 30px rgba(37, 99, 235, 0.4);
}

.nav-cta span.icon {
  font-size: 14px;
}

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 30px;
    padding-bottom: 18px;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 9px 4px 4px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 14px;
}

.pill-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #e5e7eb, var(--accent-bence));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #0b1120;
  border: 1px solid rgba(15, 23, 42, 0.7);
}

.hero-title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}

.hero-gradient {
  background: linear-gradient(135deg, #60a5fa, #34d399, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 8px;
}

.hero-subtitle-bold {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  font-size: 14px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.18s ease transform, 0.18s ease box-shadow, 0.18s ease background,
    0.18s ease border-color, 0.18s ease color;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-bence), #4f46e5);
  border: 1px solid rgba(191, 219, 254, 0.5);
  box-shadow: 
    0 18px 40px rgba(37, 99, 235, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #e5e7eb;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 20px 45px rgba(37, 99, 235, 0.55),
    0 0 30px rgba(37, 99, 235, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--muted);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
  color: #e5e7eb;
}

.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-note strong {
  color: var(--text);
  font-weight: 500;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: linear-gradient(
    135deg,
    rgba(17, 24, 39, 0.8) 0%,
    rgba(2, 6, 23, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 16px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 
    var(--shadow-soft),
    0 0 0 1px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 0 0,
    rgba(59, 130, 246, 0.23),
    transparent 60%
  );
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 12px;
  align-items: center;
}

@media (max-width: 880px) {
  .hero-card-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.siblings-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.hero-card-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-card-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.stack-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.stack-pill {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: var(--muted);
  background: rgba(15, 23, 42, 0.9);
}

.siblings-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.siblings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.85);
}

.siblings-row-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot-bence,
.dot-two,
.dot-three {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #020617;
}

.dot-bence {
  background: var(--accent-bence);
}

.dot-two {
  background: var(--accent-two);
}

.dot-three {
  background: var(--accent-three);
}

.siblings-role {
  font-size: 11px;
  color: var(--muted);
}

.siblings-link {
  font-size: 11px;
  color: #bfdbfe;
  opacity: 0.9;
}

.siblings-link span {
  margin-left: 4px;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 20px 32px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 13px;
  color: var(--muted);
  max-width: 420px;
}

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

@media (max-width: 880px) {
  .grid-three {
    grid-template-columns: minmax(0, 1fr);
  }
}

.person-card {
  border-radius: var(--radius-lg);
  padding: 14px 14px 13px;
  background: linear-gradient(
    135deg,
    rgba(2, 6, 23, 0.8) 0%,
    rgba(2, 8, 23, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: 
    0 14px 32px rgba(15, 23, 42, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.person-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(34, 197, 94, 0.2), rgba(249, 115, 22, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.person-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 
    0 20px 40px rgba(15, 23, 42, 0.9),
    0 0 20px rgba(37, 99, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.person-card:hover::before {
  opacity: 1;
}

.person-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.person-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #e5e7eb, #111827);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #e5e7eb;
  border: 1px solid #020617;
}

.person-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.person-name {
  font-size: 14px;
  font-weight: 500;
}

.person-role {
  font-size: 12px;
  color: var(--muted);
}

.person-tagline {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.person-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  margin-top: 4px;
}

.pill-mini {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: var(--muted);
}

.accent-bence {
  border-color: rgba(37, 99, 235, 0.8);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.accent-two {
  border-color: rgba(34, 197, 94, 0.7);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.accent-three {
  border-color: rgba(249, 115, 22, 0.7);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

.link-subtle {
  color: #bfdbfe;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.9;
}

.link-subtle:hover {
  opacity: 1;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin-top: 14px;
}

@media (max-width: 880px) {
  .about-section {
    grid-template-columns: minmax(0, 1fr);
  }
}

.about-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.about-card {
  border-radius: var(--radius-lg);
  padding: 14px;
  background: radial-gradient(circle at top left, #0f172a, #020617);
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.85);
  font-size: 13px;
  color: var(--muted);
}

.about-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(31, 41, 55, 0.9);
}

.about-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-label {
  font-size: 12px;
  color: #9ca3af;
}

.about-value {
  font-size: 12px;
  color: #e5e7eb;
  font-weight: 500;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 960px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .projects-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.project-card {
  border-radius: var(--radius-lg);
  padding: 14px 14px 12px;
  background: linear-gradient(
    135deg,
    rgba(2, 6, 23, 0.8) 0%,
    rgba(2, 8, 23, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: 
    0 14px 32px rgba(15, 23, 42, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 
    0 20px 40px rgba(15, 23, 42, 0.9),
    0 0 20px rgba(37, 99, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.project-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.project-title {
  font-size: 14px;
  font-weight: 500;
}

.project-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.project-meta {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.chip {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: var(--muted);
}

.section-contact {
  margin-top: 16px;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-box-centered {
  max-width: 600px;
  width: 100%;
}

.contact-box {
  border-radius: var(--radius-lg);
  padding: 16px;
  background: linear-gradient(
    135deg,
    rgba(2, 6, 23, 0.8) 0%,
    rgba(2, 8, 23, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 
    0 14px 32px rgba(15, 23, 42, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--muted);
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-mail {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #e5e7eb;
}

.contact-small {
  font-size: 12px;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 14px 20px 16px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  background: rgba(2, 6, 23, 0.97);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.social-proof {
  background: linear-gradient(
    135deg,
    rgba(2, 6, 23, 0.8) 0%,
    rgba(2, 8, 23, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 
    0 14px 32px rgba(15, 23, 42, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  margin-top: 14px;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}

@media (max-width: 640px) {
  .social-proof-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.social-proof-number {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #60a5fa, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.social-proof-label {
  font-size: 13px;
  color: var(--muted);
}

.positioning-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 14px;
}

@media (max-width: 880px) {
  .positioning-section {
    grid-template-columns: minmax(0, 1fr);
  }
}

.positioning-card {
  border-radius: var(--radius-lg);
  padding: 18px;
  background: linear-gradient(
    135deg,
    rgba(2, 6, 23, 0.8) 0%,
    rgba(2, 8, 23, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 
    0 14px 32px rgba(15, 23, 42, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.positioning-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 
    0 20px 40px rgba(15, 23, 42, 0.9),
    0 0 20px rgba(37, 99, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.positioning-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

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

.positioning-list li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.positioning-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-bence);
  font-weight: bold;
}

.contact-form {
  margin-top: 16px;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-bence);
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 
    0 0 0 3px rgba(37, 99, 235, 0.1),
    0 0 15px rgba(37, 99, 235, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(135deg, var(--accent-bence), #4f46e5);
  border: 1px solid rgba(191, 219, 254, 0.5);
  color: #e5e7eb;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(37, 99, 235, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 20px 45px rgba(37, 99, 235, 0.55),
    0 0 30px rgba(37, 99, 235, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.response-time {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
