/* ========== GOLDX Design System v2 ========== */
:root {
	--gx-bg-deep: #0a0e17;
	--gx-bg-card: #141b2d;
	--gx-bg-elevated: #1a2236;
	--gx-gold: #d4af37;
	--gx-gold-light: #f0d78c;
	--gx-gold-dark: #b8860b;
	--gx-text: #f1f5f9;
	--gx-muted: #94a3b8;
	--gx-border: rgba(148, 163, 184, 0.18);
	--gx-radius: 16px;
	--gx-radius-sm: 12px;
	--gx-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
	--gx-font: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	--gx-font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
	--gx-nav-height: 96px;
}

.gx-public-site {
	font-family: var(--gx-font);
	background: var(--gx-bg-deep);
	color: var(--gx-text);
	-webkit-font-smoothing: antialiased;
}

.gx-public-site h1,
.gx-public-site h2,
.gx-public-site h3,
.gx-public-site h4,
.gx-public-site .gx-section-title {
	font-family: var(--gx-font-display);
	color: var(--gx-text);
}

/* ---- Navbar (glass) ---- */
.gx-public-site .navbar-custom {
	background: rgba(10, 14, 23, 0.72) !important;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--gx-border);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
	transition: background 0.3s ease, padding 0.3s ease;
	padding: 0.65rem 1.25rem !important;
}

.gx-public-site .navbar-custom.top-nav-collapse {
	background: rgba(10, 14, 23, 0.92) !important;
	padding: 0.45rem 1.25rem !important;
}

.gx-public-site .navbar-custom .navbar-brand.logo-image img {
	height: 52px !important;
	width: auto !important;
}

.gx-public-site.page-home .navbar-custom .navbar-brand.logo-image.color,
.gx-public-site.page-home .navbar-custom.top-nav-collapse .navbar-brand.logo-image.color {
	display: none !important;
}

.gx-public-site.page-home .navbar-custom .navbar-brand.logo-image.white,
.gx-public-site.page-home .navbar-custom.top-nav-collapse .navbar-brand.logo-image.white {
	display: block !important;
}

.gx-public-site.page-home .navbar-custom .nav-item .nav-link,
.gx-public-site.page-home .navbar-custom.top-nav-collapse .nav-item .nav-link {
	color: #e2e8f0 !important;
}

.gx-public-site.page-home .navbar-custom .nav-item .nav-link:hover,
.gx-public-site.page-home .navbar-custom .nav-item .nav-link.active,
.gx-public-site.page-home .navbar-custom.top-nav-collapse .nav-item .nav-link:hover,
.gx-public-site.page-home .navbar-custom.top-nav-collapse .nav-item .nav-link.active {
	color: var(--gx-gold-light) !important;
}

.gx-public-site.page-home .navbar-custom .navbar-toggler-awesome {
	color: var(--gx-gold) !important;
}

.gx-public-site.page-home .navbar-custom .dropdown-menu {
	background: var(--gx-bg-card);
	border-color: var(--gx-border);
}

.gx-public-site.page-home .navbar-custom .dropdown-item {
	color: var(--gx-text);
}

.gx-public-site.page-home .navbar-custom .dropdown-item:hover {
	background: var(--gx-bg-elevated);
	color: var(--gx-gold-light);
}

.gx-public-site .navbar-custom .nav-item .nav-link {
	font-weight: 500;
	position: relative;
	transition: color 0.2s ease;
}

.gx-public-site .navbar-custom .nav-item .nav-link.active::after {
	content: '';
	position: absolute;
	left: 0.75rem;
	right: 0.75rem;
	bottom: 0.15rem;
	height: 2px;
	background: linear-gradient(90deg, var(--gx-gold), var(--gx-gold-light));
	border-radius: 2px;
}

.gx-public-site .navbar-custom .social-icons .fa-stack-2x {
	color: rgba(212, 175, 55, 0.2) !important;
}

.gx-public-site .navbar-custom .social-icons .fa-stack-1x {
	color: var(--gx-gold-light) !important;
}

/* ---- Footer ---- */
.gx-public-site .footer-frame {
	display: none !important;
}

