/* =========================================
   Alap színek – BiaMat brand
========================================= */

:root {
  --biamat-blue: #404ED3;
  --biamat-green: #A8DE98;
}

/* =========================================
   Alapbeállítások
========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f6f8ff 40%,
    #f9fff7 100%
  );
  color: #111827;
  line-height: 1.6;
}

/* Görgetés */
html {
  scroll-behavior: smooth;
}

/* =========================================
   Layout
========================================= */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================
   Fejléc + navigáció
========================================= */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 250, 251, 0.96);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(10px);
}

.nav {
  height: 80px; /* kicsit magasabb, hogy elférjen a nagyobb logó */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logó + márkanév */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

/* Logó „tok” nélkül – maga a PNG domináljon */

.brand-logo {
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  height: 52px; /* könnyen finomhangolható */
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-top: 1px;
}

/* felső sor: BIAMAT – széthúzott betűk */

.brand-text span:first-child {
  font-weight: 700;
  letter-spacing: 0.5em; /* ha más betűköz kell, ezt írd át */
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--biamat-blue);
}

/* alsó sor: szlogen */

.brand-text span:last-child {
  font-weight: 400;
  color: #6b7280;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  margin-top: 3px;
}

/* Hamburger gomb (főoldali mobilnál) — BIAMATOSABB */

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  border: 2px solid rgba(64, 78, 211, 0.35);
  background: rgba(64, 78, 211, 0.05);
  box-shadow:
    0 6px 18px rgba(64, 78, 211, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.nav-toggle span {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--biamat-blue), #6366f1);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

/* Hover – finom „bikulás” */
.nav-toggle:hover {
  background: rgba(64, 78, 211, 0.12);
  box-shadow:
    0 10px 26px rgba(64, 78, 211, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

/* Aktív (lenyomva) */
.nav-toggle:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(64, 78, 211, 0.22);
}

/* Nyitott állapot – X ikon (marad a te logikád) */
.nav-toggle.open {
  background: linear-gradient(135deg, var(--biamat-blue), #6366f1);
  border-color: transparent;
}

.nav-toggle.open span {
  background: #ffffff;
}

/* =========================================
   Legördülő menü – BiaMat stílus
========================================= */

.nav-menu {
  position: absolute;
  right: 1.5rem;
  top: 80px;

  display: none;
  flex-direction: column;
  gap: 0.4rem;

  padding: 0.8rem 0.9rem;

  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f6f8ff 100%
  );

  border-radius: 22px;
  border: 1px solid rgba(64, 78, 211, 0.15);

  box-shadow:
    0 20px 45px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(64, 78, 211, 0.06);

  z-index: 90;

  /* animáció alapállapot */
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

/* felső kék „jel” – finom branding */
.nav-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--biamat-blue),
    #6366f1
  );
}

/* menüpontok */

.nav-menu a {
  font-size: 0.9rem;
  color: #0f172a;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  text-decoration: none;

  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.nav-menu a:hover {
  background: rgba(64, 78, 211, 0.08);
  color: var(--biamat-blue);
}

/* Nyitott állapot */

.nav-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hamburger animáció marad */

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
/* =========================================
   Globális tipográfia és segédosztályok
========================================= */

main {
  flex: 1 0 auto;
  padding: 1.5rem 0 4rem;
}

section {
  padding: 3rem 0;
}

a {
  color: var(--biamat-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration-thickness: 2px;
}

/* Szekció fejlécek */

.section-header {
  max-width: 680px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--biamat-blue);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 1.9rem;
  margin: 0 0 0.8rem;
  color: #0f172a;
}

.section-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
  margin: 0;
}

/* Színes kiemelések */

.blue {
  color: var(--biamat-blue);
}

.orange {
  color: #ea580c;
}

.green {
  color: var(--biamat-green);
}

.bold {
  font-weight: 600;
}

.sparkle {
  margin-right: 0.4rem;
}

