:root {
	--blue: #3d7cff;
	--orange: #ff9812;
	--orange-dark: #ff7a00;
	--white: #ffffff;
	--soft-white: #dfe8ff;
	--muted: #95a5c8;
	--bg-black: #05070d;
	--bg-navy: #0b1020;
	--bg-card: rgba(255, 255, 255, 0.055);
	--border: rgba(255, 255, 255, 0.10);
	--shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
	--container: 1240px;
	--radius: 22px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	background: var(--bg-black);
	color: var(--white);
	font-family: Inter, Arial, sans-serif;
	line-height: 1.5;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img,
video {
	display: block;
	max-width: 100%;
}

button,
input,
select,
textarea {
	font: inherit;
}

.container {
	width: var(--container);
	max-width: calc(100% - 64px);
	margin: 0 auto;
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(5, 7, 13, 0.86);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
	position: relative;
	height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 950;
	font-size: 24px;
}

.brand-logo {
	width: 48px;
	height: auto;
	filter: drop-shadow(0 14px 28px rgba(255, 152, 18, 0.18));
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 22px;
	color: var(--soft-white);
	font-size: 14px;
	font-weight: 800;
}

.nav-menu a:hover {
	color: #ffd08a;
}

.nav-menu-cta {
	display: none;
}

.mobile-menu-toggle {
	display: none;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	padding: 0;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
	cursor: pointer;
}

.mobile-menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar.is-menu-open .mobile-menu-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.topbar.is-menu-open .mobile-menu-toggle span:nth-child(2) {
	opacity: 0;
}

.topbar.is-menu-open .mobile-menu-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 15px 22px;
	border-radius: 16px;
	border: 1px solid transparent;
	font-weight: 950;
	cursor: pointer;
}

.btn-main {
	background: linear-gradient(135deg, #ffb347, var(--orange), var(--orange-dark));
	color: #101010;
	box-shadow: 0 14px 34px rgba(255, 122, 0, 0.22);
}

.btn-main:hover,
.btn-ghost:hover {
	transform: translateY(-2px);
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.14);
	color: var(--white);
}

.hero-section {
	position: relative;
	padding: 74px 0 78px;
	background:
		radial-gradient(circle at 20% 20%, rgba(61, 124, 255, 0.18), transparent 30%),
		radial-gradient(circle at 80% 10%, rgba(255, 152, 18, 0.14), transparent 28%),
		linear-gradient(180deg, #05070d 0%, #0a0f1a 100%);
}

.hero-layout {
	display: grid;
	gap: 28px;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	gap: 24px;
	align-items: stretch;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 18px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 152, 18, 0.12);
	border: 1px solid rgba(255, 152, 18, 0.22);
	color: #ffd08a;
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hero-copy h1,
.section-heading h2,
.split-grid h2,
.apply-heading-row h2 {
	margin: 0;
	font-size: clamp(34px, 3.85vw, 58px);
	line-height: 1.04;
	letter-spacing: 0;
}

.hero-copy {
	max-width: 1080px;
}

.hero-copy p,
.lead,
.section-heading p,
.apply-heading-row p {
	max-width: 760px;
	margin-top: 22px;
	color: var(--soft-white);
	font-size: 19px;
	line-height: 1.68;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 2px;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 0;
}

.hero-stats div,
.value-card,
.program-card,
.upsell-panel,
.guarantee-card,
.proof-list div,
.fit-card,
.apply-step-card,
.apply-note {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.hero-stats div {
	padding: 18px;
}

.hero-stats strong {
	display: block;
	color: #ffd08a;
	font-size: 34px;
	line-height: 1;
}

.hero-stats span {
	display: block;
	margin-top: 8px;
	color: var(--soft-white);
	font-size: 13px;
	font-weight: 800;
}

.hero-media {
	position: relative;
	min-height: 430px;
	border-radius: 30px;
	overflow: hidden;
	background: var(--bg-navy);
	box-shadow: var(--shadow);
}

.hero-video {
	width: 100%;
	height: 430px;
	object-fit: cover;
	opacity: 0.78;
}

.hero-panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 32px;
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(255, 152, 18, 0.13), rgba(61, 124, 255, 0.08)),
		rgba(255, 255, 255, 0.055);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
}

