/* Kapcsolat oldal boxok */
.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.team-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 330px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-card img {
  width: 180px;
  height: 240px;
  object-fit: cover;
  border-radius: 8px; /* enyhén lekerekített sarkok */
  margin-bottom: 15px;
}

.team-card h3 {
  margin: 10px 0 5px;
  font-size: 20px;
  color: #1f2933;
}

.team-card .job-title {
  font-size: 15px;
  font-weight: 600;
  color: #0ea5a4;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}





/* Animált, pörgő számláló */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  padding: 4rem 2rem;
  text-align: center;
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #279594;
  line-height: 1.1;
}

.stat-label {
  margin-top: 0.4rem;
  font-size: 1.1rem;
  color: #333;
}



/* Lépések színátmenet, pontok, animált vonal */
.steps-list { max-width: 900px; margin: 60px auto; } .step-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 28px; } /* NAGYOBB PONT – 3 SZÍNES GRADIENT */ .step-dot { font-size: 26px; line-height: 1; background: linear-gradient( to bottom, #279594, #1f6f70, #144c4d ); -webkit-background-clip: text; -webkit-text-fill-color: transparent; flex-shrink: 0; } /* LÉPÉS CÍM – MÉRETET NEM ÁLLÍTUNK */ .step-title { margin: 0 0 4px; background: linear-gradient( to right, #279594, #1f6f70, #144c4d ); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; } /* KIEMELT SZÖVEG */ .highlight { background: linear-gradient( to right, #279594, #1f6f70, #144c4d ); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; } .steps-list { position: relative; padding-left: 50px; /* több hely a vonalnak */ } /* FÜGGŐLEGES ANIMÁLT VONAL */ .steps-list::before { content: ""; position: absolute; left: 18px; /* igazítás a pontokhoz */ top: 0; bottom: 0; /* az utolsó pontig teljesen érjen */ width: 6px; border-radius: 3px; /* világosabb, élénkebb gradient */ background: linear-gradient( to bottom, #4db9b6 0%, /* világosabb árnyalat */ #279594 40%, #1f6f70 70%, #144c4d 100% ); background-size: 100% 200%; /* animációhoz dupla magasság */ animation: flow 20s linear infinite; /* még lassabb „flow” */ } /* ANIMÁCIÓ */ @keyframes flow { 0% { background-position: 0 0; } 100% { background-position: 0 -100%; } } /* PONTOK IGAZÍTÁSA A VONALRA */ .step-dot { flex-shrink: 0; font-size: 26px; line-height: 1; background: linear-gradient(to bottom, #279594, #1f6f70, #144c4d); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-left: -8px; /* pont rá a vonalra */ }







/* Lépések melletti kis képek */

/* STEP ITEM legyen referencia */
.step-item {
	position: relative;
}

/* KIS KÉPEK BALRA A VONALON KÍVÜL */
.step-img {
	position: absolute;
	left: -130px;           /* EZ SZABÁLYOZZA, MENNYIRE VAN BALRA */
	top: 0;
}





/* MOBILON: maradjon a vonal mellett balra, de ne vágódjon le */
@media (max-width: 768px){

  /* csak annyi hely kell balra, hogy a kép beférjen */
  .steps-list{
    padding-left: 70px !important;   /* 50 helyett kicsit több, de nem túl sok */
  }

  /* a vonal és a pont maradjon a desktop pozícióban */
  .steps-list::before{
    left: 18px !important;
  }
  .step-dot{
    margin-left: -8px !important;
  }

  /* a képet kevésbé lógatjuk ki, hogy elférjen a képernyőn */
  .step-img{
    left: -70px !important;          /* -130 helyett */
    width: 90px;
    height: 90px;
  }
}







/* MOBILON: a pont mindig látszódjon a vonalon */
@media (max-width: 768px){

  /* legyen referencia a pozicionáláshoz */
  .step-item{
    position: relative;
  }

  /* a pontot kivesszük a flex-ből és rátesszük a vonalra */
  .step-dot{
    position: absolute !important;
    left: 18px !important;           /* ugyanott, mint a vonal */
    top: 10px !important;            /* finomhangolható */
    margin-left: 0 !important;
    z-index: 5 !important;           /* mindig a vonal fölött */
    font-size: 26px;
    line-height: 1;
  }

  /* a vonal marad a pont alatt */
  .steps-list::before{
    z-index: 1;
  }

  /* a kép ne takarja a pontot */
  .step-img{
    z-index: 2;
  }

  /* a szöveg legyen a legfelül (nem kötelező, de stabil) */
  .step-text{
    position: relative;
    z-index: 3;
  }
}





/* MOBILON: pont + szöveg jobbra tolása, hogy ne takarja a kép */
@media (max-width: 768px){

  /* a teljes step tartalom menjen kicsit jobbra */
  .step-item{
    padding-left: 110px;   /* EZ a kulcs */
  }

  /* a vonal marad fixen */
  .steps-list::before{
    left: 18px;
  }

  /* a pont menjen a vonalra, de már nem takarja a kép */
  .step-dot{
    margin-left: -8px;
  }

  /* a kép marad abszolút, balra */
  .step-img{
    left: -70px;
    width: 90px;
    height: 90px;
  }
}





/* MOBILON: csak a szöveg kicsit vissza balra */
@media (max-width: 768px){

  .step-text{
    margin-left: -20px;   /* EZ szabályozza a visszahúzást */
  }

}

/* DESKTOP-ONLY */
@media (min-width: 769px){
  .steps-list .step-item > img.step-img{
    position: absolute !important;
    left: -130px !important;
    top: 0 !important;
  }
}
















.reviews-slider-section {
  padding: 100px 0;
  background: transparent;
  overflow: hidden;
}

.reviews-slider-head {
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
}

.reviews-slider-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #334155;
}

.reviews-slider-head h2 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.15;
  color: #0f172a;
}

