/* =========================
   RESET
========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #ffffff;
  background-color: #0b0613;
  background-image:
    linear-gradient(rgba(10, 4, 18, 0.78), rgba(10, 4, 18, 0.86)),
    url("image/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* =========================
   HÁTTÉR FÉNY
========================= */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05), transparent 18%),
    radial-gradient(circle at 80% 65%, rgba(255,190,120,0.05), transparent 20%),
    radial-gradient(circle at 55% 20%, rgba(207,140,255,0.05), transparent 22%);
  filter: blur(60px);
  opacity: 0.65;
  animation: ambientGlow 14s ease-in-out infinite alternate;
}

@keyframes ambientGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(14px, -10px, 0) scale(1.04);
  }
}

/* =========================
   REVEAL ANIMÁCIÓ
========================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* =========================
   KÖZÖS SZEKCIÓK
========================= */
.hero,
.services {
  position: relative;
  z-index: 1;
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 100vh;
  padding: 60px 24px 40px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06), transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(255,190,120,0.05), transparent 22%);
  filter: blur(50px);
  opacity: 0.65;
  animation: heroGlowMove 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlowMove {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(10px, -8px, 0) scale(1.03);
  }
}

.hero__container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.hero__content {
  max-width: 1250px;
  margin: 0 auto;
  text-align: center;
}

/* =========================
   LOGO
========================= */
.hero__logo-wrap {
  margin-bottom: 24px;
}

.hero__logo {
  width: 170px;
  margin: 0 auto;
  filter:
    drop-shadow(0 0 14px rgba(202, 121, 255, 0.28))
    drop-shadow(0 0 24px rgba(255, 169, 87, 0.18));
  animation: floatingLogo 4s ease-in-out infinite;
}

@keyframes floatingLogo {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* =========================
   HERO TEXT
========================= */
.hero__eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 136, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #f4d39b;
  font-size: 0.82rem;
  font-weight: 1250;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(255, 176, 96, 0.06);
}

.hero__title {
  margin: 0 0 22px;
  font-size: clamp(2.6rem, 6vw, 4.9rem);
  line-height: 1.18;
  font-weight: 1050;
  letter-spacing: -0.04em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  margin-bottom: 50px;
}

.hero__title span {
  background: linear-gradient(90deg, #ffd17a 0%, #f4a8ff 50%, #ffaf72 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero__text {
  max-width: 1250px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.85;
    margin-bottom: 50px;
}

/* =========================
   BUTTONS
========================= */
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 1250;
  transition: all 0.3s ease;
}

.btn--primary {
  background: linear-gradient(90deg, #ffd27a 0%, #ffb46f 100%);
  color: #1a0a2d;
  box-shadow:
    0 0 20px rgba(255, 176, 96, 0.28),
    0 0 40px rgba(187, 108, 255, 0.12);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 26px rgba(255, 176, 96, 0.45),
    0 0 52px rgba(187, 108, 255, 0.18);
}

.btn--secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 18px rgba(187, 108, 255, 0.08);
}

.btn--secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 209, 136, 0.26);
  box-shadow:
    0 0 20px rgba(255, 176, 96, 0.12),
    0 0 30px rgba(187, 108, 255, 0.10);
}

/* =========================
   NOTICE
========================= */
.hero__notice {
  max-width: 760px;
  margin: 0 auto 30px;
  padding: 18px 22px;
  border-radius: 20px;

  background: linear-gradient(
    90deg,
    rgba(255, 209, 122, 0.08),
    rgba(187, 108, 255, 0.08)
  );
  border: 1px solid rgba(255, 209, 136, 0.25);
  color: rgba(255,255,255,0.95);
  font-size: 0.98rem;
  line-height: 1.6;

  backdrop-filter: blur(6px);

  box-shadow:
    0 0 20px rgba(255, 176, 96, 0.10),
    0 0 30px rgba(187, 108, 255, 0.08);

  transition: 0.3s ease;
    margin-bottom: 30px;
}



/* =========================
   TRUST BADGES
========================= */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
    margin-bottom: 30px;
}

.hero__trust-item {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  box-shadow:
    0 0 14px rgba(187, 108, 255, 0.06),
    0 0 20px rgba(255, 176, 96, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.hero__trust-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 209, 136, 0.22);
  box-shadow:
    0 0 18px rgba(187, 108, 255, 0.08),
    0 0 26px rgba(255, 176, 96, 0.06);
}

/* =========================
   STATS
========================= */
.hero__stats {
  max-width: 1200px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hero__stat {
  padding: 26px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero__stat:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 24px rgba(187, 108, 255, 0.10),
    0 0 34px rgba(255, 176, 96, 0.06);
}

.hero__stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.8rem;
  color: #ffffff;
}

.hero__stat span {
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
  line-height: 1.5;
}

/* =========================
   SERVICES
========================= */
.services {
  padding: 40px 24px 100px;
}

.services__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.services__heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.services__eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 136, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #f4d39b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(255, 176, 96, 0.06);
}

.services__title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.services__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.8;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  padding: 32px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.18),
    0 0 20px rgba(187, 108, 255, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 209, 136, 0.18);
  background: rgba(255, 255, 255, 0.075);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.22),
    0 0 34px rgba(187, 108, 255, 0.10),
    0 0 24px rgba(255, 176, 96, 0.06);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #1a0a2d;
  background: linear-gradient(135deg, #ffd27a 0%, #ffb46f 100%);
  box-shadow:
    0 0 16px rgba(255, 176, 96, 0.18),
    0 0 24px rgba(187, 108, 255, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover .service-card__icon {
  transform: scale(1.06) rotate(-3deg);
  box-shadow:
    0 0 20px rgba(255, 176, 96, 0.24),
    0 0 28px rgba(187, 108, 255, 0.12);
}

.service-card__title {
  margin: 0 0 14px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.service-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  font-size: 1rem;
  text-align: center;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  body {
    background-attachment: scroll;
  }

  .hero {
    padding: 90px 20px 70px;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .services {
    padding: 80px 20px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero__logo {
    width: 138px;
  }

  .hero__title {
    font-size: clamp(2.0rem, 10vw, 3.0rem);
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-width: auto;
  }

  .hero__notice {
    border-radius: 20px;
    padding: 16px 18px;
    font-size: 0.95rem;
  }
}

.service-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;

  filter: drop-shadow(0 0 10px rgba(187,108,255,0.3));
}

.hero__text--main {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero__text--sub {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto 34px;
}

/* =========================
   CONTACT
========================= */

.contact {
  padding: 100px 24px;
  text-align: center;
}

.contact__container {
  max-width: 640px;
  margin: 0 auto;
}

.contact__title {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.contact__text {
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* =========================
   FORM
========================= */

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

/* group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* label */
.form-group label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* inputs */
.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;

  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(15, 8, 30, 0.6);

  color: #ffffff;
  font-size: 0.95rem;

  transition: 0.25s ease;
}

/* focus */
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: rgba(255, 176, 96, 0.6);

  box-shadow:
    0 0 0 2px rgba(255,176,96,0.2),
    0 0 20px rgba(187,108,255,0.15);
}

/* placeholder */
.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

/* textarea */
.contact__form textarea {
  resize: none;
}

/* button */
.contact__form .btn {
  margin-top: 10px;
  width: 100%;
}
