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

:root {
	--primary: #ff7a14;
	--primary-light: #ffb32a;
	--bg: #060f13;
	--bg-secondary: #0d1e26;
	--card: #132d39;
	--card-hover: #1f2d4d;
	--text: #ffffff;
	--text-muted: #a8b4d4;
	--border: rgba(255, 140, 60, 0.2);
	--glow: rgba(255, 130, 45, 0.45);
	--pulse-color: rgba(255, 120, 40, 0.65);
}

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%;
	pointer-events: none;
	z-index: 0;
}

header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #132d39f0;
	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(135deg, var(--primary), var(--primary-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.logo-update {
	display: block;
	font-size: 0.65rem;
	font-weight: 600;
	color: var(--text-muted);
	letter-spacing: 0.02em;
	margin-top: 0.2rem;
	max-width: 14rem;
	line-height: 1.25;
}

@media (min-width: 480px) {
	.logo-update {
		display: inline;
		margin-top: 0;
		margin-left: 0.5rem;
		font-size: 0.7rem;
		vertical-align: middle;
		max-width: none;
	}
}

@keyframes cta-pulse {
	0%,
	100% {
		box-shadow:
			0 4px 22px var(--pulse-color),
			0 0 0 0 rgba(255, 150, 50, 0.55);
	}

	45% {
		box-shadow:
			0 8px 36px rgba(255, 100, 20, 0.95),
			0 0 0 16px rgba(255, 170, 60, 0);
	}
}

@keyframes cta-brightness {
	0%,
	100% {
		filter: brightness(1);
	}

	50% {
		filter: brightness(1.12);
	}
}

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

	color: var(--text);
	font-weight: 700;
	font-size: 1rem;
	padding: 0.9rem 2.5rem;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: transform 0.25s ease;
	text-decoration: none;
	display: inline-block;
	isolation: isolate;
	animation:
		cta-pulse 1.35s ease-in-out infinite,
		cta-brightness 1.35s ease-in-out infinite;
}

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

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

.btn-cta:hover {
	transform: translateY(-3px) scale(1.06);
	animation-play-state: paused;
	box-shadow:
		0 10px 40px rgba(255, 110, 25, 0.85),
		0 0 0 6px rgba(255, 190, 80, 0.35);
	filter: brightness(1.08);
}

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

.hero::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		70.71% 70.71% at 50% 50%,
		rgba(245, 86, 10, 0.45) 0%,
		rgba(245, 86, 10, 0) 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: 1200px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 2rem;
	line-height: 1.2;
	text-align: center;
	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-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 42%);
	grid-template-areas: 'text visual';
	gap: 2.5rem 3rem;
	align-items: center;
}

.hero-text {
	grid-area: text;
	text-align: left;
}

.hero-text p {
	font-size: 1.2rem;
	color: var(--text-muted);
	margin-bottom: 1.25rem;
	max-width: 36rem;
	margin-left: 0;
	margin-right: 0;
	line-height: 1.65;
}

.hero-text p:last-of-type {
	margin-bottom: 1.75rem;
}

.hero-visual {
	grid-area: visual;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	min-width: 0;
}

.hero-cta-image {
	display: inline-block;
	margin: 0 0 0 auto;
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	line-height: 0;
	outline: 2px solid rgba(255, 150, 60, 0.65);
	outline-offset: 3px;
	animation:
		cta-pulse 1.35s ease-in-out infinite,
		cta-brightness 1.35s ease-in-out infinite;
	transition:
		transform 0.25s ease,
		outline-color 0.25s ease;
	box-shadow: 0 4px 22px var(--pulse-color);
}

.hero-cta-image:hover {
	transform: scale(1.05);
	animation-play-state: paused;
	outline-color: rgba(255, 200, 100, 0.95);
	box-shadow:
		0 10px 40px rgba(255, 110, 25, 0.85),
		0 0 0 6px rgba(255, 190, 80, 0.3);
}

.hero-cta-image:focus-visible {
	outline: 3px solid var(--primary-light);
	outline-offset: 4px;
}

.hero-visual .hero-cta-image {
	margin: 0 0 0 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, #f5560a 0%, #f5560a 50%, #f5560a 100%);

	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(255, 140, 60, 0.38);
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

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, #f5560a 0%, #f5560a 100%);

	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(115.14deg, #f5560a 0%, #f5560a 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(255, 130, 60, 0.08);
}

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

.slot-showcase {
	list-style: none;
	margin: 1.25rem 0 1.75rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.5rem 0.55rem;
	max-width: 36rem;
}

@media (min-width: 640px) {
	.slot-showcase {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 0.55rem 0.65rem;
		max-width: 42rem;
	}
}

@media (min-width: 900px) {
	.slot-showcase {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		max-width: 48rem;
	}
}

.slot-showcase li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.slot-showcase a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 4.25rem;
	padding: 0.3rem 0.35rem;
	border-radius: 10px;
	border: 1px solid var(--border);
	background: var(--bg-secondary);
	text-decoration: none;
	transition:
		border-color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.slot-showcase a:hover,
.slot-showcase a:focus-visible {
	border-color: rgba(255, 140, 60, 0.45);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
	outline: none;
}

.slot-showcase img {
	max-height: 3.25rem;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.pay-strip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.65rem 1rem;
	margin: 1.25rem 0 0;
	padding: 0.85rem 1rem;
	background: var(--bg-secondary);
	border-radius: 16px;
	border: 1px solid var(--border);
}

.pay-strip a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.2rem 0.35rem;
	border-radius: 8px;
	text-decoration: none;
	transition:
		background 0.2s ease,
		transform 0.2s ease;
}