/* Kiemelő dobozok – BiaMat-kék hangolással */

.highlight,
.aboutme-highlight,
.pricing-highlight,
.contact-note,
.booking-note {
  border-radius: 16px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  background: rgba(64, 78, 211, 0.06);
  color: var(--biamat-blue);
}

/* Gombok */

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--biamat-blue), #6366f1);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(64, 78, 211, 0.3);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(64, 78, 211, 0.4);
}

/* =========================================
   HERO – főoldal
========================================= */

.hero {
  position: relative;
  background: transparent;
  color: #0f172a;
  padding: 4.2rem 0 3.8rem;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-title-split {
  font-size: clamp(2.6rem, 4vw + 1.6rem, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 1.4rem;
}

.hero-line {
  display: block;
}

.hero-line-1 {
  color: #111827;
}

.hero-line-2 {
  color: var(--biamat-blue);
}

.hero-line-3 {
  color: #f97316;
}

.hero-subtitle-main {
  font-size: 1rem;
  color: #4b5563;
  max-width: 670px;
  margin-bottom: 2.2rem;
}

.hero-subtitle-main span {
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* HERO – szöveg + logó elrendezés */
.hero-grid{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2.2rem;
}

.hero-logo{
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo img{
  width: clamp(140px, 18vw, 220px);
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 18px 45px rgba(64, 78, 211, 0.18));
}

/* Mobilon egymás alá, logó középre */
@media (max-width: 800px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero-logo{
    justify-content: flex-start;
  }

  .hero-logo img{
    width: 160px;
  }
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: var(--biamat-blue);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(64, 78, 211, 0.4);
}

.btn-primary:hover {
  background: #2f3cc3;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(64, 78, 211, 0.5);
}

.btn-outline-light {
  background: #ffffff;
  color: var(--biamat-blue);
  border: 2px solid var(--biamat-blue);
}

.btn-outline-light:hover {
  background: rgba(64, 78, 211, 0.06);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .hero {
    padding: 3.2rem 0 3rem;
  }
}

/* =========================================
   „Mi a BiaMat?” szekció
========================================= */

.biamat {
  position: relative;
}

.biamat-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.biamat-title {
  font-size: 2rem;
  margin: 0 0 0.7rem;
  color: #0f172a;
}

.biamat-text {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 4.2rem;
}

/* ===============================
   FŐOLDALI 3 BIAMAT KÁRTYA – ÚJ
=============================== */

.biamat-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

/* KÁRTYA */
.biamat-card {
  position: relative;
  background: #ffffff;
  border-radius: 26px;
  padding: 2.4rem 2.2rem 1.8rem;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.06);
  color: #111827;
  overflow: visible;
}

/* IKON – felül, középen, nagyobb */
.biamat-icon {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);

  width: 72px;
  height: 72px;
  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2rem;
  font-weight: 700;

  border: 4px solid #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

/* SZÍNEK */
.biamat-icon-blue {
  background: radial-gradient(circle at top left, #404ED3, #6366f1);
  color: white;
}

.biamat-icon-orange {
  background: radial-gradient(circle at top left, #fb923c, #f97316);
  color: white;
}

.biamat-icon-green {
  background: radial-gradient(circle at top left, #A8DE98, #4ade80);
  color: #065f46;
}

/* CÍM – régi stílushoz igazítva */
.biamat-card-title {
  margin-top: 0.6rem;
  margin-bottom: 0.7rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
}

/* SZÖVEG – régi stílus, beljebb kezdve */
.biamat-card-text {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #4b5563;
  text-align: center;
}

/* MOBIL */
@media (max-width: 800px) {
  .biamat-cards {
    grid-template-columns: 1fr;
  }

  .biamat-card {
    padding-top: 2.8rem;
  }

  .biamat-icon {
    width: 64px;
    height: 64px;
    top: -30px;
    font-size: 1.7rem;
  }
}


/* Dekoráció – oldal-széli SVG-k */



@media (max-width: 600px) {
  .biamat-icon {
    width: 56px;
    height: 56px;
    font-size: 1.7rem;
    top: -24px;
  }

  .biamat-card-title {
    margin-top: 2rem;
  }
}

/* =========================================
   Rólam szekció
========================================= */

.aboutme {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.aboutme::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 0px;
  width: 520px;
  height: 520px;
  background-image: url("bal-abra.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.25;
  pointer-events: none;
  z-index: 2;
}

.aboutme-grid {
  display: grid;
  grid-template-columns: 4fr 1fr; /* ≈ 80% / 20% */
  gap: 2.5rem;
  align-items: center; /* EZ a kulcs: vertikálisan középre igazít */
}

.aboutme-text p {
  font-size: 0.98rem;
  color: #374151;
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.aboutme-highlight {
  margin-top: 1.2rem;
}

/* jobboldali kártya + fotó */

.aboutme-side {
  display: flex;
  justify-content: center; /* vízszint */
  align-items: center;     /* függőlegesen a szöveg közepére */
}

.aboutme-card {
  border-radius: 22px;
  padding: 1.15rem 1.2rem;
  background: linear-gradient(135deg, var(--biamat-blue), #6366f1);
  color: #f9fafb;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(64, 78, 211, 0.22);
}

.aboutme-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(2px);
}

.aboutme-badge {
  display: inline-flex;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
  opacity: 0.95;
  background: rgba(255, 255, 255, 0.12);
}

.aboutme-photo {
  width: 220px;        /* ← EZT tudod kézzel állítani */
  height: 220px;
  border-radius: 999px;
  overflow: hidden;
  background: #e5e7eb;

  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.16),
    0 0 0 6px rgba(64, 78, 211, 0.10); /* BiaMat-os gyűrű */
}

.aboutme-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .aboutme-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .aboutme-side {
    justify-content: center;
  }
}

/* =========================================
   Szolgáltatások oldal
========================================= */

.services {
  background: transparent;
  position: relative;
  overflow: hidden;
  padding-top: 1rem;
  padding-bottom: 0rem;
}

.services::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0px;
  width: 520px;
  height: 520px;
  background-image: url("bal-abra.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.25;
  pointer-events: none;
  z-index: 2;
}


.services::after {
  content: "";
  position: absolute;
  top: 33%;
  right: -320px;
  width: 520px;
  height: 520px;
  background-image: url("jobb-abra.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}


.services-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-title {
  font-size: 1.9rem;
  margin: 0 0 0.5rem;
  color: #0f172a;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}



/* kártyák + ikonok – már BiaMat-kékkel és -zölddel */

.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 2.1rem 1.6rem 1.25rem; /* felül több hely az ikon miatt */
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
  max-width: 100%;
}

/* ====== Szolgáltatások: "olimpiai 5 karika" elrendezés (3 + 2, középre) ====== */
@media (min-width: 901px) {
  .service-grid{
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2.5rem;
  }

  /* mind az 5 kártya alapból 4 oszlopot foglal (12/3 = 4) */
  .service-card{
    grid-column: span 4;
  }

  /* alsó sor: 2 kártya középre (3-6 és 7-10), üresen marad 1-2 és 11-12 */
  .service-card:nth-child(4){
    grid-column: 3 / span 4;
  }

  .service-card:nth-child(5){
    grid-column: 7 / span 4;
  }
}

.service-icon {
  position: absolute;
  top: -26px;
  left: 1.6rem;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
  border: 2px solid #ffffff;
}

/* lilás / kék → BiaMat-kék */

.service-icon-blue {
  background: radial-gradient(circle at top left, var(--biamat-blue), #6366f1);
  color: #ffffff;
}

/* narancs maradhat meleg kontrasztnak */

.service-icon-orange {
  background: radial-gradient(circle at top left, #fb923c, #f97316);
  color: #ffffff;
}

/* zöld → BiaMat-zöld */

.service-icon-green {
  background: radial-gradient(circle at top left, var(--biamat-green), #4ade80);
  color: #065f46;
}

.service-title {
  font-size: 1.08rem;
  margin: 1.2rem 0 0.4rem;
  color: #111827;
}

.service-text {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0 0 0.6rem;
}

.service-link {
  display: flex;
  align-items: baseline; /* EZ A KULCS */
  gap: 0.45rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.service-link .arrow {
  font-size: 0.9rem;
  line-height: 1;
  transform: translateY(1px); /* finom mikrotuning */
}

.service-link .link-text {
  line-height: 1.4;
}


.service-link span {
  font-size: 0.9rem;
}

/* ================================
   Árak — új design
================================ */

.pricing-cards {
  background: transparent;
  overflow: hidden;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 0rem;
}

.pricing-cards::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0px;
  width: 520px;
  height: 520px;
  background-image: url("bal-abra.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.25;
  pointer-events: none;
  z-index: 2;
}


.pricing-cards::after {
  content: "";
  position: absolute;
  top: 39%;
  right: -320px;
  width: 520px;
  height: 520px;
  background-image: url("jobb-abra.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.25;
  pointer-events: none;
  z-index: 2;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.price-card {
  background: white;
  border-radius: 22px;
  padding: 1.6rem 1.6rem 1.2rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
  border: 1px solid #e5e7eb;
  position: relative;
}

/* ikon */

.price-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.price-icon.blue {
  background: rgba(64, 78, 211, 0.1);
  color: var(--biamat-blue);
}

.price-icon.orange {
  background: #fff7ed;
  color: #c2410c;
}

.price-icon.green {
  background: rgba(168, 222, 152, 0.2);
  color: #166534;
}

/* cím */

.price-title {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  color: #111827;
}

/* ár */

.price-line {
  margin-bottom: 0.9rem;
}

.price-amount {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0f172a;
}

.price-unit {
  margin-left: 0.4rem;
  color: #6b7280;
}

/* lista */

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  color: #374151;
}

.price-list li {
  margin-bottom: 0.4rem;
  padding-left: 1.2rem;
  position: relative;
}

.price-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--biamat-green);
  font-size: 0.9rem;
}

/* „Kattints a részletekért” */

.price-more {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.4rem;
}

.price-more::before {
  content: "🖱️ ";
}

/* Legnépszerűbb badge – KÖZÉPEN */

.popular {
  border: 2px solid #fdba74;
  cursor: pointer;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f97316;
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

/* lenyíló táblázat a kiscsoportos kártyán belül */

.group-pricing {
  margin-top: 0.8rem;
  border-radius: 16px;
  background: #f9fafb;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 0.28s ease,
    opacity 0.28s ease,
    transform 0.28s ease;
}

.price-card.show-table .group-pricing {
  max-height: 210px;
  opacity: 1;
  transform: translateY(0);
}

.group-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.group-table thead {
  background: #e5e7ff;
  color: #6b7280;
}

.group-table th,
.group-table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.group-table tbody tr:nth-child(odd) {
  background: #f9fafb;
}

.group-table tbody tr:nth-child(even) {
  background: #ffffff;
}

.group-table .price-col {
  font-weight: 600;
  color: var(--biamat-blue);
  white-space: nowrap;
}

/* zöld infó-doboz */

.pricing-extra {
  grid-column: 2 / 4;
  justify-self: center;
  max-width: 640px;
  margin-top: 1.8rem;
}

.pricing-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: rgba(168, 222, 152, 0.18);
  color: #166534;
  border: 1px solid var(--biamat-green);
  font-size: 0.9rem;
}

.tip-icon {
  font-size: 1rem;
  margin-top: 1px;
}

/* kísérő szövegek */

.pricing-text {
  margin-top: 0rem;
  font-size: 0.95rem;
  color: #374151;
  text-align: left;
}

.pricing-footnote {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: #6b7280;
  text-align: left;
}

/* ====== Felvételi kiemelés: "Limitált ideig" ====== */

.price-card.limited{
  border: 2px solid rgba(168, 222, 152, 0.95);  /* BiaMat zöld */
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.07),
    0 0 0 6px rgba(168, 222, 152, 0.12);       /* finom külső "glow" */
}

.badge-limited{
  background: var(--biamat-green);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.pricing-text,
.pricing-footnote {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Fizetés infó – BiaMat stílus */

.pricing-payment{
  /* ugyanaz a "konténer-szélesség" érzés, mint a többi elemnél */
  max-width: 1100px;
  margin: 2.2rem auto 0;      /* középre */
  padding: 1.1rem 1.2rem;

  border-radius: 22px;
  background: rgba(64, 78, 211, 0.06);
  border: 1px solid rgba(64, 78, 211, 0.18);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);

  display: flex;
  gap: 0.9rem;
  align-items: flex-start;

  /* ez megakadályozza, hogy valami "kiszélesítse" */
  width: 100%;
  box-sizing: border-box;
}


.payment-icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(64, 78, 211, 0.12);
  color: var(--biamat-blue);
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.payment-title{
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: #0f172a;
}

.payment-text{
  margin: 0;
  font-size: 0.95rem;
  color: #374151;
}

/* mobilon szebb törés */
@media (max-width: 600px){
  .pricing-payment{
    flex-direction: column;
    align-items: flex-start;
  }
}



/* mobil */

@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
  }

  .pricing-extra {
    grid-column: 1 / 2;
    justify-self: center;
    margin-top: 1.6rem;
  }
}



/* =========================================
   Kapcsolat oldal – új design
========================================= */

.contact-hero {
  background: transparent;
  padding-top: 1rem;
  padding-bottom: 0rem;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
}

.contact-mini-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.3rem 1.2rem 1.1rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
  text-align: center;
  font-size: 0.95rem;
}

.contact-mini-card h3 {
  margin: 0.7rem 0 0.3rem;
  font-size: 1rem;
  color: #0f172a;
}

.contact-mini-card p {
  margin: 0;
  color: #4b5563;
}

.contact-mini-card a {
  text-decoration: none;
}

.contact-mini-card a:hover {
  text-decoration: underline;
}

.contact-mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--biamat-blue), #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  margin: 0 auto;
}

/* Miért válassz engem? */

.why-section {
  background: transparent;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: center;
}

.why-text h2 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.7rem;
  color: #0f172a;
}

.why-text p {
  margin: 0 0 0.8rem;
  font-size: 0.98rem;
  color: #374151;
}

.why-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.25);
  background: #e5e7eb;
  min-height: 220px;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA banner */

.contact-cta-section {
  padding-top: 0;
}

.contact-cta-banner {
  border-radius: 32px;
  padding: 2.2rem 2.4rem 2rem;
  background: linear-gradient(135deg, var(--biamat-blue), #6366f1);
  color: #f9fafb;
  text-align: center;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.35);
}

.contact-cta-banner h2 {
  margin: 0 0 0.7rem;
  font-size: 1.8rem;
}

.contact-cta-banner p {
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* CTA gombok */

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.cta-btn.primary {
  background: #ffffff;
  color: var(--biamat-blue);
  border: none;
}

.cta-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.4);
}

.cta-btn.ghost {
  background: transparent;
  color: #e5e7eb;
  border: 1.5px solid #e5e7eb;
}

.cta-btn.ghost:hover {
  background: rgba(15, 23, 42, 0.12);
}

/* Reszponzív töréspontok – kapcsolat oldal */

@media (max-width: 900px) {
  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-image {
    order: -1;
  }
}

/* =========================================
   Időpontfoglalás oldal
========================================= */

.booking {
  background: #f6f8ff 40%;
  padding-top: 1rem;
  padding-bottom: 0rem;
}


.booking-layout {
  display: flex;
  flex-direction:column;
  gap:2rem;
}

.booking-info ul {
  margin: 0.6rem 0 0.8rem;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: #4b5563;
}

.booking-info li {
  margin-bottom: 0.3rem;
}

.booking-info .primary-btn {
  margin-top: 1rem;
}

.booking-cta-text {
  font-size: 0.95rem;
  color: #4b5563;
  margin-top: 1rem;
}

.booking-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.4rem 1.5rem 1.6rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
  font-size: 0.95rem;
}

.booking-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

/* =========================================
   Lábléc
========================================= */

footer {
  border-top: 1px solid #e5e7eb;
  background: transparent; /* a globális háttér fusson végig */
  padding: 1rem 0 1.2rem;
  flex-shrink: 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.footer-links a {
  font-size: 0.85rem;
}

/* =========================================
   Reszponzív töréspontok – globális
========================================= */

@media (max-width: 900px) {
  main {
    padding-top: 2.2rem;
  }

  section {
    padding: 2.2rem 0;
  }

  .biamat-cards,
  .service-grid,
  .pricing-wrapper,
  .contact-wrapper,
  .aboutme-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .biamat::before,
  .aboutme::after {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .nav {
    height: 74px;
  }

  .biamat-title,
  .section-title {
    font-size: 1.5rem;
  }

  .biamat-header,
  .section-header {
    margin-bottom: 1.8rem;
  }

  .contact-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-cta-banner {
    padding: 1.8rem 1.6rem 1.7rem;
  }

  .service-card {
    padding-top: 2.4rem;
  }

  .service-icon {
    top: -22px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .brand-logo img {
    height: 44px;
  }

  .brand-text span:first-child {
    font-size: 0.9rem;
    letter-spacing: 0.35em;
  }
}

/* =========================================
   FELVÉTELI 7. OSZTÁLYOSOKNAK ALOLDAL
   (felveteli7.html)
========================================= */

/* Oldal szélén díszítő ábrák */

body.felveteli-page::before,
body.felveteli-page::after {
  content: "";
  position: fixed;
  width: 320px;
  height: 320px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}


/* Navigáció – felvételis oldal */

.felveteli-page .nav {
  justify-content: space-between;
}

.felveteli-page .nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.felveteli-page .nav-links a {
  text-decoration: none;
  color: #111827;
}

.felveteli-page .nav-links a:hover {
  text-decoration: underline;
}

/* HERO blokk */

.hero7 {
  padding: 4rem 0 3.5rem;
  background: transparent;
}

.hero7-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero7-text h1 {
  font-size: clamp(2.2rem, 3.2vw + 1.4rem, 3.1rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
  color: #404ED3;
}

.hero7-text p {
  font-size: 1rem;
  color: #4b5563;
  margin: 0 0 2rem;
  max-width: 640px;
}

.hero7-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--biamat-blue), #6366f1);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(64, 78, 211, 0.45);
  cursor: pointer;
}

.hero7-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(64, 78, 211, 0.55);
}

/* Jobb oldali hero-kép */

.hero7-image-wrapper {
  display: flex;
  justify-content: center;
}

.hero7-image {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(64, 78, 211, 0.25);
  background: #e5e7eb;
}

.hero7-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Szekciók – cím/alcím szín */

.felveteli-page .section {
  padding: 3rem 0;
padding-top: 1rem;
  padding-bottom: 0rem;
}

.felveteli-page .section-title {
  color: #111827;
  text-align: center;
  margin: 0 0 0.4rem;
}

.felveteli-page .section-subtitle {
  color: #4b5563;
  text-align: center;
  margin: 0 0 2rem;
}

/* PROGRAM RÉSZLETEI */

.section-program {
  background: transparent;
  position: relative;
}

.program-overview {
  margin-top: 1rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.program-item {
  background: #ffffff;
  border-radius: 26px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.program-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.8rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--biamat-blue), #6366f1);
  color: #fff;
}

.program-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #111827;
}

.program-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
}

