  
	*, *::before, *::after {
		box-sizing: border-box;
        font-family: 'Switzer', sans-serif;	
	}

    body {
      margin: 0;
      font-family: 'Switzer', sans-serif;
      font-weight: 400; /* Switzer Regular */
      font-size: 18px;
      background-color: #101113;
    }
	
	hr.dashed {
		border: none;
		border-top: 1px dashed #000;
	}

	div.dash-custom {
		  height: 1px; /* vonal magassága */
		  background-image: repeating-linear-gradient(
			to right,
			#000 0,
			#000 6px,   /* színig */
			transparent 6px,
			transparent 12px /* gap */
		  );
		  background-repeat: repeat-x;
	}

	p {
		  line-height:150%;
	}

	a {
	  color: white;
	  text-decoration: none;
	}

	a.orange {
	  color: #FFB806;
	  text-decoration: none;
	}

    h3 {
      font-size: 38px;
      margin: 0 0 1rem 0;
	}

	h4 {
      font-size: 24px;
      margin: 0 0 0.75rem 0;
	}

    header {
	  height: 108px;
      width: 1140px;
      margin: 0rem auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
/*      background-color: #101113;	  */
      padding: 0rem 4rem 0rem 4rem;
/*      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    }

    #logo {
		display: flex;
		align-items: center;
		gap: 8px;
      font-weight: 500; /* Medium */
      font-size: 24px;
      color: #ffffff;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
      padding: 0;
      margin: 0;
    }

    nav ul li {
      font-size: 16px;
      font-weight: 500; /* Switzer Medium */
      cursor: pointer;
      transition: color 0.2s;
      color: #ffffff;
    }

    nav ul li a:hover {
      color: #FFB806;
    }

    .cta-button {
      background-color: #FFB806;
      color: #000;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600; /* Switzer SemiBold */
      font-size: 16px;
      transition: background-color 0.3s;
	  display:flex;
	  align-items: center;
	  justify-content: center;
	  gap:8px;
    }

    .cta-button:hover {
      background-color: #fff;
    }

    .container {
      width: 1140px;
      margin: 0rem auto 2rem auto;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }


    .subcontainer {
      width: 90%;
	  margin: 0px auto;
    }

    .box {
      background-color: white;
      border-radius: 20px;
      padding: 0px;
/*	  box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
      color: #000;
      display: flex;
      gap: 15px;
      flex-wrap: nowrap;
    }

    .box h3 {
	  line-height: 70px;
      font-size: 56px;
      font-weight: 500; /* Switzer Medium */
      margin: 0 0 10px 0;
    }


	.box .col1 {
		flex: 0 0 40%;
		padding-right: 16px;
	}

    .right-columns {
 		padding: 0 0 0px 0;
    }

	.box2 {
		background-image: url(img/orange_rectangle.svg);
		background-size: 100% 100%;
		background-repeat: no-repeat;
		background-position: center;
		background-color: inherit;
	  color: #000;
	  flex-direction: column;
	  text-align: left; /* FONTOS! Ne legyen center, különben középre tol mindent */
	  align-items: flex-start; /* akkor is ha flex elem */
	  padding: 60px 30px 50px 40px;
	    height: 380px;
		gap: 30px;
	}

.no-gap-after {
  margin-bottom:-1.5rem; /* Kiegyenlíti a container gap-jét */
}

	.box4 {
	  padding: 2.5rem 50px;
	}

	.box5 {
      border-radius: 20px 20px 20px 0px;	
		background-color: #000;
		color: #ffffff;
		border: 1px solid #ffffff;
		border-bottom: 0px;
		flex-direction: column;
		text-align: left; /* FONTOS! Ne legyen center, különben középre tol mindent */
		align-items: flex-start; /* akkor is ha flex elem */
		padding: 2.5rem 4.5rem 0rem 4.5rem;

  position: relative;
  background: #111; /* példa háttér */
  padding: 2rem;
  margin-bottom: 0; /* fontos, hogy ne legyen plusz rés */
	}

