/* ===== Terms & Conditions — Clean Simple Layout ===== */

/* Hero */
.terms-hero {
	position: relative;
	padding: 160px 40px 70px;
	text-align: center;
	overflow: hidden;
	background: linear-gradient(160deg, #0a1628 0%, #132044 40%, #1a3a7a 100%);
	width: 100%;
	max-width: 1280px;
}

.terms-hero::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -120px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(21, 93, 252, 0.12);
	filter: blur(80px);
	pointer-events: none;
}

.terms-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.06;
	pointer-events: none;
}

.terms-hero-content {
	position: relative;
	z-index: 1;
	max-width: 660px;
	margin: 0 auto;
}

.terms-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 100px;
	padding: 8px 20px;
	margin-bottom: 24px;
}

.terms-hero-badge span {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
}

.terms-hero-badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #60a5fa;
}

.terms-hero-title {
	font-family: 'Manrope', sans-serif;
	font-size: 46px;
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 16px;
}

.terms-hero-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 17px;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.7;
	max-width: 480px;
	margin: 0 auto;
}

/* Content wrapper */
.terms-wrap {
    max-width: 1280px;
    text-align: left;
    padding: 56px 32px 80px;
}
/* Date pill */
.terms-date {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #155dfc;
	background: #eff4ff;
	padding: 7px 18px;
	border-radius: 100px;
	margin-bottom: 28px;
}

/* Intro paragraph */
.terms-intro {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #334155;
	line-height: 1.8;
	margin-bottom: 48px;
	padding-bottom: 40px;
	border-bottom: 1px solid #e2e8f0;
}

/* Each section */
.terms-section {
	margin-bottom: 44px;
}

.terms-section h2 {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 14px;
	line-height: 1.35;
}

.terms-section p {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #475569;
	line-height: 1.85;
	margin: 0 0 10px;
}

.terms-section p:last-child {
	margin-bottom: 0;
}

/* Lists */
.terms-section ul {
	list-style: none;
	padding: 0;
	margin: 12px 0 14px;
	background: #f8fafc;
	border-radius: 12px;
	padding: 16px 20px 16px 20px;
}

.terms-section ul li {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #475569;
	line-height: 1.75;
	padding: 6px 0 6px 24px;
	position: relative;
}

.terms-section ul li::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 14px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #155dfc;
	opacity: 0.45;
}

/* Contact box at bottom */
.terms-contact {
	margin-top: 52px;
	padding: 40px;
	background: linear-gradient(135deg, #0f172a 0%, #1e3a6e 100%);
	border-radius: 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.terms-contact::before {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: rgba(59, 130, 246, 0.15);
	filter: blur(40px);
	pointer-events: none;
}

.terms-contact h2 {
	font-family: 'Manrope', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
	position: relative;
}

.terms-contact p {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 6px;
	position: relative;
}

.terms-contact a {
	color: #60a5fa;
	text-decoration: none;
	font-weight: 600;
}

.terms-contact a:hover {
	color: #93bbfd;
	text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
	.terms-hero {
		padding: 110px 20px 50px;
	}
	.terms-hero-title {
		font-size: 32px;
	}
	.terms-wrap {
		padding: 40px 20px 60px;
	}
	.terms-section h2 {
		font-size: 18px;
	}
	.terms-contact {
		padding: 28px 20px;
	}
}

@media (max-width: 480px) {
	.terms-hero {
		padding: 100px 16px 40px;
	}
	.terms-hero-title {
		font-size: 28px;
	}
	.terms-wrap {
		padding: 28px 16px 40px;
	}
}
