/* ============================================
   FIVEM HOSTING PAGE — CEZER
   Design system: --accent #e4e2dd, --bg #0a0a0a
   Unique mechanism: GTA Phone UI Configurator
   GTA-inspired aesthetic with neon scan lines
   ============================================ */

/* ---- VARIABLES ---- */
:root {
	--fm-bg: #0a0a0a;
	--fm-bg2: #111111;
	--fm-card: rgba(26, 26, 26, 0.5);
	--fm-border: rgba(228, 226, 221, 0.08);
	--fm-border-h: rgba(228, 226, 221, 0.18);
	--fm-accent: #e4e2dd;
	--fm-accent-d: #a8a69f;
	--fm-muted: #9a9a9a;
	--fm-subtle: #71717a;
	--fm-green: #20bf6c;
	--fm-red: #fd5c65;
	--fm-yellow: #fed230;
}

.fm-page {
	background: var(--fm-bg);
	min-height: 100vh;
	overflow-x: hidden;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}


/* ============================================
   HERO SECTION
   ============================================ */
.fm-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--fm-bg);
	padding: 120px 0 80px;
}

.fm-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.fm-hero-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	z-index: 0;
}

.fm-hero-bg-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(10, 10, 10, 0.70) 0%,
		rgba(10, 10, 10, 0.82) 50%,
		rgba(10, 10, 10, 0.96) 100%
	);
	z-index: 1;
}

.fm-scanlines {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 2px,
		rgba(228, 226, 221, 0.015) 2px,
		rgba(228, 226, 221, 0.015) 4px
	);
	pointer-events: none;
}

.fm-grid {
	position: absolute;
	inset: 0;
	z-index: 2;
	background-image:
		linear-gradient(rgba(228, 226, 221, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(228, 226, 221, 0.02) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 15%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 15%, transparent 70%);
}

.fm-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(140px);
	opacity: 0.10;
	z-index: 2;
	animation: fmOrb 14s ease-in-out infinite;
}

.fm-orb-1 {
	top: 5%;
	right: 20%;
	width: 500px;
	height: 500px;
	background: rgba(228, 226, 221, 0.35);
}

.fm-orb-2 {
	bottom: 10%;
	left: 5%;
	width: 400px;
	height: 400px;
	background: rgba(168, 166, 159, 0.2);
	animation-delay: 5s;
}

.fm-orb-3 {
	top: 40%;
	left: 55%;
	width: 300px;
	height: 300px;
	background: rgba(228, 226, 221, 0.12);
	animation-delay: 9s;
}

@keyframes fmOrb {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(25px, -35px) scale(1.06); }
	66% { transform: translate(-18px, 18px) scale(0.94); }
}

.fm-particles {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 3;
}

.fm-particle {
	position: absolute;
	width: 2px;
	height: 2px;
	background: rgba(228, 226, 221, 0.2);
	border-radius: 50%;
	animation: fmParticle 12s ease-in-out infinite;
}

@keyframes fmParticle {
	0%, 100% { transform: translate(0, 0); opacity: 0; }
	15% { opacity: 1; }
	85% { opacity: 1; }
	50% { transform: translate(40px, -50px); }
}


/* ---- HERO CONTENT ---- */
.fm-hero-content {
	position: relative;
	z-index: 10;
}

.fm-trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 22px;
	background: rgba(228, 226, 221, 0.06);
	border: 1px solid rgba(228, 226, 221, 0.15);
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--fm-accent);
	margin-bottom: 28px;
	backdrop-filter: blur(10px);
	letter-spacing: 0.02em;
}

.fm-pulse {
	display: inline-block;
	width: 8px;
	height: 8px;
	background: var(--fm-green);
	border-radius: 50%;
	animation: fmPulse 2s ease infinite;
}

@keyframes fmPulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(32, 191, 108, 0.4); }
	50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(32, 191, 108, 0); }
}

.fm-hero-title {
	font-size: clamp(42px, 6vw, 76px);
	font-weight: 900;
	color: #fff;
	line-height: 1.04;
	margin-bottom: 24px;
	letter-spacing: -0.04em;
}

