/*
Theme Name:  Global Resource
Theme URI:   https://globalmarketresource.com
Description: Dark luxury landing page for Global Resource — animated canvas background, Customizer-editable content, AJAX application form saved to the WP database.
Version:     1.0.0
Author:      AVIIV Curators Ville
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: global-resource
*/

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
	--ink:        #0a0a0f;
	--gold:       #c9a84c;
	--gold-light: #e8c97a;
	--cream:      #f5f0e8;
	--mist:       #e8e2d8;
	--white:      #fdfcfa;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	font-family: 'DM Sans', sans-serif;
	background: #0a0a0f;
	color: var(--white);
	overflow-x: hidden;
	cursor: none;
}

/* ─── Live Background ───────────────────────────────────────── */
#live-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
nav, .hero, .stats-band, #about, .support-section,
#application, footer, .divider { position: relative; z-index: 1; }

/* ─── Custom Cursor ─────────────────────────────────────────── */
.cursor {
	position: fixed; width: 10px; height: 10px;
	background: var(--gold); border-radius: 50%;
	pointer-events: none; z-index: 9999;
	transition: transform 0.15s ease;
	mix-blend-mode: difference;
}
.cursor-ring {
	position: fixed; width: 36px; height: 36px;
	border: 1px solid var(--gold); border-radius: 50%;
	pointer-events: none; z-index: 9998;
	transition: all 0.3s cubic-bezier(.25,.46,.45,.94);
	opacity: 0.6;
}
@media (max-width: 900px) {
	body { cursor: auto; }
	.cursor, .cursor-ring { display: none; }
}

/* ─── Navigation ────────────────────────────────────────────── */
.gr-nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	display: flex; align-items: center; justify-content: space-between;
	padding: 28px 60px;
	background: linear-gradient(to bottom, rgba(10,10,15,.95) 0%, transparent 100%);
	animation: navIn 1s ease 0.3s both;
}
@keyframes navIn { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }

.nav-logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.6rem; font-weight: 600;
	letter-spacing: .12em; color: var(--white); text-transform: uppercase;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
	color: var(--mist); text-decoration: none;
	font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
	font-weight: 400; position: relative; transition: color .3s;
}
.nav-links a::after {
	content: ''; position: absolute; bottom: -4px; left: 0;
	width: 0; height: 1px; background: var(--gold); transition: width .3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
	padding: 10px 26px; border: 1px solid var(--gold); color: var(--gold);
	text-decoration: none; font-size: .75rem; letter-spacing: .2em;
	text-transform: uppercase; font-weight: 500; transition: all .3s ease;
	position: relative; overflow: hidden;
}
.nav-cta::before {
	content: ''; position: absolute; inset: 0;
	background: var(--gold); transform: scaleX(0);
	transform-origin: left; transition: transform .3s ease; z-index: -1;
}
.nav-cta:hover { color: var(--ink); }
.nav-cta:hover::before { transform: scaleX(1); }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
	position: relative; min-height: 100vh;
	display: flex; align-items: center; justify-content: center;
	text-align: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: transparent; }
.globe-ring {
	position: absolute; border: 1px solid rgba(201,168,76,.12);
	border-radius: 50%; animation: spinRing 20s linear infinite;
}
.globe-ring:nth-child(1) { width:500px;height:500px;top:50%;left:50%;transform:translate(-50%,-50%) rotateX(75deg);animation-duration:25s; }
.globe-ring:nth-child(2) { width:380px;height:380px;top:50%;left:50%;transform:translate(-50%,-50%) rotateX(75deg) rotateZ(60deg);animation-duration:18s;animation-direction:reverse; }
.globe-ring:nth-child(3) { width:260px;height:260px;top:50%;left:50%;transform:translate(-50%,-50%) rotateX(75deg) rotateZ(120deg);animation-duration:32s; }
@keyframes spinRing {
	from { transform:translate(-50%,-50%) rotateX(75deg) rotateZ(0deg); }
	to   { transform:translate(-50%,-50%) rotateX(75deg) rotateZ(360deg); }
}
.hero-grid {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}
.hero-content { position: relative; z-index: 2; max-width: 860px; padding: 0 40px; }

.hero-eyebrow {
	display: inline-flex; align-items: center; gap: 12px;
	font-size: .7rem; letter-spacing: .35em; text-transform: uppercase;
	color: var(--gold); margin-bottom: 28px; animation: fadeUp 1s ease .6s both;
}
.hero-eyebrow::before, .hero-eyebrow::after { content:''; width:40px; height:1px; background:var(--gold); opacity:.5; }

.gr-hero-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(3.5rem,8vw,7rem); font-weight: 300;
	line-height: 1.05; letter-spacing: -.01em; color: var(--white);
	animation: fadeUp 1s ease .8s both;
}
h1.gr-hero-title em { font-style: italic; color: var(--gold-light); }