.section-program::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 0px;
  width: 520px;
  height: 520px;
  background-image: url("bal-abra.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}


/* Pótlási lehetőség doboz */

.highlight-box {
  margin-top: 2rem;
  border-radius: 28px;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(135deg, var(--biamat-blue), #6366f1);
  color: #f9fafb;
  box-shadow: 0 22px 55px rgba(64, 78, 211, 0.5);
}

.highlight-box h4 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.highlight-box p {
  margin: 0;
  font-size: 0.96rem;
}

/* MIT TANULUNK MAJD? */

.section-alt {
  margin-top: 2rem;
  background: transparent;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.topic-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  font-size: 0.95rem;
  color: #374151;
}

.topic-card h4 {
  margin: 0 0 0.6rem;
  font-size: 1.02rem;
  color: #111827;
}

.info-note {
  margin-top: 2rem;
  border-radius: 22px;
  padding: 1rem 1.4rem;
  background: rgba(64, 78, 211, 0.06);
  color: var(--biamat-blue);
  font-size: 0.93rem;
}

/* MIÉRT BIAMAT? */

.trust-section {
  background: transparent;
  position: relative;
  overflow: hidden;
padding-bottom: 4rem;
}

.trust-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.trust-item {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.8rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  background: rgba(64, 78, 211, 0.06);
}

.trust-item h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #111827;
}

.trust-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
}