.fm-gradient {
	background: linear-gradient(135deg, #e4e2dd 0%, #a8a69f 50%, #e4e2dd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	animation: fmGradShift 5s ease infinite;
}

@keyframes fmGradShift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.fm-hero-desc {
	font-size: 1.05rem;
	color: var(--fm-muted);
	line-height: 1.8;
	max-width: 500px;
	margin-bottom: 32px;
}

.fm-hero-cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

.fm-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	background: var(--fm-accent);
	color: #0a0a0a;
	font-weight: 700;
	font-size: 0.9rem;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(228, 226, 221, 0.25);
	border: none;
	cursor: pointer;
}

.fm-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(228, 226, 221, 0.4);
	color: #0a0a0a;
}

.fm-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	background: transparent;
	border: 2px solid rgba(228, 226, 221, 0.2);
	color: var(--fm-accent);
	font-weight: 600;
	font-size: 0.9rem;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.fm-btn-secondary:hover {
	border-color: var(--fm-accent);
	color: var(--fm-accent);
	transform: translateY(-2px);
}

.fm-hero-trust {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.fm-hero-trust .trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	color: var(--fm-muted);
	font-weight: 500;
}

.fm-hero-trust .trust-item i {
	color: var(--fm-accent);
	font-size: 0.85rem;
}


/* ---- HERO VISUAL — FiveM Logo ---- */
.fm-hero-visual {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fm-hero-logo {
	max-width: 100%;
	width: 460px;
	height: auto;
	filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.6));
	animation: fmLogoFloat 6s ease-in-out infinite;
}

@keyframes fmLogoFloat {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-16px) rotate(0.5deg); }
}


/* ============================================
   SECTION SHARED STYLES
   ============================================ */
.fm-section-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 18px;
	background: rgba(228, 226, 221, 0.06);
	border: 1px solid rgba(228, 226, 221, 0.12);
	border-radius: 50px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--fm-accent);
	margin-bottom: 20px;
	letter-spacing: 0.03em;
}

.fm-section-tag i { font-size: 0.72rem; }

.fm-section-title {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	color: #fff;
	margin-bottom: 14px;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.fm-section-title span {
	color: var(--fm-accent-d);
}

.fm-section-desc {
	font-size: 0.95rem;
	color: var(--fm-muted);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.7;
}


/* ============================================
   GTA PHONE CONFIGURATOR — UNIQUE MECHANISM
   ============================================ */
.fm-phone-section {
	padding: 100px 0 110px;
	background: var(--fm-bg);
	position: relative;
}

.fm-phone-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(228, 226, 221, 0.1), transparent);
}

.fm-phone-layout {
	display: flex;
	align-items: center;
	gap: 60px;
	max-width: 1100px;
	margin: 0 auto;
}

/* The Phone Device */
.fm-phone {
	flex-shrink: 0;
	width: 300px;
	height: 600px;
	background: #111;
	border-radius: 36px;
	border: 3px solid rgba(228, 226, 221, 0.12);
	position: relative;
	overflow: hidden;
	box-shadow:
		0 30px 80px rgba(0, 0, 0, 0.6),
		0 0 0 1px rgba(228, 226, 221, 0.05),
		inset 0 0 40px rgba(0, 0, 0, 0.3);
}

.fm-phone-notch {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 26px;
	background: #0a0a0a;
	border-radius: 0 0 16px 16px;
	z-index: 20;
}

.fm-phone-notch::after {
	content: '';
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 5px;
	background: rgba(228, 226, 221, 0.1);
	border-radius: 10px;
}

.fm-phone-screen {
	position: absolute;
	inset: 12px;
	border-radius: 26px;
	overflow: hidden;
	background: #0d0d0d;
}

/* Phone Status Bar */
.fm-phone-statusbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 20px;
	padding-top: 30px;
	font-size: 0.65rem;
	font-weight: 600;
	color: var(--fm-accent);
	position: relative;
	z-index: 21;
}

.fm-phone-statusbar .time { letter-spacing: 0.02em; }

.fm-phone-statusbar .icons {
	display: flex;
	gap: 5px;
	font-size: 0.6rem;
}