.hero-sub {
	margin-top: 28px; font-size: 1rem; line-height: 1.8;
	color: rgba(253,252,250,.55); font-weight: 300;
	max-width: 520px; margin-left: auto; margin-right: auto;
	animation: fadeUp 1s ease 1s both;
}
.hero-buttons {
	margin-top: 50px; display: flex; gap: 20px;
	justify-content: center; flex-wrap: wrap;
	animation: fadeUp 1s ease 1.2s both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn-primary {
	padding: 16px 42px; background: var(--gold); color: var(--ink);
	font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
	font-weight: 500; text-decoration: none;
	transition: all .3s ease; position: relative; overflow: hidden;
}
.btn-primary::after {
	content: ''; position: absolute; inset: 0;
	background: var(--gold-light); transform: translateX(-100%);
	transition: transform .3s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
	padding: 16px 42px; border: 1px solid rgba(253,252,250,.3);
	color: var(--white); font-size: .78rem; letter-spacing: .2em;
	text-transform: uppercase; font-weight: 400;
	text-decoration: none; transition: all .3s ease;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Scroll Hint ───────────────────────────────────────────── */
.scroll-hint {
	position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
	display: flex; flex-direction: column; align-items: center; gap: 10px;
	opacity: .4; animation: fadeUp 1s ease 1.5s both;
}
.scroll-hint span { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 50px; background: var(--gold); animation: scrollDrop 1.8s ease-in-out infinite; }
@keyframes scrollDrop {
	0%,100%{transform:scaleY(0);transform-origin:top;opacity:0}
	30%{transform:scaleY(1);transform-origin:top;opacity:1}
	70%{transform:scaleY(1);transform-origin:bottom;opacity:1}
	100%{transform:scaleY(0);transform-origin:bottom;opacity:0}
}

/* ─── Stats Band ────────────────────────────────────────────── */
.stats-band {
	border-top: 1px solid rgba(201,168,76,.15);
	border-bottom: 1px solid rgba(201,168,76,.15);
	padding: 40px 60px; display: flex; justify-content: center;
	gap: 80px; background: rgba(201,168,76,.03);
}
.stat { text-align: center; }
.stat-num {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.8rem; font-weight: 600; color: var(--gold);
	display: block; line-height: 1;
}
.stat-label {
	font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
	color: rgba(253,252,250,.4); margin-top: 8px; display: block;
}

/* ─── Sections ──────────────────────────────────────────────── */
.gr-section { padding: 110px 60px; max-width: 1200px; margin: 0 auto; }
.section-tag {
	font-size: .65rem; letter-spacing: .35em; text-transform: uppercase;
	color: var(--gold); display: flex; align-items: center; gap: 14px;
	margin-bottom: 20px;
}
.section-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.gr-h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.2rem,4vw,3.5rem); font-weight: 300;
	line-height: 1.15; color: var(--white); margin-bottom: 24px;
}

/* ─── About ─────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p {
	font-size: .95rem; line-height: 1.9;
	color: rgba(253,252,250,.6); font-weight: 300; margin-bottom: 18px;
}
.about-visual { position: relative; height: 420px; }
.about-card {
	position: absolute; background: rgba(201,168,76,.05);
	border: 1px solid rgba(201,168,76,.15); padding: 30px;
}
.about-card:nth-child(1) { top:0; left:0; right:60px; height:200px; }
.about-card:nth-child(2) { bottom:0; left:60px; right:0; height:200px; }
.about-card-icon { font-size: 1.6rem; margin-bottom: 14px; }
.about-card-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.15rem; font-weight: 600; color: var(--gold-light); margin-bottom: 8px;
}
.about-card p { font-size: .8rem; color: rgba(253,252,250,.5); line-height: 1.6; }

/* ─── Support ───────────────────────────────────────────────── */
.support-section {
	background: rgba(201,168,76,.03);
	border-top: 1px solid rgba(201,168,76,.1);
	border-bottom: 1px solid rgba(201,168,76,.1);
	max-width: 100%;
}
.support-inner { max-width: 1200px; margin: 0 auto; padding: 110px 60px; }
.support-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 60px; }
.support-card {
	padding: 44px 36px; background: rgba(10,10,15,.8);
	border: 1px solid rgba(201,168,76,.1);
	transition: all .4s ease; position: relative; overflow: hidden; cursor: pointer;
}
.support-card::before {
	content: ''; position: absolute; bottom: 0; left: 0; right: 0;
	height: 2px; background: var(--gold); transform: scaleX(0);
	transition: transform .4s ease;
}
.support-card:hover { background: rgba(201,168,76,.06); transform: translateY(-4px); }
.support-card:hover::before { transform: scaleX(1); }
.support-icon {
	width: 50px; height: 50px; border: 1px solid rgba(201,168,76,.3);
	display: flex; align-items: center; justify-content: center;
	font-size: 1.3rem; margin-bottom: 24px; transition: all .3s;
}
.support-card:hover .support-icon { background: rgba(201,168,76,.1); border-color: var(--gold); }
.support-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 12px;
}
.support-desc { font-size: .82rem; line-height: 1.7; color: rgba(253,252,250,.5); font-weight: 300; margin-bottom: 24px; }
.support-link {
	font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
	color: var(--gold); text-decoration: none;
	display: flex; align-items: center; gap: 8px; transition: gap .3s;
}
.support-link:hover { gap: 14px; }