.box5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 85%;
  width: 14%;
  height: 1px;
  background-color: white;
}

	.box5B {
		background-color: inherit;
		background-image: url(img/orange_rectangle_frame.svg);
		background-size: 100% 100%;
		background-repeat: no-repeat;
		background-position: center;
		color: #ffffff;
		padding: 40px 30px 40px 72px;
		flex-direction: column;
		text-align: left; /* FONTOS! Ne legyen center, különben középre tol mindent */
		align-items: flex-start; /* akkor is ha flex elem */
	}
	.box5B h3 {
		color: #FFB806;
		font-size: 56px;
		line-height:150%;
		max-width: 1000px;
	}
	.box5B .text {
		color: #ffffff;
		font-size: 18px;
	}

	#features {
	  margin: 0px;
	  margin-top: 30px;
      background-color: white;
      border-radius: 20px;
	  padding: 2.5rem 50px;
	}

	#features img {
	  width:100%;
	}

.slide {
  height: 430px;
  display: none;
}
.slide.active {
  display: flex;
}
.slide .col2 img {
  background-color: #000;
  border-radius: 22px;
}

.dots {
  text-align: center;
  margin-top: 5px;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active {
  background: #FFB806;
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.9);
}
#lightbox-img {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
}
#lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

    .cols2 {
	  margin:0px auto;
      padding: 30px 50px;
      color: #fff;
      display: flex;
	  flex-direction: column;
		background-image: url(img/triple.svg);
		background-repeat: no-repeat;
		background-position: right;

		padding-top:100px;
		height:1674px;
		margin-bottom:50px;
    }
	.cols2 .bridge {
		text-align: center;
	}
	.cols2 .columns {
	  display: flex;
	  flex-direction: row;
	  gap: 50px;
	  justify-content: center;
	}
	.cols2 .column {
		width: 330px;
	}
	.cols2 .col1 {
	}
	.cols2 .col2 {
	}
	.cols2 .white-card2 {
		margin:0px !important;
		padding: 30px;
		padding-bottom: 50px;
	}
	.cols2 .wc1 {
		min-height:460px;
	}
	#card5-mobile {
		display: none;
	}
	
    .cols3 {
      padding: 50px 50px 0px 50px;
      color: #fff;
      display: flex;
      flex-wrap: nowrap;
    }
	.cols3 .col1 {
		flex: 0 0 40%;
		padding-right: 35px;
		margin-right: 15px;
	}
	.cols3 .col2b {
		padding-right: 22px;
	}
    .cols3 h3 {
	  line-height: 150%;
      font-size: 56px;
      font-weight: 500; /* Switzer Medium */
      margin: 0 0 1rem 0;
    }
	.cols3 .column-star {
		display: flex;
		margin: auto;
	}


.text-and-images {
  display: flex;
  justify-content: left;
  align-items: left;
  gap: 2rem;
  flex-wrap: nowrap;
  line-height:26px;
  padding-left: 0px;
  padding-top: 10px;
  width: 960px;
}

.box2 .text-and-images {
/*  padding-left: 560px; */
  max-width: none;
}

.text-and-images .text {
  margin: 0;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.image-buttons {
  flex: 0 0 auto;
  display: flex;
  gap: 0rem;
}

.image-buttons img {
/*  width: 200px;  */
  height: 60px;
}

.box3 {
  background-color: inherit;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0;
  border: none;
  border-radius: 0px;
  overflow: hidden;
  min-height: 400px; /* Opcionális, ha fix magasság kell */
}

.banners {
	margin:20px;
	display:flex;
	align-items: center;
	justify-content: center;
	gap:80px;
}

.dash1 {
	position:relative;
	left:-100px;
	padding-top:110px;
	display:flex;
}

.left-box {
  flex: 0 0 45%;
  background-color: #fff;
  color: #000;
  padding: 2.5rem 2rem 2.5rem 4.5rem;
  box-sizing: border-box;
}

.dark-row {
  display: flex;
  align-items: flex-start;
}

.video {
  border-radius: 20px;
  border: 1px solid #FFB806;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
}

.video iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #FFB806;
  border: 1px solid #FFB806;
}