/* Phone Home Screen */
.fm-phone-home {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 44px 16px 16px;
}

.fm-phone-home-header {
	text-align: center;
	margin-bottom: 20px;
}

.fm-phone-home-header h4 {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--fm-accent);
	margin: 0 0 3px;
}

.fm-phone-home-header p {
	font-size: 0.62rem;
	color: var(--fm-subtle);
	margin: 0;
}

/* Phone App Grid */
.fm-phone-apps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	padding: 0 4px;
}

.fm-phone-app {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
	padding: 8px 0;
}

.fm-phone-app:hover {
	transform: scale(1.08);
}

.fm-phone-app.active .fm-app-icon {
	border-color: var(--fm-accent);
	box-shadow: 0 0 16px rgba(228, 226, 221, 0.15);
}

.fm-app-icon {
	width: 46px;
	height: 46px;
	background: rgba(228, 226, 221, 0.06);
	border: 1px solid rgba(228, 226, 221, 0.08);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.05rem;
	color: var(--fm-accent);
	transition: all 0.2s ease;
}

.fm-phone-app span {
	font-size: 0.58rem;
	color: var(--fm-muted);
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
}

.fm-phone-app.active span {
	color: var(--fm-accent);
}

/* Phone Notification */
.fm-phone-notif {
	margin-top: auto;
	background: rgba(228, 226, 221, 0.06);
	border: 1px solid rgba(228, 226, 221, 0.08);
	border-radius: 14px;
	padding: 12px 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.fm-notif-icon {
	width: 32px;
	height: 32px;
	background: rgba(32, 191, 108, 0.15);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	color: var(--fm-green);
	flex-shrink: 0;
}

.fm-notif-text {
	flex: 1;
	min-width: 0;
}

.fm-notif-text strong {
	display: block;
	font-size: 0.65rem;
	color: var(--fm-accent);
	margin-bottom: 1px;
}

.fm-notif-text span {
	font-size: 0.58rem;
	color: var(--fm-subtle);
}

/* Phone Home Bar */
.fm-phone-homebar {
	width: 100px;
	height: 4px;
	background: rgba(228, 226, 221, 0.2);
	border-radius: 4px;
	margin: 8px auto;
}


/* ---- Right side: Plan Details ---- */
.fm-phone-details {
	flex: 1;
}

.fm-phone-details-header {
	margin-bottom: 32px;
}

.fm-phone-details-header h3 {
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 800;
	color: #fff;
	margin-bottom: 10px;
	letter-spacing: -0.02em;
}

.fm-phone-details-header p {
	font-size: 0.92rem;
	color: var(--fm-muted);
	line-height: 1.7;
	max-width: 440px;
}

/* Plan Detail Card */
.fm-detail-card {
	display: none;
	animation: fmCardIn 0.4s ease;
}

.fm-detail-card.active {
	display: block;
}

@keyframes fmCardIn {
	from { opacity: 0; transform: translateY(15px); }
	to { opacity: 1; transform: translateY(0); }
}

.fm-detail-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--fm-border);
}

.fm-detail-plan-info h4 {
	font-size: 1.3rem;
	font-weight: 800;
	color: #fff;
	margin: 0 0 4px;
}

.fm-detail-plan-info span {
	font-size: 0.78rem;
	color: var(--fm-subtle);
}

.fm-detail-price {
	text-align: right;
}

.fm-detail-price .amount {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--fm-accent);
	line-height: 1;
}

.fm-detail-price .amount .curr {
	font-size: 1.1rem;
	vertical-align: top;
	margin-right: 2px;
}

.fm-detail-price .amount .per {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--fm-muted);
}

.fm-detail-price .ht {
	font-size: 0.68rem;
	color: var(--fm-subtle);
	margin-top: 4px;
}

/* Specs Grid */
.fm-detail-specs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 24px;
}

.fm-detail-spec {
	background: var(--fm-card);
	border: 1px solid var(--fm-border);
	border-radius: 12px;
	padding: 16px;
	text-align: center;
	transition: all 0.3s ease;
}