.reviews-slider-head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
}

.reviews-slider-wrap {
  position: relative;
}

.reviews-slider-wrap::before,
.reviews-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.reviews-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, #eef3f8 0%, rgba(238, 243, 248, 0) 100%);
}

.reviews-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #eef3f8 0%, rgba(238, 243, 248, 0) 100%);
}

.reviews-slider {
  display: flex;
  gap: 28px;
  padding: 12px 84px 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-slide {
  position: relative;
  flex: 0 0 420px;
  min-height: 320px;
  padding: 34px 30px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 12px 34px rgba(15, 23, 42, 0.07),
    0 4px 12px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-slide::before {
  content: "“";
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 72px;
  line-height: 1;
  color: rgba(148, 163, 184, 0.18);
  pointer-events: none;
}

.review-slide:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 44px rgba(15, 23, 42, 0.11),
    0 8px 20px rgba(15, 23, 42, 0.06);
}

.review-stars {
  margin-bottom: 20px;
  font-size: 20px;
  letter-spacing: 0.18em;
  color: #f59e0b;
}

.review-message {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.8;
  color: #1e293b;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0f172a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-name {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  color: #0f172a;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.reviews-nav:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
}

.reviews-nav-prev {
  left: 20px;
}

.reviews-nav-next {
  right: 20px;
}

@media (max-width: 768px) {
  .reviews-slider-section {
    padding: 80px 0;
  }

  .reviews-slider-head {
    margin-bottom: 36px;
  }

  .reviews-slider-head h2 {
    font-size: 30px;
  }

  .reviews-slider-head p {
    font-size: 16px;
  }

  .reviews-slider {
    gap: 18px;
    padding: 10px 18px 8px;
  }

  .review-slide {
    flex: 0 0 86%;
    min-height: auto;
    padding: 28px 22px 24px;
    border-radius: 22px;
  }

  .review-message {
    font-size: 16px;
  }

  .reviews-nav {
    display: none;
  }

  .reviews-slider-wrap::before,
  .reviews-slider-wrap::after {
    display: none;
  }
}













.sr-faq-section {
  padding: 60px 20px !important;
}

.sr-faq-container {
  max-width: 1000px !important;
  margin: 0 auto !important;
}

.sr-faq-heading {
  text-align: center !important;
  margin-bottom: 36px !important;
}

.sr-faq-label {
  display: inline-block !important;
  margin-bottom: 16px !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  background: #e9e9e9 !important;
  color: #555 !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

.sr-faq-heading h2 {
  margin: 0 0 12px !important;
  color: #111 !important;
  font-size: 42px !important;
  line-height: 1.15 !important;
}

.sr-faq-heading p {
  margin: 0 !important;
  color: #555 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

/* FAQ ITEM */

.sr-faq-item {
  margin-bottom: 14px !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 18px !important;
  background: #fff !important;
  overflow: hidden !important;
  transition: all 0.25s ease !important;
}

.sr-faq-item:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08) !important;
  background: #fafafa !important;
}

/* QUESTION */

.sr-faq-question {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 22px 24px !important;
  cursor: pointer !important;
  list-style: none !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #111 !important;
}

.sr-faq-question::-webkit-details-marker {
  display: none !important;
}

/* ===== NYÍL (MOBILON IS TÖKÉLETES) ===== */

.sr-faq-icon {
  position: relative !important;
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  margin-left: 12px !important;
  flex: 0 0 18px !important;
  transition: transform 0.3s ease !important;
}

.sr-faq-icon::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 8px !important;
  height: 8px !important;
  border-right: 2px solid #111 !important;
  border-bottom: 2px solid #111 !important;
  transform: translate(-50%, -65%) rotate(45deg) !important;
  box-sizing: border-box !important;
}