.gx-public-site .footer.gx-footer {
	background: linear-gradient(180deg, #0d1220 0%, #0a0e17 100%) !important;
	padding: 3.5rem 0 2rem;
	border-top: 1px solid var(--gx-border);
}

.gx-public-site .footer .footer-col h4 {
	color: var(--gx-gold-light);
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.gx-public-site .footer .footer-col p,
.gx-public-site .footer .footer-col .media-body,
.gx-public-site .footer .footer-col a.white {
	color: var(--gx-muted) !important;
}

.gx-public-site .footer .footer-col a.white:hover {
	color: var(--gx-gold-light) !important;
	text-decoration: none;
}

.gx-public-site .footer .footer-col .fas,
.gx-public-site .footer .footer-col .fa-square {
	color: var(--gx-gold) !important;
}

.gx-public-site .footer .fa-stack-2x {
	color: rgba(212, 175, 55, 0.15) !important;
}

.gx-public-site .footer .fa-stack-1x {
	color: var(--gx-gold-light) !important;
}

.gx-public-site .copyright {
	background: #060910 !important;
	padding: 1rem 0;
	border-top: 1px solid var(--gx-border);
}

.gx-public-site .copyright .p-small {
	color: var(--gx-muted) !important;
	margin: 0;
}

.gx-public-site .gx-footer-brand {
	color: var(--gx-gold-light) !important;
}

/* ---- Buttons ---- */
.gx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.5rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	text-decoration: none !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	border: 2px solid transparent;
}

.gx-btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.gx-btn-gold {
	background: linear-gradient(135deg, var(--gx-gold) 0%, #f5d46b 100%);
	color: #1a1200 !important;
	box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.gx-btn-gold:hover {
	box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45);
	color: #1a1200 !important;
}

.gx-btn-outline {
	background: transparent;
	border-color: rgba(212, 175, 55, 0.5);
	color: var(--gx-gold-light) !important;
}

.gx-btn-outline:hover {
	background: rgba(212, 175, 55, 0.1);
	border-color: var(--gx-gold);
	color: var(--gx-gold-light) !important;
}

[x-cloak] { display: none !important; }

/* Alpine + Bootstrap tabs: active pane must win over .tab-pane { display:none } */
#goldxTabsContent > .tab-pane.active {
	display: block !important;
}

.gx-blog-hero,
.gx-blog-detail {
  background: linear-gradient(180deg, #0a0e17 0%, #0f1419 100%);
}

.page-blog .gx-blog-card h2,
.page-blog-detail .gx-blog-prose {
  color: inherit;
}

.gx-home-blog .gx-blog-card {
  padding: 1.15rem;
  border-radius: var(--gx-radius);
  background: linear-gradient(155deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid var(--gx-border);
  box-shadow: var(--gx-shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gx-home-blog .gx-blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.35);
}

.gx-home-blog__image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gx-hero.header {
	background: radial-gradient(ellipse 100% 80% at 70% 0%, rgba(212, 175, 55, 0.12) 0%, transparent 55%),
		linear-gradient(165deg, #0f1419 0%, #0a0e17 45%, #060910 100%) !important;
	padding-top: calc(var(--gx-nav-height) + 2.5rem) !important;
	padding-bottom: 3rem;
	min-height: auto;
	overflow: hidden;
}

.gx-hero .header-content {
	padding-top: 0 !important;
	padding-bottom: 2rem !important;
}

.gx-hero-intro {
	max-width: 46rem;
	margin: 0 auto 2.5rem;
}

.gx-hero-eyebrow {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gx-gold);
	margin-bottom: 0 !important;
}

.gx-hero-headline.hero-title {
	color: var(--gx-text);
	font-size: clamp(1.75rem, 4.5vw, 2.65rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.gx-hl-gold {
	color: var(--gx-gold);
}

.gx-hl-ai {
	color: #5eead4;
}

.gx-hero-subtitle {
	color: var(--gx-muted);
	font-size: 1.05rem;
	line-height: 1.65;
	max-width: 38rem;
}

.gx-hero-cards {
	display: grid;
	grid-template-columns: minmax(0, 1fr) min-content minmax(0, 1fr);
	column-gap: 1.15rem;
	row-gap: 1.25rem;
	align-items: stretch;
	max-width: 1200px;
	margin: 0.75rem auto 0;
	padding: 0 0.75rem;
}

.gx-hero-col--signals {
	grid-column: 1;
	justify-self: stretch;
	width: 100%;
	max-width: none;
}

.gx-hero-col--phone {
	grid-column: 2;
	align-self: center;
	justify-self: center;
	padding: 0 0.35rem;
	line-height: 0;
	flex-shrink: 0;
}

.gx-hero-col--ai {
	grid-column: 3;
	justify-self: stretch;
	width: 100%;
	max-width: none;
}

.gx-hero-col--signals,
.gx-hero-col--ai {
	display: flex;
	align-items: stretch;
}

.gx-hero-col--signals .gx-hero-card,
.gx-hero-col--ai .gx-hero-card {
	flex: 1;
	width: 100%;
	min-height: 100%;
}

.gx-hero-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
	min-height: 248px;
	padding: 1.15rem 1.25rem;
	border-radius: var(--gx-radius);
	background: linear-gradient(155deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
	border: 1px solid var(--gx-border);
	box-shadow: var(--gx-shadow);
	text-decoration: none !important;
	transition: transform 0.25s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}

.gx-hero-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
	text-decoration: none !important;
}

.gx-hero-card--signals:hover {
	border-color: rgba(212, 175, 55, 0.45);
}

.gx-hero-card--ai:hover {
	border-color: rgba(94, 234, 212, 0.4);
}

.gx-hero-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	margin-bottom: 1rem;
}

.gx-hero-card--signals .gx-hero-card-icon {
	margin-bottom: 0;
}

.gx-hero-card--ai .gx-hero-card-icon {
	margin-bottom: 0;
}

.gx-hero-card-stat {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
	gap: 0.1rem;
	margin-left: auto;
}

.gx-hero-card-stat-label {
	font-size: 0.68rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--gx-muted);
	line-height: 1.2;
}

.gx-hero-card-stat-value {
	font-size: 1.4rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, #bbf7d0 0%, #4ade80 50%, #22c55e 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 12px rgba(74, 222, 128, 0.35));
}

.gx-hero-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
	border-radius: var(--gx-radius-sm);
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid rgba(212, 175, 55, 0.28);
	flex-shrink: 0;
}

.gx-hero-card-icon i {
	font-size: 1.2rem;
	color: var(--gx-gold);
	line-height: 1;
}

.gx-hero-card-icon--ai {
	background: rgba(94, 234, 212, 0.1);
	border-color: rgba(94, 234, 212, 0.28);
}

.gx-hero-card-icon--ai i {
	color: #5eead4;
}

.gx-hero-card-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.65rem;
	line-height: 1.35;
}