.fm-detail-spec:hover {
	border-color: var(--fm-border-h);
}

.fm-detail-spec i {
	font-size: 1rem;
	color: var(--fm-accent-d);
	margin-bottom: 8px;
	display: block;
}

.fm-detail-spec .val {
	font-size: 1.15rem;
	font-weight: 800;
	color: #fff;
	display: block;
	margin-bottom: 3px;
}

.fm-detail-spec .lbl {
	font-size: 0.68rem;
	color: var(--fm-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Includes List */
.fm-detail-includes {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-bottom: 28px;
}

.fm-detail-inc {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: rgba(228, 226, 221, 0.02);
	border-radius: 10px;
	font-size: 0.8rem;
	color: var(--fm-muted);
	font-weight: 500;
}

.fm-detail-inc i {
	font-size: 0.65rem;
	color: var(--fm-green);
	width: 18px;
	height: 18px;
	background: rgba(32, 191, 108, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.fm-detail-cta {
	display: flex;
	gap: 12px;
}


/* ============================================
   PRICING PLANS
   ============================================ */
.fm-pricing-section {
	padding: 100px 0;
	background: var(--fm-bg2);
	position: relative;
}

.fm-pricing-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(228, 226, 221, 0.1), transparent);
}

.fm-plans-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 960px;
	margin: 50px auto 0;
}

.fm-plan-card {
	background: var(--fm-card);
	border: 1px solid var(--fm-border);
	border-radius: 18px;
	padding: 28px 24px;
	position: relative;
	transition: all 0.35s ease;
}

.fm-plan-card:hover {
	border-color: var(--fm-border-h);
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.fm-plan-card.popular {
	border-color: rgba(228, 226, 221, 0.25);
	background: linear-gradient(180deg, rgba(228, 226, 221, 0.04) 0%, var(--fm-card) 40%);
}

.fm-plan-card.popular:hover {
	border-color: var(--fm-accent);
	box-shadow: 0 20px 60px rgba(228, 226, 221, 0.08);
}

.fm-plan-popular-tag {
	position: absolute;
	top: -11px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--fm-accent);
	color: #0a0a0a;
	padding: 4px 18px;
	border-radius: 50px;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.fm-plan-header {
	text-align: center;
	margin-bottom: 20px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--fm-border);
}

.fm-plan-icon {
	width: 48px;
	height: 48px;
	background: rgba(228, 226, 221, 0.06);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
	font-size: 1.2rem;
	color: var(--fm-accent);
}

.fm-plan-card.popular .fm-plan-icon {
	background: var(--fm-accent);
	color: #0a0a0a;
}

.fm-plan-name {
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 4px;
}

.fm-plan-tagline {
	font-size: 0.78rem;
	color: var(--fm-subtle);
	margin: 0;
}

.fm-plan-price {
	text-align: center;
	margin-bottom: 22px;
}

.fm-plan-price .price-currency {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--fm-accent);
	vertical-align: top;
}

.fm-plan-price .price-amount {
	font-size: 2.8rem;
	font-weight: 900;
	color: #fff;
	line-height: 1;
}

.fm-plan-price .price-period {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--fm-muted);
}

.fm-plan-price .price-ht {
	display: block;
	font-size: 0.68rem;
	color: var(--fm-subtle);
	margin-top: 6px;
}

/* Plan Specs */
.fm-plan-specs {
	margin-bottom: 20px;
}

.fm-plan-spec {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(228, 226, 221, 0.04);
	font-size: 0.82rem;
}

.fm-plan-spec:last-child { border-bottom: none; }

.fm-plan-spec i {
	width: 28px;
	height: 28px;
	background: rgba(228, 226, 221, 0.05);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	color: var(--fm-accent-d);
	flex-shrink: 0;
}

.fm-plan-spec-label {
	flex: 1;
	color: var(--fm-muted);
	font-weight: 500;
}

.fm-plan-spec-val {
	color: #fff;
	font-weight: 700;
}

/* Plan Includes */
.fm-plan-includes {
	margin-bottom: 22px;
}

.fm-plan-include {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 0;
	font-size: 0.78rem;
	color: var(--fm-muted);
	font-weight: 500;
}

