@charset "utf-8";
/* CSS Document */

/* =========================
HERO
========================= */

.hero {
		padding-top: 150px;
		padding-bottom: 120px;
		overflow: hidden;
}

/* =========================
FEATURES
========================= */

.mini-features {
	display: flex;
	gap: 26px;
	flex-wrap: wrap;
	margin-top: 42px;
}

.mini-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #666;
}

.mini-item i {
	color: #ff3f9f;
}

/* =========================
PHONE
========================= */

.phone-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.phone {
	width: 600px;
	filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .18));
	animation: floatPhone 6s ease-in-out infinite;
	border-radius: 40px;
}

.social-icons {
	position: absolute;
	top: 10px;
	right: 0;
	display: flex;
	gap: 14px;
}

.social-icons div {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
	animation: floatIcon 4s ease infinite;
}

.social-icons div:nth-child(2) {
	animation-delay: 1s;
}

.social-icons div:nth-child(3) {
	animation-delay: 2s;
}

/*.instagram {
	color: #ff3f9f;
	z-index: 3;
}

.facebook {
	color: #1877f2;
	z-index: 4;
}

.linkedin {
	color: #0a66c2;
	z-index: 5;
}*/

/* =========================
FLOATING CARDS
========================= */

.floating-card {
	position: absolute;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(10px);
	padding: 20px 26px;
	border-radius: 24px;
	box-shadow: 0 18px 45px rgba(180, 120, 220, .18);
	animation: floatCard 5s ease infinite;
}

.floating-card strong {
	display: block;
	font-size: 42px;
	line-height: 1;
	margin-bottom: 6px;
	color: #ff3f9f;
}

.floating-card span {
	font-size: 15px;
	color: #666;
}

.card1 {
	top: 90px;
	left: -30px;
}

.card2 {
	top: 230px;
	left: 20px;
	animation-delay: 1.5s;
}

.card3 {
	bottom: -20px;
	left: 60px;
	animation-delay: 2.5s;
}



/* =========================
SECTIONS
========================= */

.section {
	padding: 110px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 70px;
}

.section-title h2 {
	font-size: 64px;
	line-height: 1.1;
	margin-bottom: 18px;
}

.section-title span {
	background: linear-gradient(135deg, #ff3f9f, #c93fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-title p {
	font-size: 19px;
	line-height: 1.9;
	color: #666;
	max-width: 800px;
	margin: auto;
}