.profit-calculator-section {
	background:
		radial-gradient(circle at top left, rgba(61, 124, 255, 0.10), transparent 28%),
		radial-gradient(circle at top right, rgba(255, 152, 18, 0.10), transparent 24%),
		linear-gradient(180deg, #0a0f1a 0%, #05070d 100%);
}

.profit-calculator-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
	gap: 24px;
	align-items: start;
}

.profit-input-card,
.profit-result-card,
.profit-breakdown-card,
.profit-bottom-box {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.profit-input-card {
	padding: 24px;
}

.profit-input-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.profit-input-box {
	display: flex;
	flex-direction: column;
	padding: 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid var(--border);
}

.profit-input-box label {
	margin-bottom: 10px;
	color: var(--soft-white);
	font-size: 13px;
	font-weight: 900;
}

.profit-input-box input {
	width: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--white);
	font-size: 30px;
	font-weight: 950;
	line-height: 1;
}

.profit-input-box span {
	margin-top: 9px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
}

.profit-slider-wrap {
	margin-top: 14px;
	padding: 18px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(61, 124, 255, 0.12), rgba(255, 152, 18, 0.10));
	border: 1px solid var(--border);
}

.profit-slider-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.profit-slider-head span {
	color: var(--soft-white);
	font-weight: 900;
}

.profit-slider-head strong {
	color: #ffd08a;
	font-size: 34px;
	line-height: 1;
}

#calcOrdersRange {
	width: 100%;
	height: 8px;
	border-radius: 999px;
	outline: none;
	appearance: none;
	background: rgba(255, 255, 255, 0.12);
}

#calcOrdersRange::-webkit-slider-thumb {
	appearance: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffb347, #ff7a00);
	border: 2px solid #ffffff;
	box-shadow: 0 0 18px rgba(255, 152, 18, 0.24);
	cursor: pointer;
}

#calcOrdersRange::-moz-range-thumb {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffb347, #ff7a00);
	border: 2px solid #ffffff;
	box-shadow: 0 0 18px rgba(255, 152, 18, 0.24);
	cursor: pointer;
}

.profit-result-card {
	padding: 28px;
	background: linear-gradient(135deg, rgba(61, 124, 255, 0.14), rgba(255, 152, 18, 0.12), rgba(255, 255, 255, 0.04));
}

.profit-result-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
}

.profit-result-label {
	color: var(--soft-white);
	font-size: 13px;
	font-weight: 950;
	text-transform: uppercase;
}

.profit-result-status {
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 152, 18, 0.12);
	border: 1px solid rgba(255, 152, 18, 0.22);
	color: #ffd08a;
	font-size: 13px;
	font-weight: 950;
}

.profit-result-main {
	color: var(--white);
	font-size: clamp(42px, 5vw, 78px);
	line-height: 0.95;
	font-weight: 950;
}