/* ─── Application Form ──────────────────────────────────────── */
.app-section { text-align: center; }
.app-section .gr-h2 { margin-bottom: 14px; }
.app-section .lead {
	font-size: .95rem; color: rgba(253,252,250,.5); font-weight: 300;
	max-width: 520px; margin: 0 auto 60px; line-height: 1.8;
}
.app-form-shell {
	background: rgba(201,168,76,.04); border: 1px solid rgba(201,168,76,.15);
	padding: 60px; max-width: 680px; margin: 0 auto; position: relative;
}
.app-form-shell::before {
	position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
	background: var(--ink); padding: 0 20px;
	font-size: .6rem; letter-spacing: .4em; color: var(--gold);
	content: attr(data-badge);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.form-field.full { grid-column: 1/-1; }
.form-field label { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(253,252,250,.4); }
.form-field input,
.form-field select,
.form-field textarea {
	background: rgba(10,10,15,.8); border: 1px solid rgba(201,168,76,.2);
	color: var(--white); padding: 14px 18px;
	font-family: 'DM Sans', sans-serif; font-size: .88rem;
	outline: none; transition: border-color .3s; resize: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field select option { background: #0a0a0f; }
.btn-submit {
	width: 100%; padding: 18px; background: var(--gold); color: var(--ink);
	font-size: .78rem; letter-spacing: .25em; text-transform: uppercase;
	font-weight: 600; border: none; cursor: pointer;
	transition: background .3s; font-family: 'DM Sans', sans-serif;
	margin-top: 10px;
}
.btn-submit:hover { background: var(--gold-light); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-feedback { margin-top: 16px; font-size: .82rem; padding: 12px; display: none; }
.form-feedback.success { display: block; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.3); color: var(--gold-light); }
.form-feedback.error   { display: block; background: rgba(180,60,60,.1); border: 1px solid rgba(180,60,60,.3); color: #e88; }

/* ─── Divider ───────────────────────────────────────────────── */
.divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201,168,76,.25), transparent);
	max-width: 1200px; margin: 0 auto;
}

/* ─── Footer ────────────────────────────────────────────────── */
.gr-footer {
	border-top: 1px solid rgba(201,168,76,.15); padding: 50px 60px;
	display: flex; justify-content: space-between; align-items: center;
	background: rgba(201,168,76,.02);
}
.footer-logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem; font-weight: 600;
	letter-spacing: .1em; text-transform: uppercase;
}
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: .72rem; letter-spacing: .15em; color: rgba(253,252,250,.3); }
.footer-links { display: flex; gap: 30px; list-style: none; }
.footer-links a {
	font-size: .72rem; color: rgba(253,252,250,.4); text-decoration: none;
	letter-spacing: .12em; text-transform: uppercase; transition: color .3s;
}
.footer-links a:hover { color: var(--gold); }

/* ─── Hero Upgrades ────────────────────────────────────────── */
.hero-corner {
	position: absolute; width: 40px; height: 40px; z-index: 3;
	pointer-events: none;
}
.hero-corner--tl { top: 90px; left: 30px; border-top: 1px solid rgba(201,168,76,.35); border-left: 1px solid rgba(201,168,76,.35); }
.hero-corner--tr { top: 90px; right: 30px; border-top: 1px solid rgba(201,168,76,.35); border-right: 1px solid rgba(201,168,76,.35); }
.hero-corner--bl { bottom: 30px; left: 30px; border-bottom: 1px solid rgba(201,168,76,.35); border-left: 1px solid rgba(201,168,76,.35); }
.hero-corner--br { bottom: 30px; right: 30px; border-bottom: 1px solid rgba(201,168,76,.35); border-right: 1px solid rgba(201,168,76,.35); }

.hero-meta {
	display: flex; align-items: center; justify-content: center;
	gap: 0; margin: 40px auto 0; max-width: 420px;
	animation: fadeUp 1s ease 1.05s both;
}
.hero-meta-item { text-align: center; padding: 0 28px; }
.hero-meta-num {
	display: block; font-family: 'Cormorant Garamond',serif;
	font-size: 1.8rem; font-weight: 600; color: var(--gold); line-height: 1;
}
.hero-meta-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(253,252,250,.4); margin-top: 4px; display: block; }
.hero-meta-divider { width: 1px; height: 36px; background: rgba(201,168,76,.2); flex-shrink: 0; }

