* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #f47c20;
	--primary-light: #ff8a00;
	--bg: #030617;
	--bg-secondary: #111827;
	--card: #1a1f2e;
	--card-hover: #222838;
	--text: #ffffff;
	--text-muted: #a0a8b8;
	--border: rgba(244, 124, 32, 0.1);
	--glow: rgba(244, 124, 32, 0.3);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family:
		'Inter',
		-apple-system,
		BlinkMacSystemFont,
		sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(
			circle at 20% 50%,
			rgba(244, 124, 32, 0.08) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(244, 124, 32, 0.05) 0%,
			transparent 50%
		);
	pointer-events: none;
	z-index: 0;
}

header {
	/* position: sticky; */
	top: 0;
	z-index: 1000;
	background: #1f2547f2;
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	transition: all 0.3s ease;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.2rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 800;
	font-size: 1.5rem;
	color: var(--text);
	text-decoration: none;
	position: relative;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: translateY(-2px);
}

.logo img {
	height: 42px;
	filter: drop-shadow(0 0 10px var(--glow));
}

.logo-text {
	background: linear-gradient(109.94deg, #d64f02 0%, #df5403 100%);

	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.btn-cta {
	background: linear-gradient(109.94deg, #d64f02 0%, #df5403 100%);

	color: var(--text);
	font-weight: 700;
	font-size: 1rem;
	padding: 0.9rem 2.5rem;
	border: none;
	border-radius: 15px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(244, 124, 32, 0.3);
	text-decoration: none;
	display: inline-block;
}

.btn-cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition:
		width 0.6s,
		height 0.6s;
}

.btn-cta:hover::before {
	width: 300px;
	height: 300px;
}

.btn-cta:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 30px rgba(244, 124, 32, 0.5);
}

.hero {
	position: relative;
	padding: 5rem 2rem 3rem;
	text-align: center;
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
	filter: blur(80px);
	pointer-events: none;
	animation: float 8s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(-30px, -30px);
	}
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-highlight {
	color: var(--primary);
	position: relative;
	display: inline-block;
}

.hero-highlight::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
	border-radius: 2px;
}

.hero p {
	font-size: 1.25rem;
	color: var(--text-muted);
	margin-bottom: 2.5rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

.content-card {
	background: var(--card);
	border-radius: 30px;
	padding: 3rem;
	margin: 3rem 0;
	border: 1px solid var(--border);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.content-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--primary),
		var(--primary-light),
		var(--primary)
	);
	background-size: 200% 100%;
	animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}

	100% {
		background-position: 200% 0;
	}
}

.content-card:hover {
	border-color: rgba(244, 124, 32, 0.3);
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

h1 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: var(--text);
}

h2 {
	font-size: 2rem;
	font-weight: 700;
	margin: 3rem 0 1.5rem;
	color: var(--text);
	position: relative;
	padding-left: 1.5rem;
}

h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 70%;
	background: linear-gradient(180deg, var(--primary), var(--primary-light));
	border-radius: 3px;
}

h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 2rem 0 1rem;
	color: var(--text);
}

p {
	color: var(--text-muted);
	margin-bottom: 1.25rem;
	font-size: 1.05rem;
}

ul,
ol {
	margin: 1.5rem 0;
	padding-left: 2rem;
	color: var(--text-muted);
}

li {
	margin-bottom: 0.75rem;
	position: relative;
	padding-left: 0.5rem;
}

ul li::marker {
	color: var(--primary);
}

.table {
	overflow-x: auto;
	margin: 2rem 0;
	border-radius: 20px;
	border: 1px solid var(--border);
}

table {
	width: 100%;
	border-collapse: collapse;
	background: var(--bg-secondary);
}

th {
	background: linear-gradient(109.94deg, #d64f02 0%, #df5403 100%);

	color: var(--text);
	font-weight: 700;
	padding: 1.25rem 1rem;
	text-align: left;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

td {
	padding: 1.25rem 1rem;
	color: var(--text-muted);
	border-bottom: 1px solid var(--border);
}

tr:last-child td {
	border-bottom: none;
}

tr {
	transition: background 0.2s ease;
}

tr:hover {
	background: rgba(244, 124, 32, 0.05);
}

td b {
	color: var(--text);
	font-weight: 600;
}

footer {
	margin-top: 5rem;
	padding: 3rem 0 2rem;
	background: var(--card);
	border-top: 1px solid var(--border);
	text-align: center;
}

.copyright {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.hero-image {
	max-width: 100%;
	height: auto;
	margin: 2rem auto;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-item {
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--border);
}

.faq-question {
	cursor: pointer;
	padding: 1rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question h3 {
	margin: 0;
}

.faq-toggle {
	font-size: 1.5rem;
	color: var(--primary);
	transition: transform 0.3s ease;
}

.faq-toggle.open {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	color: var(--text-muted);
}

.faq-answer p {
	padding: 1rem 0;
}

.faq-item.active .faq-answer {
	max-height: 100%;
}

.img-cov {
	width: 100%;
	height: auto;
	max-width: 900px;
	margin: 15px auto;
}
.img-cov img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	object-fit: cover;
}

.content-card ul li a {
	color: #df5403;
}

.footer__list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	list-style: none;
}

.footer__list li a,
.header__list li a {
	color: white;
}

.header__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	list-style: none;
}

@media (max-width: 768px) {
	.header-container {
		flex-direction: column;
		padding: 1rem 1.5rem;
	}

	.hero {
		padding: 3rem 1.5rem 2rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.content-card {
		padding: 2rem 1.5rem;
		border-radius: 20px;
	}

	h1 {
		font-size: 1.75rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	h3 {
		font-size: 1.25rem;
	}

	.header-buttons {
		text-align: right;
	}

	.btn-cta {
		padding: 0.75rem 1.75rem;
		font-size: 0.8rem;
		white-space: nowrap;
		margin: 0 0 10px 0;
		margin-right: 0 !important;
	}

	table {
		font-size: 0.85rem;
	}

	th,
	td {
		padding: 0.75rem 0.5rem;
	}

	.hero-image {
		margin: 1.5rem auto;
	}

	.footer__list {
		justify-content: center;
	}
}