.sr-faq-icon::after {
  display: none !important;
}

/* ANIMÁCIÓ */

.sr-faq-item:hover .sr-faq-icon {
  transform: scale(1.08) !important;
}

.sr-faq-item[open] .sr-faq-icon {
  transform: rotate(180deg) scale(1.08) !important;
}

/* ANSWER */

.sr-faq-answer {
  padding: 0 24px 22px 24px !important;
}

.sr-faq-answer p {
  margin: 0 !important;
	padding-left: 4px !important;
  color: #555 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

/* MOBIL */

@media (max-width: 768px) {
  .sr-faq-section {
    padding: 40px 16px !important;
  }

  .sr-faq-heading h2 {
    font-size: 30px !important;
  }

  .sr-faq-heading p {
    font-size: 16px !important;
  }

  .sr-faq-question {
    padding: 18px !important;
    font-size: 16px !important;
  }

  .sr-faq-icon {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    flex: 0 0 20px !important;
  }

  .sr-faq-icon::before {
    width: 9px !important;
    height: 9px !important;
  }

  .sr-faq-answer {
    padding: 0 18px 18px !important;
  }
}























.sr-comfora-slide {
  padding: 100px 20px !important;
  background: transparent !important;
}

.sr-comfora-slide,
.sr-comfora-slide * {
  box-sizing: border-box !important;
}

.sr-comfora-head {
  max-width: 1100px !important;
  margin: 0 auto 54px !important;
  text-align: center !important;
}

.sr-comfora-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 44px !important;
  padding: 0 22px !important;
  margin-bottom: 22px !important;
  border-radius: 999px !important;
  background: #f1f1f1 !important;

  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #6f6f6f !important;
  line-height: 1 !important;
}

.sr-comfora-head h2 {
  margin: 0 0 18px !important;
  font-size: 42px !important;
  line-height: 1.02 !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  color: #0f1833 !important;
}

.sr-comfora-subtitle {
  margin: 0 !important;
  font-size: 23px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
  color: #000000 !important;
}

