*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--card-border: #d7e0ea;
	--text-primary: #142033;
	--text-muted: #66758a;
	--transition-standard: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	background:#fff url(../images/bg.jpg) center bottom no-repeat;
	background-attachment: fixed;
	background-size: cover;
	color: var(--text-primary);
	font-family: 'Roboto', sans-serif !important;
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
}

a {
	text-decoration: none;
	color: inherit;
}
.mob{display: none;}
.mob-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:#fff url(../images/bg.jpg) center center no-repeat;
	background-size: cover;
	z-index: -1;
	display: none;
}

.nav-lang {
	position: absolute;
	top: 20px;
	right: 30px;
	z-index: 999;
}
a.login-btn{
	display: inline-block;
	padding: 6px 15px;
	background: #000;
	color: #fff;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
	transition: transform 0.2s ease, background-color 0.2s ease;
	margin: 0 3px;
}

.lang-cont {
	display: inline-block;
	vertical-align: top;
	margin: 0 0 0 20px;
	text-align: left;
}

.lang-cont a#lang {
	display: inline-block;
	overflow: hidden;
}

.lang-cont a#lang img {
	width: 28px;
	height: auto;
}

.langDrp {
	position: absolute;
	top: 40px;
	right: 0;
	width: 148px;
	display: none;
	padding: 10px !important;
	z-index: 999999;
	border: 1px solid rgba(20, 32, 51, 0.08);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 18px 40px rgba(20, 32, 51, 0.14);
}

.langDrp a {
	display: inline-block;
	width: 100%;
	padding: 7px 10px;
	font-size: 14px;
	color: #000;
	text-transform: uppercase;
	border-radius: 5px;
	transition: var(--transition-standard);
}

.langDrp a img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
	width: 25px;
	height: auto;
}

.langDrp a:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.slider {
	position: relative;
	text-align: center;
}

.left-side {
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	width: 411px;
	text-align: center;
	z-index: 10;
}

.girl-cont img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.img-slider {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 363px;
	margin-left: 160px;
}

.img-slider img {
	position: absolute;
	top: 0;
	left: 0;
	width: 363px;
	height: auto;
	display: block;
	z-index: 0;
	opacity: 0;
}

.img-slider img:first-child {
	position: relative;
	opacity: 1;
}

.main-content {
	margin: 0 auto;
	padding: 30px 24px;
	text-align: center;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.platforms-section {
	max-width: 1280px;
	margin: 64px auto 40px;
}

.section-tagline {
	font-size: 52px;
	line-height: 1;
	text-align: center;
	margin-bottom: 24px;
	color: var(--text-primary);
}

.cta-subtitle {
	font-size: 28px;
	letter-spacing: 1px;
	color: #000;
}
.logo{
	display: block;
	margin: 0 auto 30px;
	width: 400px;
}
.logo img{
	width: 100%;
	height: auto;
}
.card-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.card {
	background-color: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 30px 24px;
	text-align: center;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px auto;
	border-radius: 50%;
	font-size: 24px;
	background: #eee;
	color: #000;
}


.card h3 {
	margin-bottom: 12px;
	font-size: 1.25rem;
	font-weight: 600;
	color: #1e293b;
}

.card p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #64748b;
}