.gx-hero-card-title-text {
	display: inline;
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.35;
}

.gx-hero-card--signals .gx-hero-card-title-text {
	background: linear-gradient(135deg, #f5d46b 0%, #d4af37 48%, #f0d78c 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.35));
}

.gx-hero-card--ai .gx-hero-card-title-text {
	background: linear-gradient(135deg, #a7f3d0 0%, #5eead4 50%, #2dd4bf 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 14px rgba(94, 234, 212, 0.3));
}

.gx-hero-card-live {
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #4ade80;
	box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
	flex-shrink: 0;
}

.gx-hero-card-text {
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--gx-muted);
	margin-bottom: 1.15rem;
	flex-grow: 1;
}

.gx-hero-card-cta {
	font-size: 0.95rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
}

.gx-hero-card--signals .gx-hero-card-cta {
	color: var(--gx-gold);
}

.gx-hero-card--ai .gx-hero-card-cta {
	color: #5eead4;
}

.gx-hero-phone {
	display: block;
	max-width: min(280px, 44vw);
	width: auto;
	height: auto;
	filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
	animation: gx-hero-float 5s ease-in-out infinite;
}

.gx-hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 1.5rem;
	padding-top: 2rem;
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}

.gx-hero-trust--centered {
	justify-content: center;
}

.gx-hero-trust span {
	font-size: 0.88rem;
	color: var(--gx-muted);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.gx-hero-trust i {
	color: var(--gx-gold);
}

.gx-hero-packages-link a {
	font-size: 0.88rem;
	color: var(--gx-muted);
	text-decoration: none;
	transition: color 0.15s ease;
}

.gx-hero-packages-link a:hover {
	color: var(--gx-gold-light);
}

.gx-hero-packages-link i {
	color: var(--gx-gold);
	margin-right: 0.25rem;
}

@keyframes gx-hero-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* ---- Section titles ---- */
.gx-section-heading {
	text-align: center;
	margin-bottom: 2.5rem;
}

.gx-section-heading h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 0.75rem;
}

.gx-section-heading .p-heading,
.gx-section-heading .p-large {
	color: var(--gx-muted);
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

/* ---- Features tabs (dark) ---- */
.gx-public-site.page-home #header,
.gx-public-site.page-home #features,
.gx-public-site.page-home #preview,
.gx-public-site.page-home #contact {
	scroll-margin-top: calc(var(--gx-nav-height, 96px) + 0.75rem);
}

.gx-public-site.page-home .tabs {
	background: linear-gradient(180deg, #0a0e17 0%, #0f1419 100%);
	padding: 4rem 0;
	margin-top: 0 !important;
}

.gx-public-site.page-home .tabs h2 {
	color: var(--gx-text);
	text-align: center;
	font-weight: 800;
}

.gx-public-site.page-home .tabs .p-heading.p-large {
	color: var(--gx-muted);
	text-align: center;
}

.gx-public-site.page-home #goldxTabs {
	border: none;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
	padding: 0.35rem;
	background: rgba(20, 27, 45, 0.8);
	border-radius: 999px;
	border: 1px solid var(--gx-border);
	width: fit-content;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.gx-public-site.page-home #goldxTabs .nav-item {
	margin: 0;
}

.gx-public-site.page-home #goldxTabs .nav-link {
	border: none !important;
	border-radius: 999px !important;
	color: var(--gx-muted) !important;
	font-weight: 600;
	padding: 0.65rem 1.15rem;
	background: transparent;
}

.gx-public-site.page-home #goldxTabs .nav-link.active {
	background: linear-gradient(135deg, var(--gx-gold-dark), var(--gx-gold)) !important;
	color: #1a1200 !important;
}

.gx-public-site.page-home #goldxTabs .nav-link i {
	margin-right: 0.35rem;
}

.gx-public-site.page-home #goldxTabs .nav-link .gx-tab-icon-candles {
	width: 1rem;
	height: 1rem;
	margin-right: 0.35rem;
	flex-shrink: 0;
	vertical-align: -0.1em;
}

.gx-public-site.page-home #goldxTabs .nav-link {
	display: inline-flex;
	align-items: center;
}