.profit-result-subrow {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.profit-mini-stat {
	padding: 14px 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid var(--border);
}

.profit-mini-stat span {
	display: block;
	margin-bottom: 5px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
}

.profit-mini-stat strong {
	color: var(--white);
	font-size: 22px;
}

.profit-breakdown-card {
	margin-top: 16px;
	padding: 22px;
}

.profit-breakdown-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profit-breakdown-row:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.profit-breakdown-row span {
	color: var(--soft-white);
	font-weight: 800;
}

.profit-breakdown-row strong {
	color: var(--white);
	font-weight: 950;
	white-space: nowrap;
}

.profit-breakdown-row-final span,
.profit-breakdown-row-final strong {
	color: #ffd08a;
}

.profit-bottom-box {
	margin-top: 22px;
	padding: 22px;
	text-align: center;
}

.profit-bottom-box p {
	color: var(--soft-white);
	font-size: 19px;
	font-weight: 800;
}

.hero-panel span,
.program-label,
.panel-head span {
	color: #ffd08a;
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.hero-panel strong {
	display: block;
	margin-top: 12px;
	font-size: clamp(28px, 3vw, 44px);
	line-height: 1.2;
}

.hero-panel p {
	margin-top: 16px;
	color: var(--soft-white);
	font-size: 18px;
	line-height: 1.65;
}

.section {
	padding: 92px 0;
}

.section-dark {
	background:
		radial-gradient(circle at top left, rgba(61, 124, 255, 0.09), transparent 28%),
		linear-gradient(180deg, #0a0f1a 0%, #05070d 100%);
}

.ecosystem-section {
	background:
		radial-gradient(circle at 12% 18%, rgba(255, 152, 18, 0.12), transparent 28%),
		radial-gradient(circle at 86% 8%, rgba(61, 124, 255, 0.10), transparent 26%),
		linear-gradient(180deg, #05070d 0%, #090d17 100%);
}

.section-heading {
	max-width: 840px;
	margin-bottom: 38px;
}

.section-heading h2,
.split-grid h2,
.apply-heading-row h2 {
	font-size: clamp(32px, 4vw, 54px);
	line-height: 1.04;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.ecosystem-map {
	display: grid;
	grid-template-columns: 340px minmax(0, 1fr);
	gap: 22px;
	align-items: stretch;
}

.ecosystem-core,
.ecosystem-items div,
.included-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.ecosystem-core {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 340px;
	padding: 30px;
	background:
		linear-gradient(135deg, rgba(255, 152, 18, 0.18), rgba(61, 124, 255, 0.10)),
		rgba(255, 255, 255, 0.055);
}

.ecosystem-core-logo {
	width: min(190px, 70%);
	height: auto;
	filter: drop-shadow(0 18px 34px rgba(255, 152, 18, 0.22));
}

.ecosystem-core strong {
	font-size: 34px;
	line-height: 1.08;
}

.ecosystem-core p {
	margin-top: 14px;
	color: var(--soft-white);
	font-size: 18px;
}

.ecosystem-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.ecosystem-items div {
	padding: 22px;
}

.ecosystem-items strong {
	display: block;
	color: #ffd08a;
	font-size: 19px;
}

.ecosystem-items span {
	display: block;
	margin-top: 10px;
	color: var(--soft-white);
}

.included-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 22px;
}

.included-card {
	padding: 24px;
}

.included-card span {
	color: #ffd08a;
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.included-card h3 {
	margin-top: 12px;
	font-size: 23px;
	line-height: 1.18;
}

.included-card p {
	margin-top: 12px;
	color: var(--soft-white);
}

.value-card {
	padding: 24px;
}

.value-card span {
	color: var(--orange);
	font-weight: 950;
}

.value-card h3,
.upsell-card h3,
.fit-card h3 {
	margin-top: 14px;
	font-size: 22px;
}

.value-card p,
.upsell-card p,
.fit-card p,
.condition-list span,
.proof-list span {
	margin-top: 10px;
	color: var(--soft-white);
}

.section-cta {
	margin-top: 30px;
}

.split-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 42px;
	align-items: center;
}

.condition-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-top: 28px;
}

.condition-list div {
	padding: 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--border);
}

.condition-list strong,
.proof-list strong {
	display: block;
	color: var(--white);
}

.guarantee-card {
	padding: 30px;
	text-align: center;
	background:
		linear-gradient(135deg, rgba(255, 152, 18, 0.20), rgba(61, 124, 255, 0.08)),
		rgba(255, 255, 255, 0.055);
}

.guarantee-card strong {
	display: block;
	margin-top: 10px;
	color: #ffd08a;
	font-size: 94px;
	line-height: 1;
}

.guarantee-card em {
	display: block;
	color: var(--soft-white);
	font-style: normal;
	font-weight: 900;
}

.guarantee-card p {
	margin-top: 18px;
	color: var(--soft-white);
}

.program-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 22px;
	align-items: start;
}

.program-card,
.upsell-panel {
	padding: 26px;
}

.program-card h3 {
	margin-top: 14px;
	font-size: 32px;
	line-height: 1.12;
}

.program-card p {
	margin-top: 14px;
	color: var(--soft-white);
}

.program-price {
	margin-top: 22px;
	padding: 18px;
	border-radius: 18px;
	background: rgba(255, 152, 18, 0.12);
	border: 1px solid rgba(255, 152, 18, 0.22);
}

.program-price strong {
	display: block;
	color: #ffd08a;
	font-size: 30px;
}

.program-price span {
	color: var(--soft-white);
}

.program-card ul {
	display: grid;
	gap: 10px;
	margin: 22px 0;
	padding-left: 20px;
	color: var(--soft-white);
}

.panel-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.panel-head strong {
	font-size: 20px;
}

.upsell-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.upsell-card {
	padding: 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid var(--border);
}

.upsell-card span {
	display: inline-flex;
	margin-top: 8px;
	color: #ffd08a;
	font-weight: 900;
}

.results-stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-bottom: 22px;
}