.btn-ghost {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 16px 32px; color: var(--white); font-size: .78rem;
	letter-spacing: .18em; text-transform: uppercase; font-weight: 400;
	text-decoration: none; transition: all .3s ease;
	border: none; background: none;
}
.btn-ghost svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s; }
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ─── Ticker ────────────────────────────────────────────────── */
.ticker-band {
	background: rgba(201,168,76,.06); border-top: 1px solid rgba(201,168,76,.12);
	border-bottom: 1px solid rgba(201,168,76,.12);
	padding: 14px 0; overflow: hidden; position: relative; z-index: 1;
}
.ticker-track {
	display: flex; align-items: center; gap: 0;
	animation: tickerScroll 40s linear infinite;
	white-space: nowrap;
}
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-33.33%); } }
.ticker-item {
	font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
	color: rgba(253,252,250,.45); padding: 0 24px;
}
.ticker-sep { color: var(--gold); opacity: .5; font-size: .5rem; flex-shrink: 0; }

/* ─── Stats Upgrade ─────────────────────────────────────────── */
.stat-icon { font-size: 1.3rem; margin-bottom: 10px; display: block; }

/* ─── About Pillars ─────────────────────────────────────────── */
.about-pillars { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.pillar { display: flex; align-items: center; gap: 14px; }
.pillar-line { width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.pillar span { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(253,252,250,.5); }
.about-visual-accent {
	position: absolute; bottom: -20px; right: -20px;
	width: 120px; height: 120px;
	border-right: 1px solid rgba(201,168,76,.15);
	border-bottom: 1px solid rgba(201,168,76,.15);
	pointer-events: none;
}

/* ─── Services Strip ────────────────────────────────────────── */
.services-strip {
	background: rgba(201,168,76,.02); padding: 40px 60px;
	border-top: 1px solid rgba(201,168,76,.08);
	border-bottom: 1px solid rgba(201,168,76,.08);
	position: relative; z-index: 1;
}
.services-strip-inner {
	max-width: 1200px; margin: 0 auto;
	display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.service-chip {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 12px 22px;
	border: 1px solid rgba(201,168,76,.15);
	background: rgba(201,168,76,.03);
	transition: all .3s ease; cursor: default;
}
.service-chip:hover {
	border-color: rgba(201,168,76,.4);
	background: rgba(201,168,76,.07);
	transform: translateY(-2px);
}
.service-chip-icon { font-size: 1rem; }
.service-chip-label { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(253,252,250,.6); }

/* ─── Chat header actions ───────────────────────────────────── */
.chat-actions { display: flex; gap: 5px; align-items: center; }
.chat-action-dot { width: 10px; height: 10px; border-radius: 50%; }

/* ─── Trust Band ────────────────────────────────────────────── */
.trust-band {
	background: rgba(10,10,15,.6);
	border-top: 1px solid rgba(201,168,76,.1);
	border-bottom: 1px solid rgba(201,168,76,.1);
	padding: 28px 60px; position: relative; z-index: 1;
}
.trust-band-inner {
	max-width: 1200px; margin: 0 auto;
	display: flex; align-items: center; justify-content: center;
	gap: 0; flex-wrap: wrap;
}
.trust-item {
	display: flex; align-items: center; gap: 10px;
	padding: 0 32px; font-size: .72rem;
	letter-spacing: .12em; text-transform: uppercase;
	color: rgba(253,252,250,.4);
}
.trust-icon { font-size: 1rem; }
.trust-divider { width: 1px; height: 28px; background: rgba(201,168,76,.12); flex-shrink: 0; }

/* ─── PAYMENT WIDGET ────────────────────────────────────────── */
.pay-widget {
	position: fixed; bottom: 0; left: 32px; z-index: 500;
	display: flex; flex-direction: column; align-items: flex-start;
	width: 340px;
	filter: drop-shadow(0 -4px 40px rgba(201,168,76,.12));
}
.pay-widget-tab {
	display: flex; align-items: center; gap: 8px;
	padding: 11px 20px;
	background: rgba(10,10,15,.97);
	border: 1px solid rgba(201,168,76,.3);
	border-bottom: none;
	cursor: pointer; transition: all .3s;
	font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
	color: var(--gold);
}
.pay-widget-tab svg { width: 16px; height: 16px; fill: var(--gold); }
.pay-widget-tab:hover { background: rgba(201,168,76,.08); }
.pay-widget-chevron { margin-left: auto; font-size: .55rem; transition: transform .3s; }
.pay-widget.open .pay-widget-tab { border-color: rgba(201,168,76,.5); }

.pay-widget-panel {
	display: none;
	width: 100%;
	background: rgba(8,8,14,.98);
	border: 1px solid rgba(201,168,76,.25);
	border-bottom: none;
	padding: 24px;
	max-height: 70vh; overflow-y: auto;
	scrollbar-width: thin; scrollbar-color: rgba(201,168,76,.15) transparent;
}
.pay-widget-panel::-webkit-scrollbar { width: 3px; }
.pay-widget-panel::-webkit-scrollbar-thumb { background: rgba(201,168,76,.2); }

.pay-panel-header { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(201,168,76,.1); }
.pay-panel-title { font-family: 'Cormorant Garamond',serif; font-size: 1.1rem; font-weight: 600; color: var(--white); }
.pay-panel-subtitle { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(253,252,250,.35); margin-top: 4px; }

.pay-amount-group, .pay-field-group { margin-bottom: 16px; }
.pay-amount-label { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(253,252,250,.4); margin-bottom: 8px; }

.pay-presets { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 10px; }
.pay-preset {
	padding: 8px 4px; border: 1px solid rgba(201,168,76,.18);
	background: transparent; color: rgba(253,252,250,.6);
	font-family: 'DM Sans',sans-serif; font-size: .72rem;
	text-align: center; cursor: pointer; transition: all .25s;
}
.pay-preset:hover, .pay-preset.active {
	border-color: var(--gold); background: rgba(201,168,76,.1);
	color: var(--gold);
}

.pay-custom-row {
	display: flex; align-items: center;
	border: 1px solid rgba(201,168,76,.2); background: rgba(253,252,250,.03);
}
.pay-currency {
	padding: 0 12px; font-size: .9rem; color: var(--gold);
	border-right: 1px solid rgba(201,168,76,.15);
	line-height: 42px;
}
.pay-input-amount {
	flex: 1; background: transparent; border: none;
	color: var(--white); padding: 10px 12px;
	font-family: 'DM Sans',sans-serif; font-size: .88rem;
	outline: none;
}
.pay-input-amount::placeholder { color: rgba(253,252,250,.25); }
.pay-input-amount::-webkit-outer-spin-button,
.pay-input-amount::-webkit-inner-spin-button { -webkit-appearance: none; }

.pay-select {
	width: 100%; background: rgba(253,252,250,.03);
	border: 1px solid rgba(201,168,76,.2); color: var(--white);
	padding: 10px 12px; font-family: 'DM Sans',sans-serif;
	font-size: .82rem; outline: none; cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(201,168,76,.5)'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 12px center;
}
.pay-select option { background: #0a0a0f; }

.pay-card-input-wrap { position: relative; margin-bottom: 8px; }
.pay-card-input {
	width: 100%; background: rgba(253,252,250,.03);
	border: 1px solid rgba(201,168,76,.2); color: var(--white);
	padding: 10px 12px; font-family: 'DM Sans',sans-serif;
	font-size: .82rem; outline: none; transition: border-color .3s;
	letter-spacing: .04em;
}
.pay-card-input:focus { border-color: rgba(201,168,76,.5); }
.pay-card-input::placeholder { color: rgba(253,252,250,.2); }
.pay-card-icons {
	position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
	display: flex; gap: 4px; align-items: center;
}
.pay-card-icon { height: 18px; border-radius: 2px; opacity: .7; }
.pay-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.pay-half {}

.pay-security-row {
	display: flex; justify-content: space-between;
	margin: 14px 0; padding: 10px;
	background: rgba(34,197,94,.04); border: 1px solid rgba(34,197,94,.12);
}
.pay-security-item { display: flex; align-items: center; gap: 5px; font-size: .62rem; letter-spacing: .08em; color: rgba(34,197,94,.7); }
.pay-security-item svg { width: 14px; height: 14px; flex-shrink: 0; }

.pay-submit-btn {
	width: 100%; padding: 13px 16px;
	background: var(--gold); color: var(--ink);
	border: none; cursor: pointer;
	display: flex; align-items: center; justify-content: center; gap: 8px;
	font-family: 'DM Sans',sans-serif; font-size: .75rem;
	letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
	transition: background .3s; position: relative; overflow: hidden;
}
.pay-submit-btn::after {
	content: ''; position: absolute; inset: 0;
	background: var(--gold-light); transform: scaleX(0);
	transform-origin: left; transition: transform .3s;
}
.pay-submit-btn:hover::after { transform: scaleX(1); }
.pay-submit-btn svg, .pay-submit-btn span { position: relative; z-index: 1; }
.pay-submit-btn svg { width: 16px; height: 16px; fill: var(--ink); }
.pay-submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.pay-submit-btn.loading { opacity: .75; }

.pay-success {
	display: flex; flex-direction: column; align-items: center;
	text-align: center; padding: 16px 0; gap: 8px;
}
.pay-success-icon {
	width: 48px; height: 48px; border: 1px solid var(--gold);
	border-radius: 50%; display: flex; align-items: center;
	justify-content: center; font-size: 1.4rem; color: var(--gold);
	margin-bottom: 4px;
}
.pay-success-title { font-family: 'Cormorant Garamond',serif; font-size: 1.1rem; font-weight: 600; color: var(--white); }
.pay-success-msg { font-size: .75rem; color: rgba(253,252,250,.45); line-height: 1.6; max-width: 240px; }
.pay-success-reset {
	margin-top: 6px; padding: 9px 20px;
	border: 1px solid rgba(201,168,76,.3); background: none;
	color: var(--gold); font-family: 'DM Sans',sans-serif;
	font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
	cursor: pointer; transition: all .3s;
}
.pay-success-reset:hover { background: rgba(201,168,76,.1); border-color: var(--gold); }
.pay-feedback {
	padding: 10px 12px; font-size: .75rem; border-radius: 2px;
	margin-bottom: 10px; line-height: 1.5;
}
.pay-feedback.error   { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.25); color: #fca5a5; }
.pay-feedback.success { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25); color: #86efac; }
.pay-success-amount {
	font-family: 'Cormorant Garamond',serif; font-size: 1.6rem; font-weight: 600;
	color: var(--gold); margin: 4px 0;
}
.pay-success-ref {
	font-size: .65rem; color: rgba(253,252,250,.3); letter-spacing: .1em;
	margin-top: 2px;
}
.pay-success-ref span { color: rgba(253,252,250,.5); font-family: monospace; }

/* ─── Responsive ────────────────────────────────────────────── */
/* ─── LIVE SUPPORT SECTION ──────────────────────────────────── */
.live-support-section {
	background: rgba(201,168,76,.02);
	border-top: 1px solid rgba(201,168,76,.1);
	border-bottom: 1px solid rgba(201,168,76,.1);
	max-width: 100%; padding: 80px 60px;
	position: relative; z-index: 1;
}
.live-support-inner { max-width: 1200px; margin: 0 auto; }
.live-support-header {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 50px; flex-wrap: wrap; gap: 20px;
}
.live-badge {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
	color: #22c55e; border: 1px solid rgba(34,197,94,.3); padding: 6px 14px;
}
.live-badge-dot {
	width: 7px; height: 7px; background: #22c55e; border-radius: 50%;
	animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
	0%,100% { opacity:1; transform:scale(1); }
	50%     { opacity:.4; transform:scale(1.6); }
}
.live-support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

/* Chat panel */
.chat-panel {
	background: rgba(10,10,15,.9);
	border: 1px solid rgba(201,168,76,.15);
	display: flex; flex-direction: column; height: 540px;
}
.chat-header {
	padding: 18px 24px; border-bottom: 1px solid rgba(201,168,76,.12);
	display: flex; align-items: center; gap: 12px;
}
.agent-avatar {
	width: 40px; height: 40px; border: 1px solid rgba(201,168,76,.4);
	display: flex; align-items: center; justify-content: center;
	font-size: 1.1rem; background: rgba(201,168,76,.08);
}
.agent-name { font-family:'Cormorant Garamond',serif; font-size:1rem; font-weight:600; color:var(--white); }
.agent-status { font-size:.68rem; color:#22c55e; letter-spacing:.08em; margin-top:2px; }
.chat-messages {
	flex: 1; overflow-y: auto; padding: 20px;
	display: flex; flex-direction: column; gap: 14px;
	scrollbar-width: thin; scrollbar-color: rgba(201,168,76,.2) transparent;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(201,168,76,.2); border-radius: 2px; }
.msg { max-width: 80%; padding: 12px 16px; font-size: .83rem; line-height: 1.6; }
.msg.agent {
	background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.15);
	color: var(--white); align-self: flex-start; border-radius: 0 8px 8px 8px;
}
.msg.user {
	background: rgba(201,168,76,.18); border: 1px solid rgba(201,168,76,.3);
	color: var(--white); align-self: flex-end; border-radius: 8px 0 8px 8px;
}
.msg-time { font-size: .62rem; color: rgba(253,252,250,.3); margin-top: 4px; }
.typing-indicator {
	display: none; align-items: center; gap: 4px;
	padding: 12px 16px; background: rgba(201,168,76,.05);
	border: 1px solid rgba(201,168,76,.1);
	align-self: flex-start; border-radius: 0 8px 8px 8px;
	width: fit-content; margin: 0 20px;
}
.typing-indicator.active { display: flex; }
.typing-dot {
	width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
	animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typingBounce {
	0%,60%,100% { transform: translateY(0); }
	30%         { transform: translateY(-6px); }
}
.chat-input-area {
	padding: 16px; border-top: 1px solid rgba(201,168,76,.12);
	display: flex; gap: 10px; align-items: center;
}
.chat-input {
	flex: 1; background: rgba(253,252,250,.04);
	border: 1px solid rgba(201,168,76,.2); color: var(--white);
	padding: 12px 16px; font-family: 'DM Sans',sans-serif;
	font-size: .85rem; outline: none; resize: none; height: 44px;
	transition: border-color .3s;
}
.chat-input:focus { border-color: var(--gold); }
.chat-input::placeholder { color: rgba(253,252,250,.3); }
.chat-send {
	width: 44px; height: 44px; background: var(--gold); border: none;
	cursor: pointer; display: flex; align-items: center; justify-content: center;
	transition: background .3s; flex-shrink: 0;
}
.chat-send:hover { background: var(--gold-light); }
.chat-send svg { width: 18px; height: 18px; fill: var(--ink); }

/* Support options */
.support-options-panel {
	background: rgba(10,10,15,.9);
	border: 1px solid rgba(201,168,76,.15); border-left: none;
	display: flex; flex-direction: column; height: 540px; overflow-y: auto;
}
.support-options-header { padding: 18px 24px; border-bottom: 1px solid rgba(201,168,76,.12); }
.support-options-title { font-family:'Cormorant Garamond',serif; font-size:1.05rem; font-weight:600; color:var(--white); }
.support-options-sub { font-size:.75rem; color:rgba(253,252,250,.4); margin-top:4px; }
.support-option {
	padding: 20px 24px; border-bottom: 1px solid rgba(201,168,76,.07);
	display: flex; align-items: center; gap: 16px;
	cursor: pointer; transition: background .3s;
}
.support-option:hover { background: rgba(201,168,76,.06); }
.support-option:last-child { border-bottom: none; }
.support-option-icon {
	width: 42px; height: 42px; border: 1px solid rgba(201,168,76,.25);
	display: flex; align-items: center; justify-content: center;
	font-size: 1.1rem; flex-shrink: 0; transition: all .3s;
}
.support-option:hover .support-option-icon { border-color: var(--gold); background: rgba(201,168,76,.1); }
.support-option-name { font-size:.88rem; font-weight:500; color:var(--white); margin-bottom:3px; }
.support-option-desc { font-size:.75rem; color:rgba(253,252,250,.4); line-height:1.5; }
.support-option-arrow {
	margin-left: auto; color: var(--gold); font-size: 1rem;
	opacity: 0; transition: opacity .3s, transform .3s; flex-shrink: 0;
}
.support-option:hover .support-option-arrow { opacity: 1; transform: translateX(4px); }

/* Floating chat button */
.float-support {
	position: fixed; bottom: 32px; right: 32px; z-index: 500;
	display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.float-support-btn {
	width: 58px; height: 58px; background: var(--gold); border: none;
	cursor: pointer; display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 30px rgba(201,168,76,.45); transition: all .3s;
	position: relative;
}
.float-support-btn:hover { background: var(--gold-light); transform: scale(1.08); }
.float-support-btn svg { width: 24px; height: 24px; fill: var(--ink); }
.float-pulse {
	position: absolute; top: -3px; right: -3px;
	width: 14px; height: 14px; background: #22c55e;
	border-radius: 50%; border: 2px solid #0a0a0f;
}
.float-pulse::after {
	content: ''; position: absolute; inset: -3px; border-radius: 50%;
	background: rgba(34,197,94,.4); animation: livePulse 1.4s ease-in-out infinite;
}
.float-label {
	background: rgba(10,10,15,.92); border: 1px solid rgba(201,168,76,.25);
	padding: 8px 16px; font-size: .72rem; letter-spacing: .15em;
	text-transform: uppercase; color: var(--gold); white-space: nowrap;
	opacity: 0; transform: translateX(10px); transition: all .3s;
}
.float-support:hover .float-label { opacity: 1; transform: translateX(0); }

/* ─── Application Page ──────────────────────────────────────── */
.apply-main { padding: 150px 60px 100px; max-width: 1000px; margin: 0 auto; }
.page-header { text-align: center; margin-bottom: 70px; }
.page-tag {
	display: inline-flex; align-items: center; gap: 12px;
	font-size: .7rem; letter-spacing: .35em; text-transform: uppercase;
	color: var(--gold); margin-bottom: 20px;
}
.page-tag::before, .page-tag::after { content:''; width:40px; height:1px; background:var(--gold); opacity:.5; }
.apply-title { font-size: clamp(2.8rem,6vw,5rem) !important; animation: none !important; }
.page-sub { margin-top: 18px; font-size: .95rem; line-height: 1.8; color: rgba(253,252,250,.5); max-width: 500px; margin-left: auto; margin-right: auto; }

.form-shell {
	background: rgba(201,168,76,.03);
	border: 1px solid rgba(201,168,76,.15);
	padding: 70px; position: relative;
}
.form-shell::before {
	content: 'APPLICATION FORM'; position: absolute; top: -11px;
	left: 50%; transform: translateX(-50%);
	background: var(--ink); padding: 0 24px;
	font-size: .58rem; letter-spacing: .45em; color: var(--gold);
}

/* Step indicator */
.steps { display:flex; align-items:center; justify-content:center; margin-bottom:50px; }
.step { display:flex; flex-direction:column; align-items:center; gap:8px; }
.step-num {
	width:36px; height:36px; border:1px solid rgba(201,168,76,.3);
	display:flex; align-items:center; justify-content:center;
	font-size:.78rem; color:rgba(253,252,250,.4); transition:all .3s;
}
.step.active .step-num { border-color:var(--gold); color:var(--gold); background:rgba(201,168,76,.08); }
.step.done .step-num { background:var(--gold); color:var(--ink); border-color:var(--gold); }
.step-label { font-size:.65rem; letter-spacing:.15em; text-transform:uppercase; color:rgba(253,252,250,.3); }
.step.active .step-label, .step.done .step-label { color:var(--gold); }
.step-line { width:80px; height:1px; background:rgba(201,168,76,.15); margin-bottom:24px; }

.form-section-title {
	font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:600;
	color:var(--white); margin-bottom:24px; padding-bottom:12px;
	border-bottom:1px solid rgba(201,168,76,.1);
}
.form-spacer { height: 32px; }

.radio-group { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.radio-option {
	border:1px solid rgba(201,168,76,.15); padding:14px 16px;
	cursor:pointer; transition:all .3s;
	display:flex; align-items:center; gap:10px;
}
.radio-option:hover { border-color:rgba(201,168,76,.4); background:rgba(201,168,76,.04); }
.radio-option.selected { border-color:var(--gold); background:rgba(201,168,76,.08); }
.radio-dot {
	width:12px; height:12px; border:1px solid rgba(201,168,76,.4);
	border-radius:50%; flex-shrink:0; transition:all .3s;
}
.radio-option.selected .radio-dot { background:var(--gold); border-color:var(--gold); }
.radio-text { font-size:.78rem; color:rgba(253,252,250,.7); }

.form-actions { display:flex; gap:16px; align-items:center; margin-top:36px; }
.btn-reset {
	padding:18px 32px; border:1px solid rgba(253,252,250,.2);
	color:rgba(253,252,250,.5); font-size:.78rem; letter-spacing:.2em;
	text-transform:uppercase; font-weight:400;
	background:none; cursor:pointer; transition:all .3s;
	font-family:'DM Sans',sans-serif;
}
.btn-reset:hover { border-color:rgba(201,168,76,.4); color:var(--gold); }
.form-note {
	font-size:.75rem; color:rgba(253,252,250,.3); line-height:1.6;
	margin-left:auto; max-width:260px; text-align:right;
}

/* Success overlay */
.success-overlay {
	display:none; position:fixed; inset:0; z-index:800;
	background:rgba(10,10,15,.96);
	align-items:center; justify-content:center;
	flex-direction:column; text-align:center; gap:24px;
}
.success-overlay.show { display:flex; }
.success-icon {
	width:80px; height:80px; border:1px solid var(--gold);
	display:flex; align-items:center; justify-content:center;
	font-size:2.5rem; animation: fadeUp .6s ease both;
}
.success-title {
	font-family:'Cormorant Garamond',serif; font-size:3rem; font-weight:300;
	color:var(--white); animation: fadeUp .6s ease .15s both;
}
.success-title em { font-style:italic; color:var(--gold-light); }
.success-msg { font-size:.95rem; color:rgba(253,252,250,.5); max-width:420px; line-height:1.8; animation: fadeUp .6s ease .3s both; }
.success-back {
	margin-top:10px; padding:14px 40px;
	border:1px solid var(--gold); color:var(--gold); text-decoration:none;
	font-size:.75rem; letter-spacing:.2em; text-transform:uppercase;
	transition:all .3s; animation: fadeUp .6s ease .45s both;
}
.success-back:hover { background:var(--gold); color:var(--ink); }

/* Nav back link on apply page */
.nav-back {
	display:flex; align-items:center; gap:10px; color:var(--mist);
	text-decoration:none; font-size:.78rem; letter-spacing:.15em;
	text-transform:uppercase; transition:color .3s;
}
.nav-back:hover { color:var(--gold); }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
	.gr-nav { padding: 22px 28px; }
	.nav-links { display: none; }
	.gr-section { padding: 70px 28px; }
	.about-grid { grid-template-columns: 1fr; }
	.about-visual { height: 280px; }
	.support-grid { grid-template-columns: 1fr; }
	.stats-band { gap: 40px; flex-wrap: wrap; padding: 40px 28px; }
	.form-row { grid-template-columns: 1fr; }
	.app-form-shell { padding: 36px 24px; }
	.gr-footer { flex-direction: column; gap: 24px; text-align: center; }
	.support-inner { padding: 70px 28px; }
	.live-support-section { padding: 60px 28px; }
	.live-support-grid { grid-template-columns: 1fr; }
	.support-options-panel { border-left: 1px solid rgba(201,168,76,.15); border-top: none; height: auto; }
	.chat-panel { height: 420px; }
	.apply-main { padding: 120px 24px 80px; }
	.form-shell { padding: 36px 24px; }
	.radio-group { grid-template-columns: 1fr 1fr; }
	.form-actions { flex-direction: column; align-items: stretch; }
	.form-note { max-width: 100%; text-align: center; margin-left: 0; }
	.step-line { width: 40px; }
	.pay-widget { left: 0; right: 0; width: 100%; border-radius: 0; }
	.pay-widget-tab { border-radius: 0; }
	.services-strip { padding: 28px 24px; }
	.trust-band { padding: 20px 24px; }
	.trust-item { padding: 8px 16px; }
	.trust-divider { display: none; }
	.hero-corner { display: none; }
	.hero-meta { gap: 0; }
	.hero-meta-item { padding: 0 16px; }
}
