@charset "utf-8";

/* CSS Document */
/* =========================
RESET
========================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	background: #f8f6fb;
	color: #1f2235;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
}

/* =========================
HERO
========================= */
.checklist-hero {
	padding: 160px 0 90px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: url(../img/checkliste/header-checkliste-.png) no-repeat;
	background-size: cover;
}

.checklist-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:radial-gradient(circle at top right,	rgba(255, 90, 220, .10),transparent 35%);
	pointer-events: none;
}

.hero-label {
	display: inline-flex;
	padding: 10px 18px;
	border-radius: 40px;
	background: #f1e8ff;
	color: #9d46e7;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 28px;
}

.hero-content {
    width:min(1440px,92%);
    margin:auto;
}

.hero-content h1 {
	font-size: 56px;
	line-height: 1.05;
	margin-bottom: 28px;
}

.hero-content h1 span {
	background:	linear-gradient(135deg,	#ff4ca7,#b03fe1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-content p {
	color: #666;
	font-size: 20px;
	line-height: 2;
	max-width: 650px;
	margin-bottom: 45px;
}

/* FEATURES */
.hero-features {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}

.hero-feature {
	display: flex;
	align-items: center;
	gap: 14px;
}

.hero-feature i {
	width: 54px;
	height: 54px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #e94ab9;
	font-size: 20px;
	box-shadow:	0 10px 25px rgba(200, 120, 220, .10);
}

.hero-feature span {
	font-weight: 600;
}

/* HERO VISUAL */
.hero-visual {
	position: relative;
}

.clipboard-list div {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 17px;
}

.clipboard-list i {
	color: #ff4ca7;
}

.floating-box {
	position: absolute;
	width: 90px;
	height: 90px;
	border-radius: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	box-shadow:	0 20px 40px rgba(180, 120, 220, .12);
	color: #b03fe1;
	font-size: 34px;
	animation: floatIcon 5s ease-in-out infinite;
}

.float-1 {
	top: 20px;
	left: -40px;
}

.float-2 {
	top: 180px;
	right: -40px;
	animation-delay: 1s;
}

.float-3 {
	bottom: 30px;
	left: 20px;
	animation-delay: 2s;
}

/* =========================
SUPPORT BOX
========================= */
.support-box {
	margin: 80px 7% 80px;
	padding: 34px 40px;
	border-radius: 34px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	box-shadow:	0 12px 35px rgba(180, 120, 220, .08);
}

.support-left {
	display: flex;
	align-items: center;
	gap: 24px;
}

.support-icon {
	width: 72px;
	height: 72px;
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:	linear-gradient(135deg,	#ff4ca7,#b03fe1);
	color: #fff;
	font-size: 28px;
}

.support-content h3 {
	font-size: 30px;
	margin-bottom: 10px;
}

.support-content p {
	color: #666;
	line-height: 1.8;
}

.support-btn {
	height: 62px;
	padding: 0 34px;
	border-radius: 20px;
	border: 2px solid #efb4dd;
	color: #e94ab9;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: .35s ease;
}

.support-btn:hover {
	background:	linear-gradient(135deg,	#ff4ca7,#b03fe1);
	color: #fff;
	transform: translateY(-4px);
}

/* =========================
TITLE
========================= */
.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 48px;
	margin-bottom: 18px;
}

.section-title span {
	background:	linear-gradient(135deg,	#ff4ca7,#b03fe1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-title p {
	color: #777;
	font-size: 18px;
}

/* =========================
GRID
========================= */
.checklist-section {
	padding: 0 7% 90px;
}

.checklist-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.check-card {
	position: relative;
	background: #fff;
	border-radius: 30px;
	padding: 34px;
	box-shadow:	0 12px 35px rgba(180, 120, 220, .08);
	transition: .4s ease;
	overflow: hidden;
}

.check-card:hover {
	transform: translateY(-10px);
	box-shadow:0 20px 50px rgba(180, 120, 220, .14);
}

.check-icon {
	width: 84px;
	height: 84px;
	border-radius: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:	linear-gradient(180deg,	#fff,#f9ecff);
	color: #d84bc0;
	font-size: 34px;
	margin-bottom: 28px;
}

.check-card h3 {
	font-size: 26px;
	margin-bottom: 20px;
}

.check-card ul {
	padding-left: 18px;
}

.check-card li {
	margin-bottom: 12px;
	line-height: 1.8;
	color: #666;
}

.checkbox {
	position: absolute;
	top: 26px;
	right: 26px;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	border: 2px solid #ead6f8;
	cursor: pointer;
	transition: .3s ease;
}

.checkbox.active {
	background:	linear-gradient(135deg,	#ff4ca7,#b03fe1);
	border-color: transparent;
}

/* =========================
UPLOAD
========================= */
.upload-section {
	padding: 0 7% 90px;
}

.upload-box {
	background: #fff;
	border-radius: 34px;
	padding: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	box-shadow:	0 12px 35px rgba(180, 120, 220, .08);
}

.upload-left {
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

.upload-icon {
	width: 90px;
	height: 90px;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:linear-gradient(135deg,#ff4ca7,#b03fe1);
	color: #fff;
	font-size: 34px;
}

.upload-content h3 {
	font-size: 34px;
	margin-bottom: 18px;
}

.upload-content p {
	color: #666;
	line-height: 2;
}

.dropzone {
	border: 3px dashed #f2b3df;
	border-radius: 30px;
	padding: 50px 40px;
	text-align: center;
	transition: .35s ease;
}

.dropzone.dragover {
	background: #fff1fa;
}

.dropzone i {
	font-size: 52px;
	color: #ff4ca7;
	margin-bottom: 24px;
}

.dropzone h4 {
	font-size: 28px;
	margin-bottom: 14px;
}

.dropzone p {
	color: #777;
	line-height: 1.8;
	margin-bottom: 28px;
}

.upload-buttons {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}

.upload-btn {
	height: 58px;
	padding: 0 30px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	transition: .35s ease;
}

.primary-btn {
	background:	linear-gradient(135deg,	#ff4ca7,#b03fe1);
	color: #fff;
	cursor: pointer;
}

.secondary-btn {
	border: 2px solid #efb4dd;
	color: #e94ab9;
}

.upload-btn:hover {
	transform: translateY(-4px);
}

/* =========================
FOOTER CARD
========================= */
.tip-section {
	padding: 0 7% 120px;
}

.tip-card {
	border-radius: 36px;
	overflow: hidden;
	background:	linear-gradient(135deg,	#c056ff,#ff4ca7);
	color: #fff;
	display: grid;
	grid-template-columns: 120px 1fr 220px;
	gap: 40px;
	align-items: center;
	padding: 40px;
	box-shadow:	0 25px 60px rgba(180, 80, 220, .18);
}

.tip-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	border: 5px solid rgba(255, 255, 255, .25);
}

.tip-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tip-content h3 {
	font-size: 34px;
	margin-bottom: 18px;
}

.tip-content p {
	line-height: 2;
	opacity: .92;
}

.tip-heart {
	text-align: center;
}

.tip-heart i {
	font-size: 74px;
	margin-bottom: 18px;
}

.tip-heart h4 {
	font-size: 44px;
	margin-bottom: 10px;
}

/* =========================
ANIMATION
========================= */
@keyframes floatCard {
	0% {transform: rotate(4deg) translateY(0px);}
	50% {transform: rotate(4deg) translateY(-12px);}
	100% {transform: rotate(4deg) translateY(0px);}
}

@keyframes floatIcon {
	0% {transform: translateY(0px);}
	50% {transform: translateY(-10px);}
	100% {transform: translateY(0px);}
}

/* =========================
RESPONSIVE
========================= */
@media(max-width:1300px) {
	.checklist-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width:1100px) {

	.checklist-hero,
	.upload-box,
	.tip-card {
		grid-template-columns: 1fr;
	}
}

@media(max-width:800px) {
	.checklist-grid {
		grid-template-columns: 1fr;
	}

	.hero-content h1 {
		font-size: 52px;
	}

	.section-title h2 {
		font-size: 44px;
	}

	.support-box {
		flex-direction: column;
		align-items: flex-start;
	}
}