/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:      #a855f7;
  --purple-dim:  #7c3aed;
  --purple-glow: rgba(168, 85, 247, 0.25);
  --cyan:        #22d3ee;
  --cyan-dim:    #0891b2;
  --cyan-glow:   rgba(34, 211, 238, 0.2);
  --bg:          #050508;
  --bg-2:        #0b0b12;
  --bg-card:     #0f0f1a;
  --border:      rgba(255,255,255,0.07);
  --text:        #e2e8f0;
  --text-muted:  #64748b;
  --white:       #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { color: var(--white); }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn--primary {
  background: linear-gradient(135deg, var(--purple-dim), var(--purple));
  color: #fff;
  box-shadow: 0 0 24px var(--purple-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(168,85,247,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}
.btn--outline:hover {
  background: var(--cyan-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.btn--ghost .arrow { transition: transform 0.2s; }
.btn--ghost:hover .arrow { transform: translateX(4px); }

.btn--full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(5, 5, 8, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo__bracket { color: var(--purple); }

.logo__img {
  height: 40px;
  max-width: 180px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-left: -0.5rem;
}

.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 1rem;
  color: var(--white);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.nav__links a:hover { color: var(--white); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}
.orb--purple {
  width: 700px; height: 700px;
  background: var(--purple);
  top: -200px; left: -150px;
}
.orb--cyan {
  width: 500px; height: 500px;
  background: var(--cyan);
  bottom: -100px; right: -100px;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero .container { position: relative; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--cyan);
  background: rgba(34,211,238,0.07);
  margin-bottom: 1.75rem;
}
.badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero__sub {
  max-width: 580px;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat__num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 0;
}
.section--dark {
  background: var(--bg-2);
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.section__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); }

.card--glow-purple:hover {
  box-shadow: 0 0 40px var(--purple-glow);
  border-color: rgba(168,85,247,0.3);
}
.card--glow-cyan:hover {
  box-shadow: 0 0 40px var(--cyan-glow);
  border-color: rgba(34,211,238,0.3);
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.card__list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card__list li::before {
  content: '›';
  color: var(--purple);
  font-size: 1.1rem;
}

/* ===== STEPS ===== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
}
.step__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 56px;
  padding-top: 0.2rem;
}
.step__content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step__content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.step__connector {
  width: 2px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--purple), var(--cyan));
  margin-left: 27px;
  opacity: 0.4;
}

/* ===== RESULTS ===== */
.results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.result-card--featured {
  border-color: rgba(168,85,247,0.4);
  background: linear-gradient(135deg, rgba(168,85,247,0.08), rgba(34,211,238,0.05));
  box-shadow: 0 0 40px rgba(168,85,247,0.15);
}

.result-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.2);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.result-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.result-card__desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.result-card__metrics {
  display: flex;
  gap: 1.5rem;
}
.metric__val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric__key {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== BADGE ===== */
.badge-wrapper {
  display: flex;
  justify-content: center;
}
.badge-wrapper > div {
  width: 420px;
  max-width: 100%;
}

/* ===== ABOUT ===== */
.section--no-pb { padding-bottom: 0; }

.about {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: flex-end;
}

.about__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.avatar__photo {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
  object-position: center top;
}

.about__badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}
.badge-pill {
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
}
.badge-pill--purple {
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  color: var(--purple);
}
.badge-pill--cyan {
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.25);
  color: var(--cyan);
}

.about__content .section__tag { margin-bottom: 0.5rem; }

/* ===== ABOUT TABS ===== */
.about__tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.about__tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.5rem 1.25rem 0.75rem;
  position: relative;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}

.about__tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  opacity: 0;
  transition: opacity 0.2s;
}

.about__tab--active {
  color: var(--white);
}
.about__tab--active::after {
  opacity: 1;
}

.about__tab-panel--hidden {
  display: none;
}

#tab-minositesem.about__tab-panel--hidden {
  display: block;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.about__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about__tools {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.tool-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

.tool-logo--chip {
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  height: 36px;
}

.tool-logo--sapi {
  height: 52px;
  padding: 6px 10px;
}

/* ===== ESZKÖZÖK ===== */
.eszközök-section {
  padding: 1.5rem 0;
}

.eszközök-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.eszközök-toggle:hover { color: var(--white); }

.eszközök-toggle__arrow {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}
.eszközök-toggle[aria-expanded="false"] .eszközök-toggle__arrow {
  transform: rotate(-90deg);
}

.eszközök-panel {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 200px;
  opacity: 1;
}
.eszközök-panel.is-closed {
  max-height: 0;
  opacity: 0;
}

.eszközök-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.25rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.testimonial--featured {
  border-color: rgba(168,85,247,0.35);
  background: linear-gradient(135deg, rgba(168,85,247,0.07), rgba(34,211,238,0.04));
}

.testimonial__stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.testimonial__text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.author__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dim), var(--cyan-dim));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}
.author__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.author__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== CTA / CONTACT ===== */
.cta-section { padding: 5rem 0; }

.cta-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  overflow: hidden;
}
.cta-box__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
}
.cta-box__orb--1 {
  width: 400px; height: 400px;
  background: var(--purple);
  top: -150px; left: -100px;
}
.cta-box__orb--2 {
  width: 300px; height: 300px;
  background: var(--cyan);
  bottom: -100px; right: -50px;
}

.cta-box .section__tag { margin-bottom: 0.75rem; }
.cta-box__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.cta-box__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(168,85,247,0.5);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.cta-box__note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer__links {
  display: flex;
  gap: 1.5rem;
}
.footer__links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .hero { padding: 6rem 0 4rem; }
  .hero__stats { flex-wrap: wrap; gap: 1.25rem; }
  .stat__divider { display: none; }
  .about { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .steps { gap: 0; }
}