.verification-container {
	display: flex;
	max-width: 1000px;
	width: 100%;
	overflow: hidden;
	margin: 60px auto;
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	background-color: #fff;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-section {
	flex: 1.2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 50px;
	border-right: 1px solid #e2e8f0;
	background: linear-gradient(135deg, #fff 0%, #e8e8e8 100%);
}

.badge-wrapper {
	margin-bottom: 24px;
}

.verified-badge {
	width: 90px;
	height: auto;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.hero-section h1 {
	margin-bottom: 16px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	color: #0f172a;
}

.highlight {
	color: #1993ed;
}

.tagline {
	margin-bottom: 30px;
	font-size: 1.1rem;
	font-weight: 600;
	color: #666;
}

.cta-button {
	display: inline-block;
	padding: 15px 40px;
	font-size: 24px;
	border-radius: 50px;
	background-color: #000;
	color: #fff;
	font-weight: 600;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-button:hover, a.login-btn:hover {
	transform: translateY(-2px);
}
.girl-cont{position: relative;}
.platforms-section .cta-button{
	margin-top: 30px;
}
.cta-button img{
	display: inline-block;
	vertical-align: top;
	width: 30px;
	height: auto;
	margin: -2px 0 0 10px;
}
.features-section {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 50px;
	text-align: left;
}

.features-section h2 {
	margin-bottom: 24px;
	font-size: 1.4rem;
	font-weight: 600;
	color: #334155;
}

.feature-list {
	list-style: none;
}

.feature-list li {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
	padding: 12px 16px;
	border: 1px solid #f1f5f9;
	border-radius: 12px;
	background-color: #f8fafc;
	transition: transform 0.2s ease, background-color 0.2s ease;
	text-align: left;
}

.feature-list li:hover {
	transform: translateX(5px);
	background-color: #f2f3f4;
}

.list-icon {
	width: 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 16px;
	border-radius: 8px;
	background-color: #f1f1f1;
	color: #333;
	font-size: 0.95rem;
}

.list-text {
	font-size: 1rem;
	font-weight: 500;
	color: #475569;
	text-align: left;
}

.site-footer {
	border-top: 1px solid rgba(20, 32, 51, 0.08);
	background-color: rgba(0, 0, 0, 0.82);
	padding: 32px 0;
	text-align: center;
	font-size: 14px;
	color: #fff;
}

.site-footer a {
	color: #fff;
	text-decoration: underline;
	transition: var(--transition-standard);
}

.site-footer a:hover {
	text-decoration: none;
}
@media (max-width: 1280px) {
	.img-slider{margin-left: 80px;}
	.cta-subtitle{font-size: 24px;}

	
}
 @media (max-width: 980px) {
	.section-tagline{font-size: 36px;}
	.left-side{width: 300px;}
	.img-slider{width: 265px;margin-left: 50px;}
	.img-slider img{width: 100%;}
	.hero-section{padding: 30px;}
	.hero-section h1{font-size: 22px;}
	.cta-button{padding: 15px 30px;font-size: 20px;}
	.cta-button img{width: 26px;}
}

@media (max-width: 680px) {
	body {
		background-image: none;
	}
	.mob{display: block;}
	.desk{display: none;}
	.lang-cont{margin-left: 10px;}
	.nav-lang{right: 15px;}
	.mob-bg {
		display: block;
	}

	.left-side {
		width: 86%;
		margin: 0 auto -20px;
	}

	.img-slider {
		width: 90%;
		margin-left: 0;
	}

	.img-slider img {
		width: 100%;
	}
	.platforms-section{margin: 10px auto 40px;}

	.section-tagline {
		font-size: 6.5vw;
		line-height: 7.5vw;
		margin: 0 10% 20px;
	}

	.cta-subtitle {
		font-size: 5vw;
	}

	.site-footer {
		padding: 30px 20px 30px;
	}

	.verification-container {
		flex-direction: column;
		margin: 40px 0 10px;
	}

	.hero-section {
		padding: 20px;
		align-items: center;
		text-align: center;
		border-right: none;
		border-bottom: 1px solid #e2e8f0;
	}

	.hero-section h1 {
		text-align: center;
		font-size: 5.5vw;
		line-height: 6.5vw;
		margin-bottom: 10px;
	}

	.features-section {
		padding: 40px 30px;
	
	}
	.features-section h2{text-align: center;}
	body.lang-de .hero-section .cta-button{font-size:18px;}
	.platforms-section.mob{
		text-align: center;
		background: rgba(255, 255, 255, 0.5);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
		padding: 60px 35px 40px;
		margin: 0;
	}
	.girl-cont.mob{
		background:#fff url(../images/bg.jpg) center bottom no-repeat;
		background-size: cover;
		margin: 40px -24px 0;
	}
	
	
} 
@media (max-width: 380px) {
	body.lang-de .platforms-section .cta-button{font-size:18px;}
	.hero-section .cta-button{font-size:16px;}
	.hero-section .cta-button img{width: 22px;}
}
/* iOS Safari does not handle fixed background attachment reliably. */
@supports (-webkit-touch-callout: none) {
	body,
	.mob-bg {
		background-attachment: scroll;
	}
}
