:root {
	--bg-main: #050b1a;
	--navy-1: #1e293b;
	--navy-2: #334155;
	--border: rgba(255, 255, 255, 0.08);
	--text-main: #ffffff;
	--text-muted: #9fb0d0;
	--accent: #2fb8ff;
	--note-bg: #fffdf5;
	--note-text: #3b3b3b;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Inter", system-ui, sans-serif;
}

body {
	background: radial-gradient(circle at top, #0d1c3d, var(--bg-main));
	color: var(--text-main)!important;
	line-height: 1.7;
}

.container {
	max-width: 1100px;
	margin: auto;
	padding: 90px 24px;
}

/* HERO */
.hero {
	text-align: center;
	margin-bottom: 90px;
}

.hero small {
	color: var(--accent);
	letter-spacing: 2px;
	font-weight: 600;
}

.hero h1 {
	font-size: 44px;
	margin: 16px 0;
}

.hero h1 span {
	color: var(--accent);
}

.hero p {
	max-width: 780px;
	margin: auto;
	color: var(--text-muted);
	font-size: 18px;
}

/* SECTION */
.section {
	margin-bottom: 70px;
}

.section h2 {
	font-size: 30px;
	margin-bottom: 12px;
}

.section p {
	color: var(--text-muted);
	max-width: 900px;
}

/* CARD */
.security-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 34px;
	margin-bottom: 28px;
}

.security-header {
	display: flex;
	gap: 18px;
	margin-bottom: 14px;
}

.security-header span {
	color: var(--accent);
	font-weight: 700;
	font-size: 20px;
}

.security-header h3 {
	font-size: 22px;
}

.security-card > p {
	color: var(--text-muted);
	margin-bottom: 18px;
	max-width: 950px;
}

/* NOTE */
.note {
	/* background: var(--note-bg); */
	background: rgba(27, 45, 88, 0.486);
	/* color: var(--note-text); */
	border-radius: 8px;
	padding: 16px 18px;
	font-size: 14px;
	line-height: 1.6;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
	position: relative;
}

.note::before {
	content: "\F4EA";
	font-family: "bootstrap-icons";
	position: absolute;
	transform: scaleX(-1);
	top: -14px;
	left: -12px;
	padding: 4px 8px;
	font-size: 14px;
	font-weight: normal;
	color: #973939;
	border-radius: 4px;
}

/* TRUST */
.trust {
	margin-top: 90px;
	background: linear-gradient(180deg, rgba(47, 184, 255, 0.08), transparent);
	border: 1px solid rgba(47, 184, 255, 0.25);
	padding: 44px;
	border-radius: 18px;
	text-align: center;
}

.trust p {
	font-size: 18px;
	color: #d6e6ff;
}

/* CTA */
.cta {
	margin-top: 60px;
	text-align: center;
}

.cta a {
	display: inline-block;
	padding: 15px 34px;
	border-radius: 30px;
	background: linear-gradient(90deg, #2fb8ff, #1b7cff);
	color: #00142a;
	font-weight: 600;
	text-decoration: none;
}