.sr-comfora-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(127, 127, 127, 0.25) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: inherit !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

.sr-comfora-layout {
  max-width: 1320px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr 1.1fr 1fr !important;
  gap: 34px !important;
  align-items: center !important;
}

.sr-comfora-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 22px !important;
}

.sr-comfora-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.sr-comfora-imagewrap {
  width: 100% !important;
  max-width: 560px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 10px 20px !important;
}

.sr-comfora-imagewrap img {
  display: block !important;
  width: 100% !important;
  max-width: 500px !important;
  height: auto !important;
  object-fit: contain !important;
}

.sr-comfora-card {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  padding: 24px !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(127, 127, 127, 0.18) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.sr-comfora-icon {
  flex: 0 0 40px !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 2px 0 0 0 !important;
  overflow: hidden !important;
}

.sr-comfora-icon img {
  display: block !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  object-fit: contain !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.sr-comfora-text {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.sr-comfora-text h3 {
  margin: 0 0 8px !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: inherit !important;
}

.sr-comfora-text p {
  margin: 0 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: inherit !important;
  opacity: 0.82 !important;
}

@media (max-width: 1100px) {
  .sr-comfora-layout {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .sr-comfora-center {
    order: -1 !important;
  }

  .sr-comfora-imagewrap {
    max-width: 460px !important;
    margin: 0 auto !important;
  }

  .sr-comfora-head h2 {
    font-size: 40px !important;
  }
}

@media (max-width: 767px) {
  .sr-comfora-slide {
    padding: 72px 20px !important;
  }

  .sr-comfora-head {
    margin-bottom: 34px !important;
  }

  .sr-comfora-head h2 {
    font-size: 32px !important;
  }

  .sr-comfora-subtitle {
    font-size: 18px !important;
  }

  .sr-comfora-badge {
    font-size: 14px !important;
    padding: 0 16px !important;
  }

  .sr-comfora-card {
    padding: 18px !important;
    border-radius: 18px !important;
    gap: 14px !important;
  }

  .sr-comfora-icon {
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
  }

  .sr-comfora-icon img {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
  }

  .sr-comfora-text h3 {
    font-size: 15px !important;
  }

  .sr-comfora-text p {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }
}


















@media (max-width: 767px) {
  .sr-comfora-slide {
    padding: 64px 16px !important;
  }

  .sr-comfora-head {
    max-width: 100% !important;
    margin: 0 auto 32px !important;
    text-align: center !important;
  }

  .sr-comfora-eyebrow {
    height: 40px !important;
    padding: 0 18px !important;
    margin-bottom: 18px !important;
    font-size: 12px !important;
    letter-spacing: 0.12em !important;
  }

  .sr-comfora-head h2 {
    font-size: 34px !important;
    line-height: 1.08 !important;
    margin: 0 0 14px !important;
  }

  .sr-comfora-subtitle {
    font-size: 18px !important;
    line-height: 1.5 !important;
    margin: 0 0 16px !important;
  }

  .sr-comfora-badge {
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: 14px !important;
  }

  .sr-comfora-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    max-width: 100% !important;
  }

  .sr-comfora-center {
    order: 1 !important;
    width: 100% !important;
  }

  .sr-comfora-imagewrap {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  .sr-comfora-imagewrap img {
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .sr-comfora-col {
    width: 100% !important;
    gap: 14px !important;
  }

  .sr-comfora-col:first-child {
    order: 2 !important;
  }

  .sr-comfora-col:last-child {
    order: 3 !important;
  }

  .sr-comfora-card {
    width: 100% !important;
    padding: 18px !important;
    border-radius: 18px !important;
    gap: 14px !important;
  }

  .sr-comfora-icon {
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
  }

  .sr-comfora-icon img {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
  }

  .sr-comfora-text h3 {
    font-size: 15px !important;
    line-height: 1.35 !important;
    margin: 0 0 6px !important;
  }

  .sr-comfora-text p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
}