.video-guide {
	width:63%;
	padding:32px 32px 32px 0px;
	border:none;
}
    .column {
      flex: 1 1 50%;
      min-width: 200px;
    }
	.left-column {
	  padding: 32px 1rem 2.5rem 50px;
	}
	
	.left-column p {
		max-width:430px;
		font-size:24px;
		line-height:130%;
	}

	.box-start .left-column p {
		max-width:none;
		font-size:24px;
		padding:0px;
		margin:0px;
	}
	
    .dark-box {
      color: #fff;
      background-image: url(img/dark_box.svg);
	  background-size: 100% 100%;
/*      background-color: #000; */
/*      border-radius: 20px 0px 20px 20px;*/
	  width: 400px;
	  height: 262px;
		padding: 20px 20px 10px 10px;
    }
	
    .dark-box p {
		line-height: 120%;
		margin: 20px;
	  font-weight: 400px;
	  font-size: 24px;
	}

    .dark-box h4 {
      font-size: 24px;
      font-weight: 400; /* Switzer Regular */
      color: #ffffff;
    }

    .dark-box2 {
	  width: 100%;
      border-radius: 40px;
	  padding: 10px;
      color: #fff;
      background-color: #000;
    }
	
    .dark-box2 h4 {
      font-size: 24px;
      font-weight: 400; /* Switzer Regular */
      color: #ffffff;
    }
	
    .dark-box2 p {
	  margin: 20px;
	  font-weight: 400px;
	  font-size: 18px;
	  line-height: 150%;
    }

    .dark-box3 {
      border-radius: 20px 20px 0px 20px;
    }

    .dark-box2 h4 {
		color: #FFB806;
	}

    .dark-corner {
 	  padding:0px;
      border: 0px;
    }

    .dark-corner2 {
		padding:0px;
		border: 0px;
		display: flex;
		margin-top: auto;
		align-items: flex-end;
    }

    .yellow-box {
      background-color: #FFB806;
      color: #000;
      border-radius: 20px;
    }

    .yellow-box p {
		line-height: 120%;
		margin: 20px;
	  font-weight: 400px;
	  font-size: 24px;
	}

    .yellow-box2 {
      border-radius: 40px;
	  padding: 10px;
    }

    .yellow-box2 p {
	  font-size: 18px;
	  line-height: 150%;
    }

    .yellow-corner {
 	  padding:0px;
      border: 0px;
	  text-align: right;
    }

    .black-corner {
 	  padding:0px;
      border: 0px;
	  text-align: left;
    }

    .white-box {
      background-color: #ffffff;
      color: #000;
	  border: 1px solid #000;
      border-radius: 12px;
      padding: 1rem;
      font-weight: 500; /* Medium */
    }

	.labels {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 8px;
	  padding-top: 60px;
	}

    .label-box {
      background-color: #ffffff;
      color: #000;
	  border: 2px solid #000;
      border-radius: 14px;
      padding: 12px 20px;
	  font-size: 16px;
      font-weight: 500; /* Medium */
    }

.top-image {
  margin: 0px 50px 0px 10px;
  padding: 0px;
}

    .top-image img {
      width: 100%;
      border-radius: 12px;
      display: block;
		height: auto;
		min-height: 600px;
    }

    .bottom-row {
      display: flex;
      gap: 1rem;
    }

    .bottom-row .column {
      flex: 1;
      display: flex;
/*      align-items: flex-end;  */ /* Alulra igazítás */
    }

.highlight, .highlight1, .highlight2 {
  background-color: #FFB806;
  color: #000;
  border-radius: 20px;
  padding: 0em 0.2em;
  display: inline-block;
}
.highlight1 {
  border-radius: 20px 20px 20px 0px;
}
.highlight2 {
  border-radius: 0px 0px 20px 20px;
}

.highlight-black {
  background-color: #000;
  color: #fff;
  border-radius: 20px;
  padding: 0em 0.2em;
  display: inline-block;
}

.pricing-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  padding: 1em 0em;
  color:#fff;
}

.pricing-left {
  flex: 1;
  text-align: right;
  min-width: 410px;
}

.pricing-left h3 {
  text-align: left;
  margin-top: 0;
  font-size: 56px;
  font-weight: 500;
  height: 150px;
}

.pricing-left p {
  font-size: 24px;
  color: #fff;
  line-height: 66px;
}

.pricing-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.white-card {
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 24px;
  padding: 1.5rem;
  width: 100%;
  min-width: 280px;
/*  max-width: 300px;*/
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.white-card h4 {
  margin-top: 0;
  font-size: 32px;
  line-height: 22px;
  font-weight: 400;
}

.white-card h3 {
  color: #FFB806;
  font-size: 32px;
  line-height: 22px;
  font-weight: 400;
}

.white-card ul {
  list-style: none;
  padding: 0;
  margin: 90px 0px 60px 0px;
}

.white-card ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  height: 66px;
}

.white-card ul li:first-child {
  border-top: none;
}

.white-card ul li:last-child {
  border-bottom: none;
}

