/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
}

/* Tło gradientowe premium */
body {
	background: linear-gradient(135deg, #1f1a33, #362d57, #4c417d);
	color: #fff;
	overflow-x: hidden;
}

/* HERO SECTION */
.hero-section {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	text-align: center;
}

.card {
	max-width: 480px;
	width: 100%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	padding: 40px 30px;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
	animation: fadeIn 1.5s ease forwards;
}

.logo {
	width: 140px;
	margin-bottom: 20px;
}

h1 {
	font-size: 1.9rem;
	font-weight: 800;
	margin-bottom: 15px;
}

h1 span {
	color: #ffb347;
}

.subtitle {
	font-size: 1rem;
	line-height: 1.6;
	font-weight: 300;
	margin-bottom: 28px;
}

.form input {
	width: 100%;
	padding: 14px;
	margin-bottom: 14px;
	border-radius: 10px;
	border: none;
	font-size: 1rem;
	outline: none;
}

.form input:focus {
	box-shadow: 0 0 0 2px #ffb347;
}

.policy {
	font-size: 0.85rem;
	margin-bottom: 20px;
	display: block;
	text-align: left;
	color: #eee;
}

.policy input {
	margin-right: 6px;
}

.policy a {
	color: #ffb347;
}

.btn {
	width: 100%;
	padding: 16px;
	font-size: 1.1rem;
	font-weight: 700;
	background: #ff8f1f;
	border: none;
	border-radius: 12px;
	color: #fff;
	cursor: pointer;
	transition: 0.25s;
}

.btn:hover {
	background: #d77417;
	transform: translateY(-2px);
}

/* BENEFITS SECTION */
.benefits-section {
	padding: 60px 20px;
	text-align: center;
	background: #f7f7fa;
	color: #333;
}

.benefits-section h2 {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 35px;
}

.benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 25px;
	max-width: 900px;
	margin: 0 auto;
}

.benefit {
	background: #fff;
	padding: 25px;
	border-radius: 14px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	transition: 0.25s;
}

.benefit:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.icon {
	font-size: 42px;
	margin-bottom: 15px;
}

.benefit h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.benefit p {
	font-size: 0.95rem;
	line-height: 1.5;
	color: #555;
}

.btn-secondary {
	display: inline-block;
	margin-top: 40px;
	padding: 14px 26px;
	background: #362d57;
	color: white;
	font-weight: 700;
	border-radius: 10px;
	text-decoration: none;
	transition: 0.25s;
}

.btn-secondary:hover {
	background: #241e3a;
}

/* FOOTER */
.footer {
	padding: 20px;
	text-align: center;
	font-size: 0.8rem;
	color: #ddd;
}

.footer a {
	color: #ffb347;
}

/* ANIMATIONS */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.animate-fade { animation: fadeIn 1s ease forwards; }
.animate-fade-delay { animation: fadeIn 1.4s ease forwards; }
.animate-fade-delay2 { animation: fadeIn 1.8s ease forwards; }

.animate-up {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards;
}

.animate-up-delay {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1.3s ease forwards;
}

.animate-up-delay2 {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1.6s ease forwards;
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}