.results-stats-row div,
.results-card,
.results-authority-box {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.results-stats-row div {
	padding: 18px;
}

.results-stats-row strong {
	display: block;
	color: #ffd08a;
	font-size: 32px;
	line-height: 1;
}

.results-stats-row span {
	display: block;
	margin-top: 8px;
	color: var(--soft-white);
	font-size: 13px;
	font-weight: 800;
}

.results-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.results-card {
	overflow: hidden;
}

.results-card-featured {
	border-color: rgba(255, 152, 18, 0.28);
	transform: translateY(-8px);
}

.results-card-image-wrap {
	position: relative;
	aspect-ratio: 2.85 / 1;
	padding: 10px;
	background: #f8fbff;
	overflow: hidden;
}

.results-card-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 10px;
}

.results-card-content {
	padding: 22px;
}

.results-card-content span {
	color: #ffd08a;
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.results-card-content h3 {
	margin-top: 10px;
	font-size: 22px;
	line-height: 1.18;
}

.results-card-content p {
	margin-top: 10px;
	color: var(--soft-white);
}

.results-authority-box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
	gap: 24px;
	align-items: center;
	margin-top: 22px;
	padding: 26px;
}

.results-authority-box h3 {
	font-size: 28px;
	line-height: 1.14;
}

.results-authority-box p {
	margin-top: 12px;
	color: var(--soft-white);
}

.results-authority-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.results-authority-tags span {
	padding: 10px 13px;
	border-radius: 999px;
	background: rgba(255, 152, 18, 0.12);
	border: 1px solid rgba(255, 152, 18, 0.22);
	color: #ffd08a;
	font-size: 13px;
	font-weight: 950;
}

.fit-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-top: 22px;
}

.fit-card {
	padding: 24px;
}

.fit-card.good {
	border-color: rgba(65, 215, 130, 0.30);
}