/* Dark feature cards on homepage — all feature tabs */
.gx-public-site.page-home #goldxTabsContent .feature-glass-card {
	background: linear-gradient(155deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
	border: 1px solid var(--gx-border) !important;
	box-shadow: var(--gx-shadow);
}

.gx-public-site.page-home #goldxTabsContent .feature-glass-card .card-title {
	color: var(--gx-text) !important;
}

.gx-public-site.page-home #goldxTabsContent .feature-glass-card p {
	color: var(--gx-muted) !important;
}

.gx-public-site.page-home #goldxTabsContent .feature-glass-card .card-icon.feature-icon-wrap {
	background: rgba(212, 175, 55, 0.12) !important;
	border-color: rgba(212, 175, 55, 0.28) !important;
}

.gx-public-site.page-home #goldxTabsContent .features-tab-col--phone {
	display: flex;
	justify-content: center;
	align-items: center;
}

.gx-public-site.page-home #goldxTabsContent .features-tab-col--phone img {
	display: block;
	width: auto;
	height: auto;
	max-width: min(280px, 78vw);
	max-height: 560px;
	object-fit: contain;
	margin: 0 auto;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
}

.gx-public-site.page-home .gx-tab-intro h3 {
	color: var(--gx-gold-light);
	font-weight: 700;
	font-size: 1.35rem;
}

.gx-public-site.page-home .gx-tab-intro p {
	color: var(--gx-muted);
}

.gx-public-site.page-home .gx-metric-gain {
	color: #4ade80 !important;
	font-weight: 700;
}

.gx-public-site.page-home .gx-metric-loss {
	color: #f87171 !important;
	font-weight: 700;
}

.gx-public-site.page-home #goldxTabsContent .gx-success-rate-value {
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin-top: 0.1rem;
	background: linear-gradient(135deg, #bbf7d0 0%, #4ade80 50%, #22c55e 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 14px rgba(74, 222, 128, 0.4));
}

/* ---- Preview ---- */
.gx-public-site.page-home #preview.basic-1 {
	background: #0a0e17;
	padding: 4rem 0;
}

.gx-public-site.page-home #preview h2 {
	color: var(--gx-text);
	text-align: center;
	font-weight: 800;
}

.gx-public-site.page-home #preview .p-heading {
	color: var(--gx-muted);
	text-align: center;
}

.gx-public-site.page-home #preview .video-wrapper img {
	border-radius: var(--gx-radius);
	box-shadow: var(--gx-shadow);
}

/* ---- Download CTA ---- */
.gx-public-site.page-home .basic-4.basic-hero-1 {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(10, 14, 23, 0.95) 50%, #0a0e17 100%);
	padding: 4rem 0;
	border-top: 1px solid var(--gx-border);
	border-bottom: 1px solid var(--gx-border);
}

.gx-public-site.page-home .basic-4 h2 {
	color: var(--gx-text);
	font-weight: 800;
}

.gx-public-site.page-home .basic-4 h2 .blue {
	color: var(--gx-gold-light) !important;
}

.gx-public-site.page-home .basic-4 .p-large {
	color: var(--gx-muted);
}

.gx-public-site.page-home .basic-4 .btn-solid-reg {
	background: linear-gradient(135deg, var(--gx-gold), #f5d46b) !important;
	color: #1a1200 !important;
	border: none;
	border-radius: 999px;
	padding: 0.85rem 1.5rem;
	font-weight: 700;
	box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.gx-public-site.page-home .basic-4 img {
	border-radius: var(--gx-radius);
	filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.4));
}

/* ---- Testimonials ---- */
.gx-public-site.page-home .testimonial {
	background: #0d1220;
	padding: 4rem 0;
}

.gx-public-site.page-home .testimonial .card {
	background: var(--gx-bg-card);
	border: 1px solid var(--gx-border);
	border-radius: var(--gx-radius);
	overflow: hidden;
	box-shadow: var(--gx-shadow);
}

.gx-public-site.page-home .testimonial .testimonial-text {
	color: var(--gx-muted);
}

.gx-public-site.page-home .testimonial .testimonial-author {
	color: var(--gx-gold-light);
	font-weight: 700;
}

.gx-public-site.page-home .testimonial .swiper-button-prev,
.gx-public-site.page-home .testimonial .swiper-button-next {
	background: rgba(212, 175, 55, 0.15);
	border-radius: 50%;
	border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ---- Contact ---- */
.gx-public-site.page-home #contact.form {
	background: linear-gradient(180deg, #0a0e17 0%, #060910 100%);
	padding: 4rem 0 5rem;
}

.gx-public-site.page-home #contact h2 {
	color: var(--gx-text);
	text-align: center;
	font-weight: 800;
}

.gx-public-site.page-home #contact .li-space-lg li {
	color: var(--gx-muted);
}

.gx-public-site.page-home #contact .li-space-lg a.blue {
	color: var(--gx-gold-light) !important;
}

.gx-public-site.page-home #contact .form-control-input,
.gx-public-site.page-home #contact .form-control-textarea {
	background: var(--gx-bg-card);
	border: 1px solid var(--gx-border);
	color: var(--gx-text);
	border-radius: var(--gx-radius-sm);
}

