body {
	background: white !important;
    color: #18316d;
    display: flex;
    flex-direction: column;
    gap: 30px;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
.wallet-buttons-container {
	display: flex;
	justify-content: space-between;
}
.wallet-buttons-container img {
	width: 120px;
	height: auto;
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}
.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }

.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 66%;
}
.container p {
	font-weight: 500;
}
main {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
main > * + * {
	margin-bottom: 30px;
}
.half { flex: 1; }

.swiper-container {
	width: 100%;
	max-width: 1440px;
	margin: 2rem auto;
	padding: 0 20px;
}
.swiper-slide {
	border-radius: 25px;
	transition: all 0.4s ease;
	overflow: visible;
}
.swiper-slide-active {
	z-index: 2;
}
.swiper-slide img {

	height: auto;
	max-height: 659px;
	object-fit: cover;
	transition: transform 0.3s ease;
	border-radius: 25px;
}
.swiper-slide:hover img {
	transform: scale(1.01);
}
.left {
	display: flex;
    align-items: center;
	justify-content: center;
	border-radius: 15px;
	flex-direction: column;
	text-align: center;
}
.right {
	text-align: center;
	align-items: center;
	justify-content: space-between;
	font-weight: 300;
	gap: 20px;
    display: flex;
	flex-direction: column;
	padding: 20px;
}
.section-title {
	font-weight: bold;
	font-size: clamp(18px, 5vw, 45px);
	color: #121D45;
	line-height: clamp(22px, 5vw, 45px); 
}
.section-subtitle {
    font-weight: 300;
    font-size: 25px;
	text-align: center;
}
.faq-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.faq-item {
	background: #FFFFFF;
	box-shadow: 0px 0px 6px #00000041;
	border: 1px solid #C7D2E6;
	border-radius: 30px;
	color: #111C43;
	padding: 15px 20px;
	transition: background-color 0.3s ease;
	cursor: pointer;
}
.faq {
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin-bottom: 20px;
	padding-bottom: 20px;
	gap: 15px;
	width: 66%;
	max-width: 900px;
}
.faq-question {
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: right;
	font-size: clamp(14px, 4vw, 18px);
	padding: 5px 0;
}
.faq-icon {
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}
.faq-item.open .faq-icon {
	transform: rotate(135deg);
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s ease, opacity 0.4s ease;
	font-size: clamp(14px, 4vw, 18px);
	font-weight: 300;
	color: #111C43;
	margin-top: 0;
	padding-top: 0;
}
.faq-item.open .faq-answer {
	opacity: 1;
}
.text-center {
	text-align: center;
}
.hero-title {
  text-align: center;
  color: #111C43;
}

.hero-title .step-time {
  font-size: 2rem;
  font-weight: 500;
  line-height: 24px;
}

.hero-title .main-highlight {
  font-size: 3rem;
  font-weight: 700;
  line-height: 26px;
  display: block;
  margin: 10px 0;
}

.hero-title .description {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 12px;
}

.right-left-container {
	display:flex;
	flex-direction: row; 
	justify-content: space-between;
	gap: 106px;
}
.contact-title {
    font-size: 28px;
    color: #1a2a5c;
    margin-bottom: 20px;
}
.contact-content {
    display: flex;
    justify-content: space-between;
}
.whatsapp-section {
    text-align: center;
}
.whatsapp-section h3 {
	font-size: 25px;
    margin-bottom: 35px;
}
.phone-number {
    font-size: 20px;
    color: #19285F;
    margin: 10px 0;
	direction: ltr;
}
.working-hours {
    color: #666;
    font-size: 14px;
}
.contact-form {
    width: 300px;
    padding: 20px;
}
.contact-form form {
    display: flex;
    flex-direction: column;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
	font-weight: 200;
	color: #19285F;
}
.contact-form input,
.contact-form textarea {
	background-color: #E4E8F8;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    direction: rtl;
}
.contact-form textarea {
    height: 80px;
    resize: none;
}
.contact-form button {
    background-color: #111C43;
    color: white;
    font-size: 18px;
    padding: 12px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.contact-form button:hover,
.contact-form button:focus {
	background-color: #2d55c7;
	box-shadow: 0 0 10px rgba(33, 65, 142, 0.5);
	transform: scale(1.03);
	outline: none;
}
.right .button-container p {
	text-align: center;
}
.button-container {
	width: 100%;
	display: flex;
	flex-direction: column;
}
.button-container a {
	font-weight: 600;
	text-shadow: 0px 3px 6px #00000029;
	letter-spacing: 0px;
	border-radius: 30px;
	background-color: #111C43;
	color: white;
	font-size: 21px;
	cursor: pointer;
	border: none;
	padding: 10px 20px;
	text-decoration: none;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.button-container p {
	font-weight: 400;
	font-size: 20px;
}
.button-container a:hover,
.button-container a:focus {
	background-color: #2d55c7;
	box-shadow: 0 0 10px rgba(33, 65, 142, 0.5);
	transform: scale(1.03);
	outline: none;
}
.image-side img {
	display: block;
	aspect-ratio: 429 / 2106;
	width: 100%;
	height: auto;
}
.step1-iphone {
    width: 550px;
    aspect-ratio: 649 / 857;
    background-image: url(../images/step1/HandDesk.webp);
    background-size: cover;
    background-position: center;
}
.bg-grey{ background-color: #EBEBEB ; width: 100%; }
.bg-white { background-color: #FFFFFF; }
.layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
  direction: rtl;
  max-width: 100%;
}
.example-container {
	width: 66%;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding-bottom: 15px;
	border-radius: 28px;
	padding-top: 20px;
	gap: 20px;
}
.example-container h2 { width: 66%; }
.example-container a {
    font-weight: 600;
    text-shadow: 0px 3px 6px #00000029;
    letter-spacing: 0px;
    border-radius: 30px;
	background-color: #111C43;
	box-shadow: 0px 0px 5px #1F3274;
    color: white;
    font-size: 25px;
	line-height: 26px;;
    cursor: pointer;
    border: none;
	text-decoration: none;
	padding: 10px 20px;
	transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.example-container a:hover,
.example-container a:focus {
	background-color: #2d55c7;
	box-shadow: 0 0 10px rgba(33, 65, 142, 0.5);
	transform: scale(1.03);
	outline: none;
}
.button-container {
	gap: 0 !important;
}
.notes-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  direction: ltr;
}
.note {
  display: flex;
  align-items: center;
  gap: 10px;
}
.note-text {
  font-size: 23px;
  font-weight: 200;
  text-align: left;
}
.arrow-left {
  width: 24px;
  height: 24px;
  background-image: url('../images/step1/arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.live-example {
    width: 100%;
    display: flex;
	flex-direction: column;
    justify-content: center;
    padding: 20px;
	align-items: center;
	gap: 15px;
}
.networking-section {
	width: 66%;
	padding: 30px;
	border-radius: 20px;
}
.text-area { flex: 1; }
.content-wrapper {
	display: flex;
	gap: 30px;
}
.small-box {
	flex: 1;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 28px;
	padding: 20px;
}
.small-box video {
	max-width: 300px;
}
.trust-title-button-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.trust-section {
	border-radius: 24px;
	width: 66%;
	padding: 30px;
}
.trust-content {
	display: flex;
	gap: 20px;
}
.trust-box {
	border-radius: 15px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.bg-trust-box {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 10px;
}
.bg-trust-box video { max-width: 300px; }
.card-content {
	margin-top: 10px;
}
.cta-button {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 5px #9A9A9A;
    border-radius: 8px;
    color: #121D45;
    padding: 12px 24px;
    margin: 20px 0;
    border: none;
    font-size: clamp(14px, 4vw, 18px);
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
	text-decoration: none;
}
.cta-button:hover, 
.cta-button:focus {
	background-color: #f0f0f0;
	box-shadow: 0px 0px 10px #9A9A9A;
}
.trust-box p {
	font-size: clamp(1rem, 1.2vw, 1.125rem);
	line-height: clamp(1.5rem, 2.5vw, 1.8rem);
}
.text-area p {
	font-size: clamp(1rem, 1.2vw, 1.125rem);
	line-height: clamp(1.5rem, 2.5vw, 1.8rem);
}
.connect-pixel-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.connect-pixel-content {
	width: 66%;
	padding: 40px 0px;
}
.box-container {
	display: flex;
	justify-content: center;
	gap: 20px;
}
.lead-management { padding: 20px; }
.lead-management p {
	font-size: 20px;
	font-weight: 500;
	color: #000000;
	text-align: center;
}
.lead-management img {
	width: 100%;
	height: auto;
	border-radius: 12px;
}
.box {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 28px;
	width: 100%;
	padding: 20px;
	gap: 0;
	display: grid;
	grid-template-columns: 1fr 2px 1fr;
	align-items: stretch;
}
.row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 20px 0px;
}
.icons-row {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.integration-options {
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.integration-options ul {
	list-style: none;
	padding: 0;
}
.integration-options li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 500;
	color: #000000;
	letter-spacing: 0px;
}
.integration-options img {
	width: 40px;
	margin-left: 10px;
}
.divider {
	background-color: #ddd;
	width: 2px;
	height: 100%;
}
.stats-container {
	display: flex;
	justify-content: center;
	gap: clamp(20px, 5vw, 60px);
	flex-wrap: wrap;
	text-align: center;
	padding: 20px 20px;
	width:66%;
}
.stat-item {
	opacity: 1;
	flex: 1;
}
.stat-number {
	font-size: clamp(18px, 8vw, 36px);
	font-weight: bold;
	color: #111C43;
}
.stat-label {
	font-size: 14px;
    color: #111C43;
    font-weight: 500;
    line-height: 14px;
}
.title-container {
	margin: 0px 100px 20px;
    line-height: 1;
}
.customers-review {
	width: 66%;
	border-radius: 28px;
	padding: 20px 0;
	overflow: hidden;
	direction: rtl;
}
.reviews-track {
	display: flex;
	width: max-content;
	animation: scrollReviews 40s linear infinite;
	gap: 20px;
}
.review-card {
	flex: 0 0 300px;
	background-color: #ffffff;
	border-radius: 28px;
	box-shadow: 0px 3px 6px #0000005D;
	padding: 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.review-text {
	font-size: 16px;
	line-height: 1.6;
	font-weight: 600;
	color: #19285F;
	margin-bottom: 20px;
}
.review-author {
	font-size: 20px;
	line-height: 1.2;
	font-weight: 300;
	color: #19285F;
}
#main-header.scrolled {
	background-color: #fff;
	transition: background-color 0.3s ease;
}
.badge-link {
  display: inline-flex;
  flex: none;
  width: max-content;
  padding: 6px 14px;
  border: 2px solid #6ec9ff;
  border-radius: 20px;
  font-size: 16px;
  color: #6ec9ff;
  text-decoration: none;
  cursor: default;
  align-self: flex-start;
}
.badge-link-container {
	width:100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
@keyframes scrollReviews {
	0% {
	  transform: translateX(0);
	}
	100% {
	  transform: translateX(50%);
	}
}
@media (max-width: 1200px) {
	.hero-title {
		padding-top: 80px;
		padding-bottom: 25px;
	}
	.review-card {
		flex: 0 0 180px;
		padding: 5px;
	}
	.trust-box { gap: 0; }
	.box { grid-template-columns: 1fr; }
	.integration-options img { width: 30px; }

	header { background: none;}
	body {
		background: transparent linear-gradient(175deg, #FDFEFF 0%, #D1DAF7 0%, #FFFFFF 75%, #FFFFFF 100%) 0% 0% no-repeat padding-box !important;
	}
	.cta-button {
		display: none;
        padding: 10px 20px;
    }
	.trust-content {
		flex-direction: column;
    }
	.networking-section .content-wrapper .left-box {
		display: none;
	}
	.networking-section {
		padding: 25px 30px;
	}
	.content-wrapper { 
		flex-direction: column-reverse;
		gap: 0;
	}
	.networking-section { width: 90%;}
	.trust-section { 
		width: 90%;
		padding: 25px 30px;
	}
	.stats-container { width: 90%; }
	.example-container { width: 90%; }
	.customers-review { width: 90%; }
	.connect-pixel-content { 
		width: 90%;
		padding: 20px;
	}
	.title-container { margin: 0; }
	.integration-options li { font-size: 15px; }
	.integration-options { padding: 0; }
	.lead-management { padding: 5px 0; }
	.divider {
		height: 1px;
		width: 100%;
	}
	.lead-management p { 
		font-size: 15px;
		font-weight: 500;
		margin-bottom: 6px;
	}
	.stat-label {
		font-size: 10px;
		line-height: 10px;
	}
	.image-side {
		display: flex;
		align-items: center;
		justify-content: center;	
	}
	.image-side img {
		width: 80%;
		height: auto;
	}
	.example-container a {
		font-size: 23px;
	}
	main {
		gap: 0;
		padding: 0;
	}
	.connect-pixel-content h2 {
		margin-bottom: 5px;
        font-size: 25px;
        line-height: 25px;
	}
	.example-container h2 {         
        font-size: 18px;
        line-height: 17px;
        width: 80%;
	}
	.section-title {
		/*margin-top: 20px;*/
        margin-bottom: 5px;
        font-size: 31px;
        line-height: 31px;
	}
	.section-subtitle {
		font-size: 17px;
	}
	.right .title {
		font-size: 41px;
		line-height: 35px;
	}
	.right {
		gap: 30px;
	}
	.half {
		min-width: 100%;
	}
	.notes-side {
		display: none;
	}
	.layout {
		padding: 0;
	}
	.contact-content {
        flex-direction: column;
    }
    .whatsapp-section {
        width: 100%;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .contact-form {
        width: 100%;
		border-left: none;
    }
	.right-left-container { display: block; }
	.contact-container {
		margin-right: 25px;
		margin-left: 25px;
		width: 80%;
	}
	.contact-separator { display: none; }
	.info-container { grid-template-columns: 1fr; }
	.info-row {
		display: flex;
		flex-direction: column;
		gap: 24px;
	}
	.faq { width: 80%; }
	.container { 
		width: 100%;
		gap: 35px;
	}
	.step1-iphone {
		width: 390px;
		aspect-ratio: 1293 / 858;
		background-image: url(../images/step1/HandMobile.webp);
		background-size: cover;
		background-position: center;
	}
}
@media (min-width: 1200px) {
	body {  padding-top: 50px; }
	.upper {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}
	.hero-title {
		text-align: right;
	}
	.right { 
		text-align: right;
	}
	.wallet-buttons-container { 
		flex-direction: row;
	}
  .info-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 24px;
  } 
  .text-area {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
  }
  .connect-pixel-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
  }
  .connect-pixel-text{
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-right: 5%;
  }
}
img {
  max-width: 100%;
  height: auto;
}
.seperat-note {
	border-left: 2px solid #19285f6e;
	margin-left: 10px;
	width: 0;
}
.contact-separator {
    border: 1px solid #19285F;
}
.checkbox-wrapper {
	display: flex;
	gap: 8px;
	direction: rtl;
	font-size: 14px;
	line-height: 1.4;
	direction: rtl;
	font-size: 14px;
	align-items: center;
    justify-content: center;
}
.checkbox-wrapper input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #007bff;
}
.whatsapp-icon img {
    width: 80px;
    height: 80px;
}
.whatsapp-icon a {
	margin-top: 5px;
	transition: transform 0.2s;
	display: inline-block;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
}
.whatsapp-icon a:hover,
.whatsapp-icon a:focus {
  transform: scale(1.05);
  outline: none;
}
.h2-tip {
  font-weight: 400;
  font-size: clamp(14px, 3vw, 20px);
  line-height: clamp(18px, 3.5vw, 26px);
}
.section-title .light {
  font-weight: 400;
}