.pay-strip a:hover,
.pay-strip a:focus-visible {
	background: rgba(255, 130, 60, 0.08);
	transform: translateY(-1px);
	outline: none;
}

.pay-strip img {
	height: 26px;
	width: auto;
	max-width: 4.5rem;
	object-fit: contain;
	opacity: 0.9;
}

@media (min-width: 768px) {
	.pay-strip {
		gap: 0.85rem 1.15rem;
		padding: 1rem 1.25rem;
	}

	.pay-strip img {
		height: 30px;
		max-width: 5rem;
	}
}

.pay-strip-lead {
	margin: 1rem 0 0;
	font-size: 0.9rem;
	color: var(--text-muted);
	text-align: center;
}

.site-footer {
	margin-top: 5rem;
	padding: 2.25rem 0 2rem;
	background: #122b37;
	border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
	.site-footer {
		padding: 3rem 0 2.25rem;
	}
}

.site-footer__wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: max(1.25rem, env(safe-area-inset-left));
	padding-right: max(1.25rem, env(safe-area-inset-right));
}

.site-footer__nav {
	margin-bottom: 1.75rem;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.65rem 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 480px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem 1.25rem;
	}
}

@media (min-width: 900px) {
	.site-footer__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.site-footer__grid a {
	display: inline-block;
	color: var(--text-muted);
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
	padding: 0.35rem 0;
	border-bottom: 1px solid transparent;
	transition:
		color 0.2s ease,
		border-color 0.2s ease;
}

.site-footer__grid a:hover,
.site-footer__grid a:focus-visible {
	color: var(--primary-light);
	border-bottom-color: rgba(255, 179, 42, 0.45);
	outline: none;
}

.site-footer__legal {
	margin: 0 0 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.8125rem;
	line-height: 1.65;
	color: var(--text-muted);
	text-align: left;
	max-width: 72ch;
}

.site-footer__legal strong {
	color: #c8d0e8;
	font-weight: 600;
}

.site-footer__rg {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin: 0;
	padding: 1rem 1rem 0;
	border-top: 1px solid rgba(255, 140, 60, 0.12);
	font-size: 0.75rem;
	line-height: 1.55;
	color: #8b95b5;
	text-align: left;
}

@media (min-width: 768px) {
	.site-footer__rg {
		padding: 1.1rem 0 0;
		font-size: 0.78125rem;
	}
}

.site-footer__badge {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	margin-top: 0.1rem;
	padding: 0 0.35rem;
	border-radius: 8px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #fff;
	background: linear-gradient(145deg, #c41e3a 0%, #8b1530 100%);
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.site-footer__rg strong {
	color: #aab6d4;
	font-weight: 600;
}

.hero-image {
	display: block;
	width: 100%;
	max-width: 430px;
	height: auto;
	border-radius: 20px;
	vertical-align: middle;
	transition: transform 0.25s ease;
}

.hero-cta-image:hover .hero-image {
	transform: scale(1.02);
}

.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;
}

.pageMenu li a {
	color: #f5560a;
}

.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;
}

@media (max-width: 768px) {
	.header-container {
		padding: 1rem 1.5rem;
		gap: 15px;
		flex-wrap: wrap;
	}
	.header-container div {
		width: 100%;
	}
	.header-container div .btn-cta {
		width: 49%;
		margin: 0 !important;
	}

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

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

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

	.hero-split {
		grid-template-columns: 1fr;
		grid-template-areas: 'visual' 'text';
		gap: 1.5rem 0;
	}

	.hero-visual {
		justify-content: center;
	}

	.hero-visual .hero-cta-image {
		margin: 0 auto;
		max-width: min(340px, 92vw);
	}

	.hero-image {
		max-width: min(340px, 92vw);
	}

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

	h1 {
		font-size: 1.75rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	h3 {
		font-size: 1.25rem;
	}

	.btn-cta {
		padding: 0.75rem 1.75rem;
		font-size: 0.9rem;
	}

	table {
		font-size: 0.85rem;
	}

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

	.logo-text {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.btn-cta,
	.hero-cta-image {
		animation: none;
	}

	.btn-cta:hover {
		filter: none;
	}
}
