@charset "utf-8";
/* CSS Document */


/* FLOATING TEXT CARDS */
.float-card {
	position: absolute;
	background: rgba(255, 255, 255, .85);
	backdrop-filter: blur(14px);
	border-radius: 28px;
	padding: 24px;
	width: 260px;
	box-shadow: 0 20px 40px rgba(180, 120, 220, .12);
	animation: floatMini 5s ease-in-out infinite;
	z-index: 10;
}

.float-card h4 {
	font-size: 24px;
	margin-bottom: 12px;
}

.float-card p {
	color: #666;
	line-height: 1.8;
	font-size: 15px;
}

.card-a {
	top: 40px;
	left: -70px;
}

.card-b {
	right: -30px;
	bottom: 60px;
	animation-delay: 1s;
}

/* Trust */
.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 42px;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #666;
}

.trust-item i {
	color: #e648b7;
}



/* =========================
   SECTION TITLE
   ========================= */
.section-title {
	text-align: center;
	margin-bottom: 70px;
}

.section-title h2 {
	font-size: 62px;
	margin-bottom: 18px;
}

.section-title h2 span {
	background:
		linear-gradient(135deg,
			#ff4ca7,
			#b03fe1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-title p {
	font-size: 18px;
	color: #777;
}

/* =========================
   TIMELINE
   ========================= */
.timeline {
	padding: 100px 0;
}

.timeline-row {
	grid-template-columns: repeat(5, 1fr);
}

.timeline-row::before {
	content: "";
	position: absolute;
	left: 5%;
	top: 45px;
	width: 90%;
	height: 3px;
	background:
		linear-gradient(90deg,
			#ff4ca7,
			#b03fe1);
	opacity: .2;
}

.step {
	position: relative;
	z-index: 3;
	text-align: center;
}

.step-number {
	width: 92px;
	height: 92px;
	border-radius: 50%;
	margin: auto auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 3px solid #f3d3ea;
	font-size: 28px;
	font-weight: 700;
	color: #e648b7;
	box-shadow:
		0 14px 30px rgba(180, 120, 220, .08);
}

.step h3 {
	font-size: 24px;
	margin-bottom: 16px;
}

.step p {
	color: #666;
	line-height: 1.9;
	font-size: 15px;
}

.broschure-card {
	max-width: 1440px;
	width: 92%;
	margin: 0 auto 100px;
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 60px;
	align-items: center;
}

.broschure-content {
	padding: 20px;
}

.broschure-icon {
	font-size: 3rem;
	margin-bottom: 20px;
}

.broschure-icon i {
	color: #e946b7;
}

.broschure-content h2 {
	font-size: clamp(2rem, 2vw, 4rem);
	line-height: 1.1;
	color: #101833;
	margin-bottom: 25px;
}

.divider {
	width: 90px;
	height: 5px;
	background: #e946b7;
	border-radius: 50px;
	margin-bottom: 30px;
}

.broschure-content p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #5d6478;
}

.broschure-image {
	overflow: hidden;
	border-radius: 40px;
	box-shadow:
		0 25px 60px rgba(0, 0, 0, .08);
}

.broschure-image img {
	width: 100%;
	display: block;
	transition: .5s ease;
}

.broschure-image:hover img {
	transform: scale(1.04);
}

.fade-up {
	opacity: 0;
	transform: translateY(60px);
	transition:
		opacity .8s ease,
		transform .8s ease;
}

.fade-up.show {
	opacity: 1;
	transform: translateY(0);
}


/* =========================
   CTA
   ========================= */
.cta {
	padding-bottom: 120px;
}

.cta-box {
	background:
		linear-gradient(135deg,
			#ff4ca7,
			#b03fe1,
			#7d43ff);
}