.gx-public-site.page-home #contact .form-control-input:focus,
.gx-public-site.page-home #contact .form-control-textarea:focus {
	border-color: var(--gx-gold);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.gx-public-site.page-home #contact .label-control {
	color: var(--gx-muted);
}

.gx-public-site.page-home #contact .form-control-submit-button {
	background: linear-gradient(135deg, var(--gx-gold), #f5d46b) !important;
	color: #1a1200 !important;
	border: none;
	border-radius: 999px;
	font-weight: 700;
	padding: 0.9rem 2rem;
}

.gx-public-site.page-home #contact .checkbox a {
	color: var(--gx-gold-light);
}

.gx-public-site .back-to-top {
	background: var(--gx-gold) !important;
	color: #1a1200 !important;
}

.header .text-container h1.hero-title {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 1rem;
}

.main-section {
    min-height: 70vh !important;
    margin-top: 18vh;
}
/* Remove hero slider overrides (revert) */

.navbar-custom .navbar-brand.logo-image img {
	height: 52px !important;
	width: auto !important;
}

.text-start {
    text-align: left !important;
}

/* removed sticky-cta (revert) */

/* Mobile-first modern tweaks */
@media (max-width: 767.98px) {
	html, body {
		font-size: 15px;
	}

	.navbar-custom .navbar-brand.logo-image img {
		height: 44px !important;
	}

	.header .text-container h1.hero-title,
	.header .text-container h3 {
		font-size: 1.4rem;
		line-height: 1.35;
		margin-bottom: 10px;
	}

	.p-header {
		font-size: 0.98rem;
	}

	.header .image-container {
		margin-top: 12px;
	}

	/* Tabs: make horizontally scrollable */
	#goldxTabs {
		overflow-x: auto;
		white-space: nowrap;
		flex-wrap: nowrap;
	}
	#goldxTabs .nav-link {
		padding: 0.5rem 0.75rem;
		font-size: 0.95rem;
	}

	/* Cards spacing */
	.card {
		margin-bottom: 12px;
	}

	/* Sliders: show larger slide per view on mobile */
	.image-slider .swiper-container,
	.card-slider .swiper-container {
		padding: 0 8px;
	}
	.image-slider .swiper-slide,
	.card-slider .swiper-slide {
		width: calc(100% - 24px) !important;
		margin-right: 16px !important;
	}

	/* Sections padding tighten */
	.basic-1,
	.basic-2,
	.basic-3,
	.basic-4,
	.tabs {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.gx-hero.header {
		padding-top: calc(var(--gx-nav-height) + 1.5rem) !important;
	}

	.gx-hero-headline.hero-title {
		font-size: clamp(1.45rem, 6vw, 1.85rem);
	}

	.gx-hero-cards {
		grid-template-columns: 1fr;
		max-width: none;
		column-gap: 0;
		padding: 0;
	}

	.gx-hero-col--signals,
	.gx-hero-col--phone,
	.gx-hero-col--ai {
		grid-column: 1;
		justify-self: stretch;
		max-width: none;
	}

	.gx-hero-col--signals { order: 1; }
	.gx-hero-col--phone { order: 2; }
	.gx-hero-col--ai { order: 3; }

	.gx-hero-card {
		min-height: 0;
		padding: 1.1rem 1.15rem;
	}

	.gx-hero-card-icon {
		width: 44px;
		height: 44px;
		margin-bottom: 0.85rem;
	}

	.gx-hero-card-title-text {
		font-size: 1.08rem;
	}

	.gx-hero-card-text {
		font-size: 0.88rem;
	}

	.gx-hero-phone {
		max-width: min(260px, 78vw);
		margin: 0 auto;
		animation: none;
	}

	.gx-hero-trust--centered {
		flex-direction: column;
		align-items: center;
		gap: 0.35rem;
	}

	/* Footer columns spacing */
	.footer .footer-col {
		margin-bottom: 16px;
	}

	/* Buy-coupon page: remove large top gap on mobile */
	.buy-coupon-page-wrapper .main-section,
	section.coupon-page.main-section {
		margin-top: 0.5rem !important;
	}

    /* revert-specific: nothing */
}

/* ========== Signal History — floating cards ========== */
.signal-history-section {
    position: relative;
    background: radial-gradient(ellipse 120% 80% at 50% 0%, #312e81 0%, #0f172a 55%, #020617 100%) !important;
    padding: 5rem 0 5.5rem;
    overflow: hidden;
}

.signal-history-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08), transparent 40%),
                radial-gradient(circle at 80% 30%, rgba(99, 102, 241, 0.12), transparent 35%);
    pointer-events: none;
}

.signal-history-section .container {
    position: relative;
    z-index: 1;
}

.signal-history-section__title {
    color: #f8fafc !important;
    font-weight: 700;
    font-size: 1.85rem;
    letter-spacing: -0.02em;
}

.signal-history-section__subtitle {
    color: rgba(248, 250, 252, 0.55);
    font-size: 0.92rem;
}

.signal-history-slider-wrap {
    padding: 1.25rem 0 0.5rem;
}