.white-card2 {
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 36px;
  padding: 20px 20px;
  margin: 20px 0px;
  width: 100%;
  min-height: 260px;
  line-height: 150%;
}
.white-card2 span {
	font-size:24px;
}

.cta-button.small {
  margin-top: auto;
  padding:0px;
  width: 100%;
  padding: 15px 10px;
  line-height: 150%;
  font-size: 20px;
  font-weight: 500;
  border-radius: 16px;
  background-color: #fff;
  color: #101010;
}

.checkmark-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #FFB806; /* sárga */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkmark-icon::before {
  content: '';
  width: 6px;
  height: 10px;
  border: solid #000; /* fekete */
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: block;
}

.faq {
	width: 100%;
    margin: 0px auto 80px auto;
}
.faq h1 {
	color: #fff;
	text-align:center;
	font-size: 56px;
	font-weight: 500;
}
.faq-item {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 22px;
  padding: 18px 22px;
  line-height: 130%;
/*  font-size: 24px;*/
  font-weight:400;
  margin-top: 22px;
  position: relative;   /* required for the pseudo-element */
  cursor: pointer;
  padding-right: 50px;
}
.faq-answer {
  display: none;
  margin-top: 20px;
/*  font-size: 24px;*/
  font-weight:400;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item::after {
  content: "+";             
  color: #fff;              
  font-size: 28px;          
  position: absolute;
  right: 20px;
  top: 30px;
  transform: translateY(-50%);
  transition: all 0.2s ease;  /* smooth switch */
}
.faq-item.active::after {
  top: 27px;
  content: "–";   /* minus sign */
}

.apps {
  width: 1140px;
  margin: 2rem auto;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;      /* show grab cursor */
}
.apps:active {
  cursor: grabbing;
}
.apps::-webkit-scrollbar {
  display: none;          /* hide scrollbar (Chrome/Safari) */
}
.app-item {
  flex: 0 0 auto;         /* don't shrink */
  width: 270px;
  background-color: #fff;
  border: none;
  color: #101113;
  border-radius: 40px;
  padding: 23px;
  margin: 0px 10px;
  scroll-snap-align: start;
}
.app-logo {
  background-color: #000;
  border: none;
  border-radius: 26px;
  padding: 40px;
}
.app-logo img {
	height: 150px;
	max-width: 150px;
}
.app-item .app-title {
	margin-top: 30px;
	font-size: 24px;
	line-height: 150%;
	font-weight: 600;
}
.app-item p.app-text {
	font-size: 18px;
	line-height: 150%;
	font-weight: 400;
	min-height: 140px;
}

.footer {
  border-radius: 50px;
  background-color: #fff;
  width: 1140px;
  margin: 0px auto;
  color: #000;
  padding: 40px 50px;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  flex-wrap: nowrap; /* Ne törjön alapból */
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-left {
  width: 55%;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-column div {
	font-weight: 600;
	font-size: 24px;
}

.footer-column a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  line-height: 150%;
  display: flex;
  align-items: center; /* függőlegesen középre igazít */
  gap: 6px; /* kis távolság kép és szöveg között */
}

.footer-column a:hover {
  color: #FFB806;
}

.footer-right {
  width: 30%;
  padding-left: 0px;
}

.footer-right h3 {
  margin: 0px 0px 8px 0px;
  font-weight: 500;
}

.footer-right p {
  margin: 0;
  font-size: 18px;
  color: #000;
}

.footer-separator {
  margin: 2rem 0 1rem 0;
  border: none;
  border-top: 1px solid #444;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-badge {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-badge:hover {
  background-color: #FFB806;
  color: #000;
  border-color: #FFB806;
}

	.hidden_content {
		display: none;
		border-radius: 50px;
		background-color: #fff;
		width: 1140px;
		margin: 0px auto 20px auto;
		color: #000;
		padding: 3rem 100px;
		box-sizing: border-box;
	}
	.hidden_content.active {
	  display: block;
	}
    .hidden_content h1 {
		line-height: 70px;
		font-size: 56px;
		font-weight: 500;
		margin: 0 0 1rem 0;
    }

.hamburger {
  display: none;
  font-size: 40px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1000;       /* top */  
}

.footer-mobil {
	display: none;
}

#mobil-tier {
	display: none;
}

.bottom-row-mobil {
	display: none;
}

	.white-card2 span.command {
		font-size: 14px;
		line-height: 14px;
		color: #FFB806;
	}

	.step-header {
	  display: flex;
	  align-items: start; /* függőlegesen felülre igazítja */
	  gap:20px;
	  margin-bottom:30px;
	}

	.step-title {
		font-size:26px;
		line-height:170%;
		width: 190px;
	}

    .step-circle {
		display: flex;
		justify-content: center;
		align-items: center;
	  text-align:center;
	  position: relative;
      display: inline-block;
      width: 44px;
      height: 44px;
      line-height: 44px;
      border-radius: 50%;
      border: 1px solid #41464F;
      background-color: #fbfbfb;
      color: #000;
      font-weight: bold;
	  margin-top:20px;
    }

	.step-circle span {
		font-size:18px;
	}

	.step-circle::before,
	.step-circle::after,
	.step-circle span::before,
	.step-circle span::after {
	  content: "";
	  position: absolute;
	  width: 12px;
	  height: 1px;
	  background: currentColor;
	}

	/* 45° */
	.step-circle::before {
	  top: -7px;
	  right: -9px;
	  transform: rotate(-45deg);
      color: #7C7D81;
	}
	/* 135° */
	.step-circle span::after {
	  bottom: -7px;
	  right: -9px;
	  transform: rotate(45deg);
      color: #7C7D81;
	}
	/* 225° */
	.step-circle::after {
	  bottom: -7px;
	  left: -9px;
	  transform: rotate(-45deg);
      color: #7C7D81;
	}
	/* 315° */
	.step-circle span::before {
	  top: -7px;
	  left: -9px;
	  transform: rotate(45deg);
      color: #7C7D81;
	}


	.popup {
		text-align: center;
	}
	.popup h1 {
		font-size: 60px;
		font-height: 120%;
		text-align: center;
	}

  .popup-container {
	text-align: left;
    display: flex;
    gap: 40px;
    margin: 40px auto 0px auto;
    padding: 0px;
  }

  .popup-column {
    line-height: 130%;
    flex: 1;
    padding: 20px 30px;
  }

  .popup-column h2 {
	font-size: 20px;
	font-weight:600;
	margin: 5px 0px;
  }

  .popup-column p {
	  margin: 0px;
  }

  .popup-column ul {
    margin: 10px 0 20px 20px;
  }

  .popup-column li {
    margin-bottom: 8px;
  }

  /* Overlay */
  .overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay-bg);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    padding: 20px;
  }

  .overlay.show { display: flex; }

  /* Modal box */
  .modal {
    width: min(905px, 100%);
    max-width: 905px;
	height: 410px;
    background: #101113F2;
    border-radius: 40px;
    position: relative;
    padding: 22px;
    box-sizing: border-box;
    border: 2px dotted #ccc;
    display: flex;
    gap: 20px;
    align-items: stretch;
    color: var(--text);
  }

  #modalClose {
      cursor: pointer;
	  width: 120px;
  }

  /* Modal layout: left logo, right text */
  .modal-left {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
  }

  .modal-left img {
    width: 160px;
    height: 160px;
    object-fit: contain;
  }

  .modal-right {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
	margin-top:30px;
	max-width: 520px;
  }

  .modal-right h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
	line-height: 150%;
    color: #fff;
  }

  .modal-right .content {
    color: #fff;
    font-size: 18px;
    line-height: 150%;
  }