.trust-section::after {
  content: "";
  position: absolute;
  top: -5%;
  right: -320px;
  width: 520px;
  height: 520px;
  background-image: url("jobb-abra.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.25;
  pointer-events: none;
  z-index: 2;
}

/* GYAKORLATI INFÓK */

.section-practical {
  background: transparent;
}

.practical-info {
  margin-top: 1.5rem;
}

.price-highlight {
  border-radius: 28px;
  padding: 1.5rem 1.6rem;
  background: linear-gradient(135deg, var(--biamat-blue), #6366f1);
  color: #f9fafb;
  text-align: center;
  box-shadow: 0 22px 55px rgba(64, 78, 211, 0.5);
}

.price-note {
  font-size: 0.96rem;
  opacity: 0.95;
}

.price {
  margin-top: 0.4rem;
  font-size: 2.2rem;
  font-weight: 800;
}

.info-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
}

.info-item {
  background: #f9fafb;
  border-radius: 22px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  font-size: 0.95rem;
  color: #374151;
}

.info-item h4 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: #111827;
}

/* Záró CTA sáv */

.final-cta {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(135deg, var(--biamat-blue), #6366f1);
  color: #f9fafb;
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 0.7rem;
  font-size: 1.9rem;
}

.final-cta p {
  margin: 0 0 1.7rem;
  font-size: 0.98rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Fehér CTA gomb a záró sávban */

.cta-button-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--biamat-blue);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 500;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.5);
}