.fm-plan-include i {
	font-size: 0.6rem;
	color: var(--fm-green);
}

.fm-plan-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px;
	background: rgba(228, 226, 221, 0.06);
	border: 1px solid rgba(228, 226, 221, 0.12);
	border-radius: 12px;
	color: var(--fm-accent);
	font-weight: 600;
	font-size: 0.85rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.fm-plan-btn:hover {
	background: var(--fm-accent);
	color: #0a0a0a;
	border-color: var(--fm-accent);
	transform: translateY(-2px);
}

.fm-plan-card.popular .fm-plan-btn {
	background: var(--fm-accent);
	color: #0a0a0a;
	border-color: var(--fm-accent);
}

.fm-plan-card.popular .fm-plan-btn:hover {
	box-shadow: 0 8px 25px rgba(228, 226, 221, 0.3);
}

/* Plans Compatibility */
.fm-plans-compat {
	margin-top: 50px;
}

.fm-plans-compat p {
	font-size: 0.82rem;
	color: var(--fm-subtle);
	margin-bottom: 14px;
}

.fm-compat-tags {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.fm-compat-tag {
	padding: 6px 16px;
	background: rgba(228, 226, 221, 0.04);
	border: 1px solid var(--fm-border);
	border-radius: 8px;
	font-size: 0.75rem;
	color: var(--fm-muted);
	font-weight: 500;
}


/* ============================================
   FEATURES
   ============================================ */
.fm-features-section {
	padding: 100px 0;
	background: var(--fm-bg);
	position: relative;
}

.fm-features-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(228, 226, 221, 0.1), transparent);
}

.fm-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 50px;
}

.fm-feature-card {
	background: var(--fm-card);
	border: 1px solid var(--fm-border);
	border-radius: 16px;
	padding: 30px 26px;
	transition: all 0.35s ease;
	opacity: 0;
	transform: translateY(30px);
}

.fm-feature-card.revealed {
	opacity: 1;
	transform: translateY(0);
}

.fm-feature-card:hover {
	border-color: var(--fm-border-h);
	transform: translateY(-5px);
}

.fm-feature-card.revealed:hover {
	transform: translateY(-5px);
}

.fm-feat-icon-wrap {
	position: relative;
	margin-bottom: 18px;
}

.fm-feat-icon {
	width: 50px;
	height: 50px;
	background: rgba(228, 226, 221, 0.06);
	border: 1px solid var(--fm-border);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: var(--fm-accent);
	position: relative;
	z-index: 2;
}

.fm-feat-glow {
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: rgba(228, 226, 221, 0.06);
	border-radius: 50%;
	filter: blur(20px);
	z-index: 1;
}

.fm-feature-card h4 {
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
}

.fm-feature-card p {
	font-size: 0.85rem;
	color: var(--fm-muted);
	margin: 0;
	line-height: 1.65;
}

.fm-feat-tag {
	display: inline-block;
	margin-top: 14px;
	padding: 4px 12px;
	background: rgba(228, 226, 221, 0.04);
	border: 1px solid var(--fm-border);
	border-radius: 6px;
	font-size: 0.68rem;
	font-weight: 600;
	color: var(--fm-accent-d);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}


/* ============================================
   DISCORD COMMUNITY CTA
   ============================================ */
.fm-community-section {
	padding: 80px 0;
	background: var(--fm-bg2);
	position: relative;
}

.fm-community-card {
	background: var(--fm-card);
	border: 1px solid var(--fm-border);
	border-radius: 20px;
	padding: 50px;
	position: relative;
	overflow: hidden;
}

.fm-comm-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.08;
	pointer-events: none;
}

.fm-comm-blob.b1 {
	top: -40px;
	right: -40px;
	width: 300px;
	height: 300px;
	background: rgba(228, 226, 221, 0.3);
}

.fm-comm-blob.b2 {
	bottom: -50px;
	left: -30px;
	width: 250px;
	height: 250px;
	background: rgba(168, 166, 159, 0.2);
}

.fm-community-content {
	position: relative;
	z-index: 2;
}