@media (max-width: 1400px) {
.apps {
  width: 100%;
}
    img {
        max-width: 100%;
        height: auto;
    }

	header {
		width: 100%;
		min-width: 0px;
		padding: 0rem 1rem;
	}

    .box h3 {
	  line-height: 50px;
      font-size: 40px;
      font-weight: 500; /* Switzer Medium */
      margin: 0 0 1rem 0;
    }

    .container {
        width: 100% !important;
        max-width: none !important;
        min-width: 0px !important;
        padding: 15px;
        margin: 0;
    }

	.left-column {
		padding: 2rem;
	}
	.left-column p {
		width: 100%;
		max-width: 100% !important;
		font-size: 20px;
	}
	.left-column .dark-box {
		background-image: none;
		background-color: #000;
		border-radius: 20px;
		width: 100%;
		height: auto;
	}
	.left-column .dark-box p {
		padding-right: 40px; 
	}

	.right-columns {
		display: none;
	}

	.bottom-row-mobil {
		display: block;
	}

	.bottom-row-mobil .yellow-box {
		border-radius: 20px;
		width: 100%;
		height: auto;
		padding: 20px;
		margin: 20px 0px;
	}
	.bottom-row-mobil .yellow-box p {
		margin: 0px;
		padding: 0px;
	}

	.box5B {
		background-image: none;
		border: 1px solid #FFB806;
		padding: 2rem;
	}
	
	.text-and-images {
		display: block;
		width: 100%;
	}

	.image-buttons {
		padding: 2rem 0rem;
	}

	  .box4 {
		flex-direction: column;
		padding: 2rem;
	  }
	  .cols3 {
		padding: 30px 0px 0px 0px;
		flex-direction: column;
	  }
	  .cols3 h3 {
		font-size: 40px;
		line-height: 50px;
	  }

	.white-card2 {
		min-height: 100px;
	}

	.cols3 .column-star {
		display:none;
	}
	
	.box2 {
		flex-direction: column;
		background-image: none;
		background-color: #FFB806;
		padding: 2rem;
		height: auto;
		gap: 0px;
	}	
	.box2 .text-and-images {
		padding-left: 0px;
	}

	.banners {
		margin:0px;
		display:block;
		text-align:center;
		gap:0px;
	}
	.banners img {
		margin: 5px 10px;
	}
	
	.dash1 {
		max-width:100%;
		padding-top:0px;
		display:flex;
	}

  .box6 {
    height: auto;     /* ne legyen fix magasság */
    overflow: visible; /* mutassa a teljes képet */
  }

  .box6 {
    flex-direction: column;
	align-items: stretch; 
  }

  .box6 .column {
    width: 100%;
  }

  .box6 .col2 img {
    max-width: 100%;
    height: auto;
    display: block;
  }

	.hidden_content {
		width: 95%;
		margin: 20px auto;
		padding: 20px 0px;
	}

	.popup h1 {
		font-size: 40px;
	}

	.popup-container {
		gap: 5px;
		margin: 5px auto 0px auto;
		padding: 0px;
		display:block;
	}
	.popup-column ul {
		margin: 0px;
	}

	.box-start {
		display: block;
	}
	.video-guide {
		width:100%;
		padding:5px;
		border:none;
		height: 400px
	}

	.guide {
		padding: 0px;
	}
    .cols2 {
	  margin:0px auto;
      padding: 5px;
      background-image: none;
	  height: auto;
    }
	.cols2 .bridge {
		display: none;
	}
	.cols2 .columns {
		display: block;
		gap:0px;
	}
	.cols2 .column {
		width: 100%;
		margin: 10px 0px;
	}
	.cols2 .column img {
		display: none;
	}
	.cols2 .white-card2 {
		margin:0px !important;
		padding: 30px;
	}
	.cols2 .wc1 {
		min-height:10px;
	}
	.step-title {
		width: 80%;
		line-height: 85px;
	}
	#card5, #resources {
		display:none;
	}
	#card5-mobile {
		display:block;
	}

	.faq {
		width: 100%;
		margin: 0px;
		padding: 0px 15px;
	}

	.faq h1 {
		margin:0px;
	}
	
	#desktop-tier {
		display: none;
	}
	#mobil-tier {
		display: block;
	}

	.pricing-box {
		margin-bottom:10px;
	}

	.pricing-left {
	  min-width: 400px;
	}

	.pricing-left h3 {
		font-size: 40px;
	}

	.white-card ul {
		margin: 0px;
	}

	.footer {
		flex-direction: column;
		padding: 2rem;
		margin: 10px auto;
		width: 95%;
	}
}

@media (max-width: 768px) {

	header {
		height: auto;
	}

  .hamburger {
    display: block;
  }
  
  .hide-mobile {
		display: none !important;
		width: 0px;
  }

  .nav-menu {
    position: absolute;
    right: 0;
    background-color: #101113;
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 10px 20px;
	text-align: center;
  }

  .nav-menu.active {
    display: flex;
  }

	.footer-content {
		flex-direction: column;
	}

	.footer-left, .footer-right {
		width: 100%;
	}

	.footer-left {
		display:none;
	}
	.footer-right {
		padding-left: 0px;
	}

	.footer-mobil {
		display: block;
	}

    .plans-container {
      flex-direction: column;
    }

    .modal {
      flex-direction: column;
      padding: 30px;
	  height: auto;
    }
    .modal-left {
      flex: 0 0 auto;
    }
    .modal-left img {
      width: 120px;
      height: 120px;
    }
    .modal-right { margin-top: 0px }
    .modal-right h2 { font-size: 18px; }

}


/* Tablet styles (769px to 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
}