.fit-card.bad {
	border-color: rgba(255, 152, 18, 0.30);
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-item {
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid var(--border);
	overflow: hidden;
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 22px;
	border: 0;
	background: transparent;
	color: var(--white);
	font-weight: 950;
	text-align: left;
	cursor: pointer;
}

.faq-icon {
	color: #ffd08a;
	font-size: 24px;
}

.faq-answer {
	display: none;
	padding: 0 22px 20px;
	color: var(--soft-white);
}

.faq-item.active .faq-answer {
	display: block;
}

.apply-section {
	background:
		radial-gradient(circle at top right, rgba(255, 152, 18, 0.10), transparent 28%),
		linear-gradient(180deg, #05070d 0%, #0b1020 100%);
}

.apply-heading-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 24px;
	align-items: end;
	margin-bottom: 24px;
}

.apply-note {
	padding: 22px;
	color: var(--soft-white);
}

.apply-progress {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-bottom: 18px;
}

.apply-progress span {
	padding: 13px 14px;
	border-radius: 14px;
	background: rgba(255, 152, 18, 0.12);
	border: 1px solid rgba(255, 152, 18, 0.22);
	color: #ffd08a;
	font-weight: 950;
	text-align: center;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.apply-progress span.is-active {
	background: rgba(61, 124, 255, 0.14);
	border-color: rgba(61, 124, 255, 0.32);
	color: #dfe8ff;
	transform: translateY(-1px);
}

.apply-progress span.is-complete {
	background: rgba(65, 215, 130, 0.14);
	border-color: rgba(65, 215, 130, 0.34);
	color: #88f0b5;
}

.apply-form {
	display: grid;
	gap: 18px;
}

.apply-step-card {
	padding: 24px;
}

.apply-step-head {
	margin-bottom: 18px;
}

.apply-step-head span {
	color: #ffd08a;
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.apply-step-head h3 {
	margin-top: 6px;
	font-size: 24px;
}

.apply-step-head p {
	margin-top: 8px;
	color: var(--muted);
}

.apply-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.apply-form-full {
	grid-column: 1 / -1;
}

.apply-form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.apply-form-group label {
	color: var(--soft-white);
	font-weight: 900;
}

.apply-form-group input,
.apply-form-group select,
.apply-form-group textarea {
	width: 100%;
	min-height: 54px;
	padding: 15px 16px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	background: rgba(255, 255, 255, 0.065);
	color: var(--white);
	outline: none;
}

.apply-form-group select {
	height: 54px;
	padding-right: 46px;
	line-height: 1.2;
	appearance: none;
	-webkit-appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #ffd08a 50%),
		linear-gradient(135deg, #ffd08a 50%, transparent 50%);
	background-position:
		calc(100% - 22px) 50%,
		calc(100% - 16px) 50%;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.apply-form-group select option {
	background: #0b1020;
	color: var(--white);
}

.apply-form-group textarea {
	min-height: 140px;
	resize: vertical;
}

.apply-captcha-group {
	max-width: 420px;
}

.apply-captcha-row {
	display: grid;
	grid-template-columns: auto minmax(120px, 1fr);
	align-items: center;
	gap: 12px;
}

.apply-captcha-row span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 18px;
	border-radius: 14px;
	background: rgba(255, 152, 18, 0.12);
	border: 1px solid rgba(255, 152, 18, 0.24);
	color: #ffd08a;
	font-weight: 950;
}

.apply-phone-group {
	grid-column: span 1;
}

.apply-phone-row {
	display: grid;
	grid-template-columns: minmax(190px, 0.9fr) minmax(0, 1.1fr);
	gap: 10px;
}

.is-native-country-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.country-combo {
	position: relative;
	min-width: 0;
}

.country-combo-button,
.country-combo-search {
	width: 100%;
	min-height: 54px;
	padding: 15px 16px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	background: rgba(255, 255, 255, 0.065);
	color: var(--white);
	font: inherit;
	outline: none;
}

.country-combo-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	text-align: left;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.country-combo-button::after {
	content: "⌄";
	color: #ffd08a;
	font-weight: 950;
}

.country-combo.is-open .country-combo-button {
	border-color: rgba(255, 152, 18, 0.45);
	box-shadow: 0 0 0 4px rgba(255, 152, 18, 0.08);
}

.country-combo-panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 40;
	padding: 10px;
	border-radius: 16px;
	background: #0b1020;
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: var(--shadow);
}

.country-combo-search {
	min-height: 46px;
	margin-bottom: 8px;
}

.country-combo-list {
	display: grid;
	gap: 4px;
	max-height: 260px;
	overflow: auto;
}

.country-combo-option,
.country-combo-empty {
	width: 100%;
	padding: 11px 12px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--soft-white);
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.country-combo-option:hover {
	background: rgba(255, 152, 18, 0.12);
	color: #ffd08a;
}

.country-combo-empty {
	color: var(--muted);
	cursor: default;
}

.apply-field-hint {
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.4;
}

.apply-field-error {
	min-height: 18px;
	color: #ffb0a7;
	font-size: 12px;
	font-weight: 900;
}

.apply-alert {
	margin: 22px 0;
	padding: 16px 18px;
	border: 1px solid rgba(255, 111, 111, 0.4);
	border-radius: 8px;
	background: rgba(255, 82, 82, 0.12);
	color: #ffd0cb;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.5;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	box-shadow: 0 18px 60px rgba(255, 82, 82, 0.08);
}

.apply-alert::before {
	content: "!";
	display: grid;
	place-items: center;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff9812, #ff6b00);
	color: #070a12;
	font-size: 15px;
	font-weight: 950;
}

.apply-alert-success {
	border-color: rgba(65, 215, 130, 0.42);
	background: rgba(65, 215, 130, 0.12);
	color: #c8ffdf;
	box-shadow: 0 18px 60px rgba(65, 215, 130, 0.08);
}

.apply-alert-success::before {
	content: "✓";
	background: linear-gradient(135deg, #62f39a, #1ecf70);
}

.apply-alert a {
	display: inline-flex;
	margin-top: 8px;
	color: #ffc875;
	font-size: 14px;
	font-weight: 950;
	text-decoration: none;
}

.apply-submit-btn:disabled {
	cursor: wait;
	opacity: 0.72;
}

.apply-form-group.is-valid input,
.apply-form-group.is-valid select,
.apply-form-group.is-valid textarea {
	border-color: rgba(65, 215, 130, 0.42);
}

.apply-form-group.is-invalid input,
.apply-form-group.is-invalid select,
.apply-form-group.is-invalid textarea {
	border-color: rgba(255, 105, 82, 0.58);
	box-shadow: 0 0 0 4px rgba(255, 105, 82, 0.08);
}

.apply-form-group input:focus,
.apply-form-group select:focus,
.apply-form-group textarea:focus {
	border-color: rgba(255, 152, 18, 0.45);
	box-shadow: 0 0 0 4px rgba(255, 152, 18, 0.08);
}

.apply-upsell-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.apply-upsell-option {
	display: flex;
	gap: 12px;
	padding: 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid var(--border);
	cursor: pointer;
}

.apply-upsell-option input {
	width: 18px;
	height: 18px;
	margin-top: 4px;
	accent-color: var(--orange);
}

.apply-upsell-option strong,
.apply-upsell-option small {
	display: block;
}

.apply-upsell-option small {
	margin-top: 4px;
	color: var(--muted);
	line-height: 1.45;
}

.apply-submit-btn {
	width: 100%;
	margin-top: 18px;
	border: 0;
}

.footer {
	padding: 28px 0;
	background: #05070d;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--muted);
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}

.footer-inner p {
	margin: 0;
}

.footer-legal-links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	font-weight: 800;
}

.footer-legal-links a {
	color: var(--text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-legal-links a:hover {
	color: var(--gold);
}

.footer-legal-links span {
	width: 1px;
	height: 18px;
	background: rgba(255, 255, 255, 0.22);
}

.footer-anpc {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	width: 100%;
}

.footer-anpc a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-anpc a:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 168, 66, 0.45);
	box-shadow: 0 16px 36px rgba(255, 142, 24, 0.14);
}

.footer-anpc img {
	display: block;
	width: 220px;
	max-width: 42vw;
	height: auto;
}

.legal-section {
	padding-top: 150px;
}

.legal-hero {
	max-width: 860px;
	margin-bottom: 28px;
}

.legal-hero h1 {
	margin: 16px 0;
	font-size: clamp(40px, 6vw, 76px);
	line-height: 0.96;
	letter-spacing: 0;
}

.legal-hero p {
	max-width: 760px;
	color: var(--muted);
	font-size: 20px;
	line-height: 1.55;
}

.legal-content {
	padding: 34px;
	border-radius: 28px;
	border: 1px solid var(--border);
	background:
		linear-gradient(135deg, rgba(255, 151, 18, 0.08), transparent 38%),
		rgba(255, 255, 255, 0.055);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.legal-content h2,
.legal-content h3 {
	margin: 28px 0 12px;
	color: var(--text);
	line-height: 1.2;
}

.legal-content h2:first-child,
.legal-content h3:first-child {
	margin-top: 0;
}

.legal-content p,
.legal-content li {
	color: var(--muted);
	font-size: 17px;
	line-height: 1.72;
}

.legal-content p {
	margin: 0 0 14px;
}

.legal-content a {
	color: var(--gold);
}

.error-page {
	min-height: calc(100vh - 82px);
	background:
		radial-gradient(circle at 50% 18%, rgba(255, 152, 18, 0.18), transparent 30%),
		radial-gradient(circle at 18% 10%, rgba(61, 124, 255, 0.16), transparent 32%),
		radial-gradient(circle at 82% 78%, rgba(255, 122, 0, 0.12), transparent 28%),
		linear-gradient(180deg, #05070d 0%, #0a0f1a 100%);
}

.error-section {
	min-height: calc(100vh - 82px);
	display: grid;
	place-items: center;
	padding: 72px 0;
	text-align: center;
}

.error-card {
	max-width: 980px;
	padding: clamp(36px, 5vw, 70px);
	border-radius: 34px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background:
		linear-gradient(135deg, rgba(255, 152, 18, 0.16), transparent 42%),
		rgba(255, 255, 255, 0.06);
	box-shadow: var(--shadow);
}

.error-logo {
	width: clamp(112px, 14vw, 180px);
	height: auto;
	margin: 0 auto 24px;
	filter: drop-shadow(0 22px 42px rgba(255, 152, 18, 0.22));
}

.error-card .eyebrow {
	margin-left: auto;
	margin-right: auto;
	font-size: 14px;
}

.error-card h1 {
	max-width: 860px;
	margin: 0 auto 22px;
	font-size: clamp(52px, 8vw, 112px);
	line-height: 0.94;
}

.error-card p {
	max-width: 760px;
	margin: 0 auto;
	color: var(--soft-white);
	font-size: clamp(20px, 2.3vw, 28px);
	line-height: 1.6;
	font-weight: 700;
}

.error-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 34px;
}

.back-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	border: 0;
	background: var(--orange);
	color: #111;
	font-weight: 950;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 82px;
	z-index: 45;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
		linear-gradient(135deg, #ffb23a, #ff7a00);
	color: white;
	border: 1px solid rgba(255, 210, 138, 0.55);
	box-shadow:
		0 18px 42px rgba(255, 122, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.28);
	font-size: 15px;
	font-weight: 950;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-float:hover {
	transform: translateY(-3px) scale(1.03);
	filter: saturate(1.08);
	box-shadow:
		0 24px 58px rgba(255, 122, 0, 0.36),
		0 0 0 7px rgba(18, 184, 95, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.whatsapp-float svg {
	width: 27px;
	height: 27px;
	fill: currentColor;
	filter: drop-shadow(0 2px 4px rgba(4, 23, 12, 0.26));
}

.whatsapp-nav {
	display: none;
	position: static;
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.r2s-watermark-wrap {
	position: relative;
	display: block;
	overflow: hidden;
}

.r2s-watermark-logo {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 58px;
	pointer-events: none;
	opacity: 0.86;
}

.r2s-watermark-layer {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.r2s-watermark-text {
	position: absolute;
	color: rgba(255, 255, 255, 0.14);
	font-weight: 950;
	white-space: nowrap;
}

.r2s-watermark-diagonal {
	top: 45%;
	left: 10%;
	transform: rotate(-26deg);
	font-size: 24px;
}

.r2s-watermark-horizontal {
	left: 12%;
	bottom: 16%;
	font-size: 18px;
}

.r2s-watermark-vertical {
	right: 8%;
	top: 20%;
	writing-mode: vertical-rl;
	font-size: 15px;
}