.signal-history-slider-wrap .slider-container {
    overflow: visible;
}

.signal-history-slider.swiper-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    overflow: visible;
    padding: 1rem 2.75rem 2rem;
}

.signal-history-slider .swiper-wrapper {
    align-items: flex-start;
}

.signal-history-slider .swiper-slide {
    width: 300px !important;
    height: auto;
    display: flex;
    padding: 0.35rem 0;
}

/* Floating card — dark glass on navy (GOLDX premium) */
.signal-float-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(
        155deg,
        rgba(30, 41, 59, 0.92) 0%,
        rgba(15, 23, 42, 0.96) 55%,
        rgba(17, 24, 39, 0.98) 100%
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 1.1rem;
    padding: 0.7rem 0.85rem 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 4px 12px rgba(0, 0, 0, 0.35),
        0 16px 40px rgba(0, 0, 0, 0.45),
        0 32px 64px rgba(0, 0, 0, 0.3);
    transform: translateY(0) translateZ(0);
    transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.signal-float-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f5d46b);
    opacity: 0.85;
}

.signal-float-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.06), transparent 70%);
    pointer-events: none;
}

.signal-float-card--win {
    border-color: rgba(34, 197, 94, 0.28);
}

.signal-float-card--win::before {
    background: linear-gradient(90deg, #16a34a, #4ade80);
}

.signal-float-card--win::after {
    background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(34, 197, 94, 0.12), transparent 70%);
}

.signal-float-card--loss {
    border-color: rgba(239, 68, 68, 0.28);
}

.signal-float-card--loss::before {
    background: linear-gradient(90deg, #dc2626, #f87171);
}

.signal-float-card--loss::after {
    background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(239, 68, 68, 0.1), transparent 70%);
}

.signal-float-card--active {
    border-color: rgba(212, 175, 55, 0.35);
}

.signal-float-card--active::before {
    background: linear-gradient(90deg, #b8860b, #f5d46b);
}

.signal-float-card:hover {
    transform: translateY(-14px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 24px 48px rgba(0, 0, 0, 0.5),
        0 40px 72px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(212, 175, 55, 0.08);
}

.signal-float-card--win:hover {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 24px 48px rgba(0, 0, 0, 0.5),
        0 0 36px rgba(34, 197, 94, 0.15);
}

.signal-float-card--loss:hover {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 24px 48px rgba(0, 0, 0, 0.5),
        0 0 36px rgba(239, 68, 68, 0.12);
}

.signal-float-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
    position: relative;
    z-index: 1;
}

.signal-float-card__pair {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #d4af37;
}

.signal-float-card__side {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    flex-shrink: 0;
    border: 1px solid transparent;
}

.signal-float-card__side--buy {
    background: rgba(22, 163, 74, 0.15);
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.35);
}

.signal-float-card__side--sell {
    background: rgba(220, 38, 38, 0.15);
    color: #fca5a5;
    border-color: rgba(248, 113, 113, 0.35);
}

.signal-float-card__hero {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
    position: relative;
    z-index: 1;
}

.signal-float-card__entry {
    text-align: center;
    margin-bottom: 0.45rem;
    padding: 0.4rem 0.45rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0.65rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1;
}

.signal-float-card__entry-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(212, 175, 55, 0.85);
    margin-bottom: 0.15rem;
}

.signal-float-card__entry-val {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #f8fafc;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.signal-float-card__pips {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.signal-float-card__pips small {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.8;
    margin-left: 0.15rem;
}

.signal-float-card__pips--gain { color: #4ade80; }
.signal-float-card__pips--loss { color: #f87171; }
.signal-float-card__pips--active { color: #c4b5fd; font-size: 1.1rem; }

.signal-float-card__date {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(148, 163, 184, 0.85);
    white-space: nowrap;
    flex-shrink: 0;
}

.signal-float-card__stats {
    display: flex;
    gap: 0.4rem;
    margin-top: 0;
    padding-top: 0.45rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    position: relative;
    z-index: 1;
}

.signal-float-card__stat {
    flex: 1;
    min-width: 0;
    background: rgba(15, 23, 42, 0.65);
    border-radius: 0.55rem;
    padding: 0.32rem 0.4rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.signal-float-card__stat-label {
    display: block;
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(148, 163, 184, 0.75);
    margin-bottom: 0.12rem;
    white-space: nowrap;
}

.signal-float-card__stat-val {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #e2e8f0;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.slider-screens.signal-history-section .swiper-button-prev,
.slider-screens.signal-history-section .swiper-button-next {
    top: 50%;
    width: 2.75rem;
    height: 2.75rem;
    margin-top: -1.375rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-size: 0.55rem 0.9rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}

.slider-screens.signal-history-section .swiper-button-prev:hover,
.slider-screens.signal-history-section .swiper-button-next:hover {
    background-color: rgba(212, 175, 55, 0.45);
    transform: scale(1.08);
}

.slider-screens.signal-history-section .swiper-button-prev {
    left: 0.25rem;
}

.slider-screens.signal-history-section .swiper-button-next {
    right: 0.25rem;
}

@media (max-width: 767.98px) {
    .signal-history-section {
        padding: 3rem 0 3.5rem;
    }

    .signal-history-slider.swiper-container {
        padding: 0.75rem 2.25rem 1.5rem;
    }

    .signal-history-slider .swiper-slide {
        width: 280px !important;
    }
}

/* ========== Features tabs — shared 3-column layout ========== */
#goldxTabsContent .features-tab-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: 1rem 1.5rem;
	align-items: start;
	width: 100%;
}

#goldxTabsContent .features-tab-col--left {
	grid-column: 1;
	grid-row: 1;
}

#goldxTabsContent .features-tab-col--phone {
	grid-column: 2;
	grid-row: 1;
}

#goldxTabsContent .features-tab-col--right {
	grid-column: 3;
	grid-row: 1;
}

#goldxTabsContent .feature-glass-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%) !important;
    border: 1px solid rgba(201, 162, 39, 0.18) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#goldxTabsContent .feature-glass-card .card-body {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.1rem !important;
}