.cta-button-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.6);
}

/* Reszponzív beállítások – felvételis oldal */

@media (max-width: 1000px) {
  .hero7-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero7-image {
    max-width: 420px;
    margin: 0 auto;
  }

  .program-grid,
  .topics-grid,
  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* „Kattints a részletekért” – linknek nem látszó verzió */

.price-more {
  font-size: 0.8rem;
  color: #6b7280;          /* ugyanaz, mint a középső kártyán */
  margin-top: 0.4rem;
}

.price-link {
  color: inherit;          /* a szülő színét örökli */
  text-decoration: none;  /* nincs aláhúzás */
  font-weight: 400;
  cursor: pointer;
}

.price-link::before {
  content: "";
}

.price-link:hover {
  color: #374151;          /* nagyon finom sötétedés hoverre */
  text-decoration: none;  /* biztos ami biztos */
}


@media (max-width: 720px) {
  .program-grid,
  .topics-grid,
  .trust-items {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero7 {
    padding: 3rem 0 2.6rem;
  }

  body.felveteli-page::before,
  body.felveteli-page::after {
    display: none;
  }
}

/* Teljes kártya link (ne legyen aláhúzás/kék szín) */
.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* opcionális: hover/focus visszajelzés */
.card-link:hover,
.card-link:focus-visible {
  text-decoration: none;
}

/* Mobilon: díszítő bal/jobb SVG-k elrejtése */
@media (max-width: 1280px) {
  .aboutme::after,
  .services::before,
  .services::after,
  .pricing-cards::before,
  .pricing-cards::after,
  body.felveteli-page::before,
  body.felveteli-page::after,
  .section-program::before,
  .trust-section::after {
    display: none !important;
    background-image: none !important;
    content: none !important;
  }
}

/* INDEX mobil: logó középre a cím alatt + kisebb térköz a következő szekcióhoz */
@media (max-width: 800px){

  /* logó középre */
  .hero-logo{
    justify-content: center;   /* volt: flex-start */
  }

  .hero-logo img{
    display: block;
    margin: 0 auto;
  }

  /* kevesebb levegő a cím/logó között */
  .hero-grid{
    gap: 1.0rem;              /* volt: 1.4rem (ha akarod még szorosabb: 0.8rem) */
  }

  /* HERO alja kisebb, hogy a következő szekció közelebb legyen */
  .hero{
    padding-bottom: 1.6rem;   /* volt: 3.0rem / 3.8rem körül */
  }

  /* és a következő (Mi a BiaMat?) szekció teteje is legyen kisebb mobilon */
  section.biamat{
    padding-top: 1.6rem;      /* alapból: section { padding: 3rem 0; } */
  }
}

/* HERO töltse ki a teljes első képernyőt */
.hero{
  min-height: calc(100vh - 80px); /* 80px = sticky header magassága */
  display: flex;
  align-items: center;            /* vertikális közép */
  padding-top: 0;
  padding-bottom: 0;
}

/* A belső tartalom ne tapadjon a szélekhez */
.hero-inner{
  width: 100%;
  padding: 3rem 0;
}

/* Mobilon a kisebb nav miatt */
@media (max-width: 600px){
  .hero{
    min-height: calc(100vh - 74px); /* mobil nav */
  }

  .hero-inner{
    padding: 2.4rem 0;
  }
}

/* ===== HERO scroll down jel ===== */

.scroll-down{
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  text-align: center;
  color: var(--biamat-blue);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;

  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.scroll-down:hover{
  opacity: 1;
}

/* szöveg */
.scroll-text{
  white-space: nowrap;
}

/* V-alakú nyilak */
.scroll-arrows{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.scroll-arrows span{
  width: 12px;
  height: 12px;
  border-left: 2px solid var(--biamat-blue);
  border-bottom: 2px solid var(--biamat-blue);
  transform: rotate(-45deg);
  animation: scrollBounce 1.6s infinite;
  opacity: 0;
}

/* második nyíl késleltetve */
.scroll-arrows span:nth-child(2){
  animation-delay: 0.2s;
}

/* animáció */
@keyframes scrollBounce{
  0%{
    opacity: 0;
    transform: translateY(-6px) rotate(-45deg);
  }
  40%{
    opacity: 1;
  }
  80%{
    opacity: 0;
    transform: translateY(6px) rotate(-45deg);
  }
  100%{
    opacity: 0;
  }
}

/* mobilon kicsit feljebb */
@media (max-width: 600px){
  .scroll-down{
    bottom: 3.4rem;
    font-size: 0.8rem;
  }
}

/* eltűnt állapot */
.scroll-down.hidden{
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* HERO tartalom vizuális középre igazítása */
.hero-inner{
  transform: translateY(-6vh);
}

@media (max-width: 600px){
  .hero-inner{
    transform: translateY(-3vh);
  }
}

.felveteli-page .felvi-title-accent{
  color: var(--biamat-blue); /* vagy amit szeretnél */
}