.fm-comm-icon {
	width: 54px;
	height: 54px;
	background: rgba(228, 226, 221, 0.06);
	border: 1px solid var(--fm-border);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--fm-accent);
	margin-bottom: 18px;
}

.fm-community-content h3 {
	font-size: 1.5rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
}

.fm-community-content p {
	font-size: 0.9rem;
	color: var(--fm-muted);
	max-width: 420px;
	line-height: 1.7;
	margin-bottom: 18px;
}

.fm-comm-stats {
	display: flex;
	gap: 24px;
}

.fm-comm-stat {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	color: var(--fm-muted);
}

.fm-comm-stat i { color: var(--fm-accent-d); }

.fm-join-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	background: var(--fm-accent);
	color: #0a0a0a;
	font-weight: 700;
	font-size: 0.92rem;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(228, 226, 221, 0.2);
}

.fm-join-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(228, 226, 221, 0.35);
	color: #0a0a0a;
}

.fm-invite-code {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.78rem;
	color: var(--fm-subtle);
	margin-top: 12px;
}


/* ============================================
   FAQ
   ============================================ */
.fm-faq-section {
	padding: 100px 0;
	background: var(--fm-bg);
	position: relative;
}

.fm-faq-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(228, 226, 221, 0.1), transparent);
}

.fm-faq-list {
	margin-top: 10px;
}

.fm-faq-item {
	background: var(--fm-card);
	border: 1px solid var(--fm-border);
	border-radius: 14px;
	margin-bottom: 10px;
	overflow: hidden;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
}

.fm-faq-item.revealed {
	opacity: 1;
	transform: translateY(0);
}

.fm-faq-item:hover {
	border-color: var(--fm-border-h);
}

.fm-faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	cursor: pointer;
	gap: 16px;
}

.fm-faq-q span {
	font-size: 0.92rem;
	font-weight: 600;
	color: #fff;
}

.fm-faq-q i {
	font-size: 0.7rem;
	color: var(--fm-accent-d);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.fm-faq-item.active .fm-faq-q i {
	transform: rotate(180deg);
}

.fm-faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.fm-faq-item.active .fm-faq-a {
	max-height: 200px;
}

.fm-faq-a p {
	padding: 0 24px 20px;
	margin: 0;
	font-size: 0.85rem;
	color: var(--fm-muted);
	line-height: 1.7;
}


/* ============================================
   FINAL CTA
   ============================================ */
.fm-final-cta {
	padding: 100px 0;
	background: var(--fm-bg2);
	position: relative;
}

.fm-final-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(228, 226, 221, 0.1), transparent);
}

.fm-final-title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
	letter-spacing: -0.03em;
}

.fm-final-desc {
	font-size: 0.95rem;
	color: var(--fm-muted);
	max-width: 480px;
	margin: 0 auto 32px;
	line-height: 1.7;
}

.fm-final-buttons {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
	.fm-hero-visual { display: none; }

	.fm-phone-layout {
		flex-direction: column;
		gap: 40px;
	}

	.fm-phone {
		width: 260px;
		height: 520px;
		margin: 0 auto;
	}

	.fm-plans-grid {
		grid-template-columns: 1fr;
		max-width: 380px;
		margin-left: auto;
		margin-right: auto;
	}

	.fm-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.fm-community-card {
		padding: 32px;
	}

	.fm-detail-specs {
		grid-template-columns: repeat(2, 1fr);
	}

	.fm-detail-includes {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.fm-features-grid {
		grid-template-columns: 1fr;
	}

	.fm-hero { padding: 100px 0 60px; }

	.fm-phone-section,
	.fm-pricing-section,
	.fm-features-section,
	.fm-faq-section,
	.fm-final-cta {
		padding: 70px 0;
	}

	.fm-community-card {
		padding: 26px;
	}

	.fm-detail-specs {
		grid-template-columns: 1fr 1fr;
	}

	.fm-detail-cta {
		flex-direction: column;
	}
}

@media (max-width: 576px) {
	.fm-hero-title {
		font-size: 2.5rem;
	}

	.fm-detail-specs {
		grid-template-columns: 1fr;
	}
}