#goldxTabsContent .feature-glass-card .card-icon.feature-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.14), rgba(201, 162, 39, 0.05)) !important;
    border: 1px solid rgba(201, 162, 39, 0.22) !important;
    float: none !important;
    margin: 0 !important;
}

#goldxTabsContent .feature-glass-card .card-icon.feature-icon-wrap i {
    font-size: 1.2rem;
    color: #b8860b !important;
    line-height: 1;
}

#goldxTabsContent .feature-glass-card .text-wrapper {
    flex: 1;
    min-width: 0;
    width: auto !important;
    display: block;
}

#goldxTabsContent .feature-glass-card .card-title {
    font-size: 0.98rem;
    line-height: 1.35;
    margin-bottom: 0.35rem;
}

#goldxTabsContent .feature-glass-card p {
    font-size: 0.875rem;
    line-height: 1.45;
    margin-bottom: 0;
    color: #5a6278 !important;
}

#goldxTabsContent .features-tab-col--left,
#goldxTabsContent .features-tab-col--right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#goldxTabsContent .feature-glass-card {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    flex-shrink: 0;
}

#goldxTabsContent .features-tab-col--phone {
	display: flex;
	justify-content: center;
	align-items: center;
}

#goldxTabsContent .features-tab-col--phone img {
	display: block;
	width: auto;
	height: auto;
	max-width: min(280px, 78vw);
	max-height: 560px;
	object-fit: contain;
	margin-left: auto;
	margin-right: auto;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
}

/* Legacy style.css tab image rules — keep all tabs consistent with Features */
.gx-public-site.page-home .tabs #tab-2 img,
.gx-public-site.page-home .tabs #tab-3 img {
	display: block !important;
	margin: 0 auto !important;
	max-width: min(280px, 78vw) !important;
	max-height: 560px !important;
	width: auto !important;
	height: auto !important;
	object-fit: contain !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
}

/* Tablet & mobile: phone first, then cards */
@media (max-width: 991.98px) {
    #goldxTabsContent .features-tab-layout {
        grid-template-columns: 1fr;
        row-gap: 0.25rem;
    }

    #goldxTabsContent .features-tab-col--left,
    #goldxTabsContent .features-tab-col--phone,
    #goldxTabsContent .features-tab-col--right {
        grid-column: 1;
        grid-row: auto;
    }

    #goldxTabsContent .features-tab-col--phone { order: 1; }
    #goldxTabsContent .features-tab-col--left { order: 2; }
    #goldxTabsContent .features-tab-col--right { order: 3; }

    #goldxTabsContent .features-tab-col--phone {
        margin-bottom: 0.5rem;
    }

    #goldxTabsContent .features-tab-col--phone img {
        margin-top: 0.25rem !important;
        margin-bottom: 1rem !important;
        max-width: min(260px, 72vw) !important;
        max-height: 480px !important;
    }

    #goldxTabsContent .card.left-pane,
    #goldxTabsContent .card.right-pane {
        text-align: left !important;
    }

    #goldxTabsContent .card.left-pane .text-wrapper,
    #goldxTabsContent .card.right-pane .text-wrapper {
        width: auto !important;
    }

    #goldxTabsContent .card.left-pane .card-icon,
    #goldxTabsContent .card.right-pane .card-icon {
        float: none !important;
        margin: 0 !important;
    }

    #goldxTabsContent .card.first {
        margin-top: 0 !important;
    }

    #goldxTabsContent .features-tab-col--left,
    #goldxTabsContent .features-tab-col--right {
        gap: 0.85rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    #features .nav-tabs {
        margin-bottom: 1.25rem;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
    }

    #goldxTabsContent .feature-glass-card .card-body {
        padding: 0.85rem 0.95rem !important;
        gap: 0.75rem;
    }

    #goldxTabsContent .feature-glass-card .card-icon.feature-icon-wrap {
        width: 42px;
        height: 42px;
    }

    #goldxTabsContent .feature-glass-card .card-title {
        font-size: 0.92rem;
    }

    #goldxTabsContent .feature-glass-card p {
        font-size: 0.82rem;
    }

    #goldxTabsContent .features-tab-col--phone img {
        max-width: min(240px, 68vw) !important;
        max-height: 440px !important;
    }
}

/* Desktop: preserve mirrored left/right columns */
@media (min-width: 992px) {
    #goldxTabsContent .features-tab-col--left,
    #goldxTabsContent .features-tab-col--right {
        gap: 1.15rem;
    }

    #goldxTabsContent #tab-1 .feature-glass-card.first {
        margin-top: 2.5rem;
    }

    #goldxTabsContent .features-tab-col--left .feature-glass-card .card-body {
        flex-direction: row-reverse;
        text-align: right;
    }

    #goldxTabsContent .features-tab-col--left .feature-glass-card .text-wrapper {
        text-align: right;
    }

    #goldxTabsContent .features-tab-col--right .feature-glass-card .card-body {
        flex-direction: row;
        text-align: left;
    }

    #goldxTabsContent .features-tab-col--phone img {
        margin-top: 2rem;
        margin-bottom: 2rem;
        max-width: min(280px, 100%) !important;
        max-height: 560px !important;
        width: auto !important;
        height: auto !important;
    }
}

/* ========== Packages page — align with global footer/nav ========== */
.gx-public-site.page-packages .packages-page {
	margin-top: 0;
}

.gx-public-site.page-packages .packages-page .section-heading > div:first-child {
	padding-top: 0.25rem;
}

/* ========== Legal pages (Privacy, Terms) ========== */
.gx-public-site.page-legal .navbar-custom .navbar-brand.logo-image.color,
.gx-public-site.page-delete-account .navbar-custom.top-nav-collapse .navbar-brand.logo-image.color {
	display: none !important;
}

.gx-public-site.page-legal .navbar-custom .navbar-brand.logo-image.white,
.gx-public-site.page-delete-account .navbar-custom.top-nav-collapse .navbar-brand.logo-image.white {
	display: block !important;
}

.gx-public-site.page-legal .navbar-custom .nav-item .nav-link,
.gx-public-site.page-legal .navbar-custom.top-nav-collapse .nav-item .nav-link {
	color: #e2e8f0 !important;
}

.gx-public-site.page-legal .navbar-custom .nav-item .nav-link:hover,
.gx-public-site.page-legal .navbar-custom .nav-item .nav-link.active,
.gx-public-site.page-legal .navbar-custom.top-nav-collapse .nav-item .nav-link:hover,
.gx-public-site.page-legal .navbar-custom.top-nav-collapse .nav-item .nav-link.active {
	color: var(--gx-gold-light) !important;
}

.gx-public-site.page-legal .navbar-custom .dropdown-menu {
	background: var(--gx-bg-card);
	border-color: var(--gx-border);
}

.gx-public-site.page-legal .navbar-custom .dropdown-item {
	color: var(--gx-text);
}

.gx-public-site.page-legal .navbar-custom .dropdown-item:hover {
	background: var(--gx-bg-elevated);
	color: var(--gx-gold-light);
}

.gx-legal-page {
	padding: calc(var(--gx-nav-height) + 2.5rem) 0 4rem;
	min-height: 70vh;
	background: linear-gradient(180deg, #0a0e17 0%, #060910 100%);
}

.gx-legal-header h1 {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 800;
	color: var(--gx-gold-light);
	margin-bottom: 0.5rem;
}

.gx-legal-header p {
	color: var(--gx-muted);
	margin-bottom: 2rem;
}

.gx-legal-content {
	max-width: 820px;
	margin: 0 auto;
	padding: 2rem;
	background: var(--gx-bg-card);
	border: 1px solid var(--gx-border);
	border-radius: var(--gx-radius);
	box-shadow: var(--gx-shadow);
	color: var(--gx-muted);
	line-height: 1.75;
	font-size: 0.98rem;
}

.gx-legal-content h1,
.gx-legal-content h2,
.gx-legal-content h3,
.gx-legal-content h4 {
	color: var(--gx-text);
	font-weight: 700;
	margin-top: 1.75rem;
	margin-bottom: 0.75rem;
}

.gx-legal-content h1 { font-size: 1.5rem; }
.gx-legal-content h2 { font-size: 1.25rem; color: var(--gx-gold-light); }
.gx-legal-content p { margin-bottom: 1rem; }
.gx-legal-content ul,
.gx-legal-content ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.gx-legal-content li { margin-bottom: 0.35rem; }
.gx-legal-content a { color: var(--gx-gold-light); text-decoration: underline; }
.gx-legal-content a:hover { color: var(--gx-gold); }
.gx-legal-content strong { color: var(--gx-text); }
.gx-legal-content table {
	width: 100%;
	margin-bottom: 1rem;
	border-collapse: collapse;
}

.gx-legal-content th,
.gx-legal-content td {
	border: 1px solid var(--gx-border);
	padding: 0.5rem 0.75rem;
}

.gx-legal-content th {
	background: var(--gx-bg-elevated);
	color: var(--gx-text);
}

@media (max-width: 767.98px) {
	.gx-legal-content {
		padding: 1.25rem;
	}
}