/* CSS RESETS & GLOBAL VARIABLES FROM VIINDHYA GROUP PROJECT */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
:root {
	--primary-gold: #ffd875;
	--gold-accent: #e6c87a;
	--gold-dark: #334155;
	--gold-deep: #0a2d4c;
	--gold-gradient: linear-gradient(135deg, #ffd875 0%, #e6c87a 50%, #ca8a04 100%);
	--gold-btn-gradient: linear-gradient(135deg, #334155 0%, #0F172A 100%);
	--bg-dark: #0b0f14;
	--bg-card-dark: #151d27;
	--bg-light: #FDFBF7;
	--text-main: #0F172A;
	--text-muted: #64748B;
	--text-silver: #334155;
	--border-light: rgba(100, 116, 139, 0.22);
	--font-heading: 'Outfit', sans-serif;
	--font-serif: 'League Spartan', sans-serif;
	--font-sans: 'Outfit', sans-serif;
	--glass-bg: rgba(11, 15, 23, 0.8);
	--glass-border: rgba(100, 116, 139, 0.22);
	--glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	--bg:#0B0F17CC;
	--panel:#0B0F17CC;
	--hair:rgba(230,197,112,0.28);
	--hair-strong:rgba(230,197,112,0.6);
	--gold:#D9B45C;
	--gold-soft:#EAD08C;
	--ivory:#c7c7c7;
	--stone:#8A93A0;
}
*{box-sizing:border-box;margin:0;padding:0;}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {

	height: 100%;
	margin: 0;
	scroll-behavior: smooth;
}

body {
	height: 100%;
	margin: 0;
	font-family: var(--font-sans);
	background-color: var(--bg-light);
	color: var(--text-main);
	overflow-x: hidden;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

a {
	text-decoration: none;
	color: inherit;
}
.page-container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.content-wrap {
	flex: 1;
}
button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
	background: #94a3b8;
	border-radius: 10px;
}

/* TOP LIVE RATES TICKER BAR (KUBERA UI DESIGN) */
.top-bar {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000;
	width: auto;
	background: linear-gradient(to right, #0b0f14 0%, #0B0F17CC 25%, #0B0F17CC 50%, #0B0F17CC 75%, #0b0f14 100%);
	color: #94a3b8;
	font-size: 13px;
	padding: 8px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom-left-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.top-bar-inner {
	max-width: none;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	position: relative;
}

.live-prices-marquee {
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.price-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.live-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
}

.live-dot.pulse {
	position: relative;
	width: 8px;
	height: 8px;
	background-color: #ff3b30;
	border-radius: 50%;
	display: block;
}

.live-dot.pulse::after {
	content: '';
	position: absolute;
	inset: 0;
	background: inherit;
	border-radius: 50%;
	animation: pulseRing 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulseRing {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	100% {
		transform: scale(2.8);
		opacity: 0;
	}
}

.price-label {
	font-size: 13px;
	font-weight: 500;
	color: #ffd875;
	letter-spacing: 0.3px;
}

.price-display {
	display: flex;
	align-items: center;
	gap: 8px;
}

.price-value {
	font-size: 14px;
	font-weight: 600;
	color: #ebd197;
	letter-spacing: 0.5px;
}

.rate-change {
	color: #34d399;
	font-weight: 600;
	font-size: 11px;
}

.price-divider {
	width: 1px;
	height: 12px;
	background: rgba(255, 255, 255, 0.2);
	margin: 0 12px;
}

.update-time {
	color: #cbd5e1;
	font-size: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
	position: static; /* no longer needs absolute centering trick */
}

/* Stack vertically on small screens so it doesn't overflow the corner */
@media (max-width: 700px) {
	.top-bar {
		padding: 8px 14px;
	}
	.top-bar-inner {
		flex-direction: column;
		align-items: flex-end;
		gap: 8px;
	}
}
/* HEADER & NAVIGATION (VIINDHYA GROUP DESIGN) */
.header {
	position: sticky;
	top: 0;
	z-index: 998;
	background: rgba(11, 15, 23, 0.82);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid rgba(100, 116, 139, 0.22);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	color: #c7c7c7;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-inner {
	max-width: 1650px;
	margin: 0 auto;
	padding: 0 32px;
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.header-logo-img {
	max-height: 75px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
	transition: transform 0.3s ease;
}

.brand-logo:hover .header-logo-img {
	transform: scale(1.05);
}

.mobile-logo-img {
	max-height: 44px;
	width: auto;
	object-fit: contain;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
}

/* NAV LINK ITEM WITH CENTERED UNDERLINE ANIMATION (VIINDHYA DESIGN) */
.nav-link-item,
.dropdown-btn {
	position: relative;
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.85);
	padding: 8px 16px;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	letter-spacing: 0.3px;
}

.nav-link-item::after,
.dropdown-btn::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, rgba(255, 216, 117, 0.5), #ffd875, rgba(255, 216, 117, 0.5));
	transition: all 0.3s ease;
	transform: translateX(-50%);
	border-radius: 2px;
	opacity: 0;
}

.nav-link-item:hover::after,
.dropdown:hover .dropdown-btn::after,
.nav-link-item.active::after {
	width: 24px;
	opacity: 1;
}

.nav-link-item:hover,
.dropdown:hover .dropdown-btn,
.nav-link-item.active {
	color: #c7c7c7;
}

.dropdown {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	width: 280px;
	background: rgba(11, 15, 23, 0.94);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border: 1px solid rgba(100, 116, 139, 0.2);
	border-radius: 20px;
	padding: 16px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	z-index: 100;
}
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateX(-50%) translateY(0);
}
.dropdown-item {
	display: block;
	padding: 10px 14px;
	border-radius: 12px;
	transition: all 0.25s ease;
}

.dropdown-item:hover {
	background: rgba(100, 116, 139, 0.12);
	transform: translateX(4px);
}

.dropdown-item-title {
	font-size: 14.5px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.95);
	transition: color 0.2s ease;
}

.dropdown-item:hover .dropdown-item-title {
	color: var(--primary-gold);
}

.dropdown-item-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 300;
	margin-top: 2px;
}

/* HEADER ACTION BUTTONS (VIINDHYA PILL BUTTONS) */
.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.btn-login {
	display: inline-flex;
	align-items: center;
	padding: 8px 20px;
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 14.5px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	transition: all 0.3s ease;
}

.btn-login:hover {
	border-color: var(--primary-gold);
	color: var(--primary-gold);
	background: rgba(255, 255, 255, 0.05);
}

.btn-get-started {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	color: #ffd875;
	padding: 8px 22px;
	border-radius: 30px;
	font-weight: 500;
	font-size: 14.5px;
	letter-spacing: 0.5px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 4px 15px rgba(0, 0, 0, 0.25);
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-get-started:hover {
	transform: translateY(-2px) scale(1.03);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 25px rgba(0, 0, 0, 0.2);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
	border-color: rgba(255, 255, 255, 0.4);
	color: #c7c7c7;
}

.hamburger-btn {
	display: none;
	padding: 8px;
	color: #d1d5db;
	border-radius: 8px;
}

@media (max-width: 1024px) {

	.nav-links,
	.header-actions {
		display: none;
	}

	.hamburger-btn {
		display: block;
	}
}

/* HERO SLIDESHOW CONTAINER (HEIGHT: 480px) */
.hero-container {
	position: relative;
	width: 100%;
	height: 480px;
	max-height: 480px;
	overflow: hidden;
	background-color: #0b0f14;
}

@media (max-width: 1024px) {
	.hero-container {
		height: 420px;
	}
}

@media (max-width: 640px) {
	.hero-container {
		height: 380px;
	}
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
	opacity: 1;
	visibility: visible;
}

/* STATIC SLIDE BG - FULL BRIGHTNESS / NO OPACITY EFFECT */
.hero-slide-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-content-wrap {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 0 0 0;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: relative;
	z-index: 10;
}

@media (max-width: 640px) {
	.hero-content-wrap {
		padding: 0 24px 24px 24px;
	}
}

.hero-text-box {
	max-width: 660px;
	color: #c7c7c7;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 30px;
	background: rgba(255, 216, 117, 0.12);
	border: 1px solid rgba(255, 216, 117, 0.3);
	color: var(--primary-gold);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 12px;
}

.hero-title {
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 600;
	line-height: 1.18;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 28px;
	}
}

.text-gold-gradient {
	background: linear-gradient(90deg, #ffffff, #ffd875, #e6c87a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-desc {
	color: #cbd5e1;
	font-size: 15px;
	margin-bottom: 20px;
	line-height: 1.6;
}

.hero-badges-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.hero-badge-item {
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(11, 15, 23, 0.7);
	backdrop-filter: blur(8px);
	padding: 6px 14px;
	border-radius: 30px;
	border: 1px solid rgba(100, 116, 139, 0.3);
	font-size: 13px;
	color: #e2e8f0;
}

.hero-buttons-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

.btn-hero-primary {
	padding: 10px 26px;
	border-radius: 30px;
	background: linear-gradient(135deg, #334155 0%, #0F172A 100%);
	color: #ffd875;
	border: 1px solid rgba(255, 216, 117, 0.3);
	font-weight: 600;
	font-size: 14.5px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.btn-hero-primary:hover {
	background: linear-gradient(135deg, #475569 0%, #1E293B 100%);
	color: #c7c7c7;
	transform: translateY(-2px);
}

.btn-hero-secondary {
	padding: 10px 26px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #c7c7c7;
	font-weight: 500;
	font-size: 14.5px;
	transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.4);
}

/* CENTERED SLIDE DOTS */
.slide-dots-centered {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
	display: flex;
	align-items: center;
	gap: 10px;
}

.dot-indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
}

.dot-indicator.active {
	width: 30px;
	border-radius: 6px;
	background: var(--primary-gold);
}

.features-strip-wrap {
	max-width: 1340px;
	margin: 0 auto 0 auto;
	padding: 0 16px;
	position: relative;
	z-index: 30;
}

.features-strip-card {
	position: relative;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.48) 50%, rgba(244, 239, 230, 0.65) 100%);
	backdrop-filter: blur(24px) saturate(190%);
	-webkit-backdrop-filter: blur(24px) saturate(190%);
	border-radius: 24px;
	padding: 22px 28px;
	border: 1px solid rgba(255, 255, 255, 0.85);
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12),
	inset 0 1px 2px rgba(255, 255, 255, 0.95),
	inset 0 -1px 2px rgba(255, 255, 255, 0.4);
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Liquid Gloss Reflection Overlay */
.features-strip-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -50%;
	width: 200%;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
	border-radius: 24px 24px 0 0;
}

.features-strip-card:hover {
	box-shadow: 0 25px 50px rgba(15, 23, 42, 0.16),
	inset 0 1px 3px rgba(255, 255, 255, 1),
	inset 0 -1px 2px rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

@media (max-width: 1024px) {
	.features-strip-card {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 640px) {
	.features-strip-card {
		grid-template-columns: repeat(2, 1fr);
	}
}

.feature-item-box {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 4px;
	position: relative;
	z-index: 2;
}

.feature-icon-circle {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 239, 230, 0.7));
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06), inset 0 1px 1px rgba(255, 255, 255, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #334155;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.feature-item-box:hover .feature-icon-circle {
	background: linear-gradient(135deg, #334155, #0F172A);
	color: #ffd875;
	border-color: transparent;
	transform: scale(1.06);
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.2);
}

.feature-title-text {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 500;
	color: #0F172A;
}

.feature-sub-text {
	font-size: 12px;
	color: #64748B;
}

/* SECTION HEADERS */
.section-wrap {
	padding: 80px 24px;
	max-width: 1400px;
	margin: 0 auto;
}

.section-header-center {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 56px auto;
}

.section-sub-label {
	font-size: 12px;
	font-weight: 600;
	color: #334155;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: block;
	margin-bottom: 8px;
}

.section-main-heading {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 600;
	color: #0F172A;
}

.divider-gold-line {
	width: 64px;
	height: 3px;
	background: linear-gradient(90deg, #334155, #ffd875, #334155);
	margin: 16px auto 0 auto;
	border-radius: 9999px;
}

/* 6 PLAN CARDS GRID - SINGLE LINE LAYOUT */
.plans-grid-6 {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	width: 100%;
}

@media (max-width: 1024px) {
	.plans-grid-6 {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-bottom: 16px;
		gap: 14px;
		-webkit-overflow-scrolling: touch;
	}

	.plan-card {
		min-width: 210px;
		flex-shrink: 0;
		scroll-snap-align: start;
	}
}

.plan-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 20px 14px;
	border: 1px solid rgba(100, 116, 139, 0.18);
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.plan-card-popular {
	border: 1px solid rgba(51, 65, 85, 0.4);
	background: linear-gradient(180deg, #F4EFE6 0%, #ffffff 100%);
	position: relative;
}

.popular-tag {
	position: absolute;
	top: -11px;
	left: 50%;
	transform: translateX(-50%);
	background: #334155;
	color: #ffd875;
	font-size: 9px;
	font-weight: 600;
	padding: 2px 10px;
	border-radius: 30px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.plan-icon-wrap {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: #F4EFE6;
	color: #334155;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px auto;
}

.plan-title {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 500;
	color: #0F172A;
	margin-bottom: 4px;
}

.plan-tenure {
	font-size: 12px;
	font-weight: 500;
	color: #64748B;
	margin-bottom: 16px;
}

.plan-benefit-box {
	background: #F4EFE6;
	color: #334155;
	font-size: 12px;
	font-weight: 500;
	padding: 8px 12px;
	border-radius: 10px;
	margin-bottom: 24px;
}

.btn-plan-action {
	width: 100%;
	padding: 10px 0;
	border-radius: 30px;
	background: linear-gradient(135deg, #334155 0%, #0F172A 100%);
	color: #c7c7c7;
	font-weight: 600;
	font-size: 13.5px;
	transition: all 0.2s;
}

.btn-plan-action:hover {
	background: linear-gradient(135deg, #475569 0%, #1E293B 100%);
	color: #ffd875;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
}

.btn-compare-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 32px;
	border-radius: 30px;
	background: linear-gradient(135deg, #334155, #0F172A);
	color: #ffd875;
	font-weight: 500;
	font-size: 16px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
	margin-top: 40px;
	transition: all 0.3s ease;
}

.btn-compare-all:hover {
	color: #c7c7c7;
	transform: translateY(-2px);
}

/* LIQUID GLASS SECTION & AMBIENT BLOBS */
.liquid-glass-section {
	position: relative;
	overflow: hidden;
}

.liquid-bg-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: 0.55;
	pointer-events: none;
	animation: liquidFloat 14s infinite alternate ease-in-out;
}
.liquid-bg-blob.blob-1 {
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(255, 216, 117, 0.45) 0%, rgba(230, 200, 122, 0.1) 75%);
	top: -40px;
	left: -40px;
}
.liquid-bg-blob.blob-2 {
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, rgba(15, 23, 42, 0.05) 75%);
	bottom: -80px;
	right: -60px;
	animation-delay: -7s;
}

@keyframes liquidFloat {
	0% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(35px, -25px) scale(1.08); }
	100% { transform: translate(-25px, 25px) scale(0.94); }
}

.calc-single-wrap {
	max-width: 820px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

/* Liquid Glass Cards */
.calc-card {
	position: relative;
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(24px) saturate(190%);
	-webkit-backdrop-filter: blur(24px) saturate(190%);
	border-radius: 24px;
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, 0.85);
	box-shadow: 
		0 20px 45px rgba(15, 23, 42, 0.07),
		0 1px 2px rgba(255, 255, 255, 0.9) inset,
		0 -1px 2px rgba(0, 0, 0, 0.04) inset;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.calc-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.4),
		transparent
	);
	transition: left 0.75s ease;
	pointer-events: none;
}

.calc-card:hover::before {
	left: 100%;
}

.calc-card:hover {
	box-shadow: 
		0 25px 60px rgba(15, 23, 42, 0.1),
		0 1px 3px rgba(255, 255, 255, 1) inset;
	transform: translateY(-2px);
}

/* Metal Tabs Segmented Controller */
.metal-tabs-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	background: rgba(241, 245, 249, 0.8);
	padding: 4px;
	border-radius: 14px;
	border: 1px solid rgba(203, 213, 225, 0.6);
}

.metal-tab-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 10px;
	background: transparent;
	border: none;
	font-size: 13.5px;
	font-weight: 600;
	color: #64748b;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.metal-tab-btn:hover {
	color: #1e293b;
	background: rgba(255, 255, 255, 0.5);
}

.metal-tab-btn.active {
	background: #ffffff;
	color: #0f172a;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Scheme Tabs Grid (Compact Pills) */
.scheme-tabs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.scheme-tab-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 12px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(203, 213, 225, 0.7);
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* eDibby 11 tab in Row 3 spans full width */
.scheme-tab-btn[data-value="11-dsp"] {
	grid-column: 1 / -1;
}

.scheme-tab-btn:hover {
	border-color: #d9b45c;
	background: rgba(255, 255, 255, 0.95);
	transform: translateY(-1px);
}

.scheme-tab-btn.active {
	background: #0f172a;
	border-color: #0f172a;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
}

.scheme-tab-btn.active .scheme-tab-name {
	color: #ffffff;
}

.scheme-tab-btn.active .scheme-tab-name small {
	color: #94a3b8;
}

.scheme-tab-name {
	font-size: 14px;
	font-weight: 500;
	color: #1e293b;
	white-space: nowrap;
}

.scheme-tab-name small {
	font-size: 11px;
	color: #64748b;
	font-weight: 500;
}

.scheme-tab-badge {
	font-size: 10.5px;
	font-weight: 500;
	background: #DCFCE7;
	color: #000000;
	padding: 2px 7px;
	border-radius: 6px;
	white-space: nowrap;
}

.scheme-tab-badge.dsp-badge {
	background: #FEF3C7;
	color: #92400E;
}

.scheme-tab-btn.active .scheme-tab-badge {
	background: #22C55E;
	color: #000000;
}

.scheme-tab-btn.active .scheme-tab-badge.dsp-badge {
	background: #F59E0B;
	color: #000000;
}

/* Compact Scheme Limits & Returns Grid */
.calc-limits-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.calc-limit-box {
	background: rgba(248, 250, 252, 0.85);
	backdrop-filter: blur(12px);
	padding: 8px 14px;
	height: 38px;
	border-radius: 10px;
	border: 1px solid rgba(203, 213, 225, 0.6);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.limit-box-left {
	display: flex;
	align-items: center;
	gap: 6px;
}

.limit-box-title {
	font-size: 11px;
	font-weight: 600;
	color: #64748b;
	text-transform: uppercase;
}

.limit-box-val {
	font-size: 13px;
	font-weight: 700;
	color: #0f172a;
}

.limit-box-right {
	display: flex;
	align-items: center;
	gap: 4px;
}

.limit-box-sub-label {
	font-size: 11px;
	color: #64748b;
}

.limit-box-sub-val {
	font-size: 12px;
	font-weight: 700;
	color: #0284c7;
}

@media (max-width: 640px) {
	.scheme-tabs-grid {
		grid-template-columns: 1fr;
	}
	.scheme-tab-btn[data-value="11-dsp"] {
		grid-column: 1;
	}
	.calc-limits-grid {
		grid-template-columns: 1fr;
	}
}

.card-heading {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 4px;
}

.card-subtext {
	font-size: 14px;
	color: #64748B;
	margin-bottom: 24px;
}

.form-group {
	margin-bottom: 16px;
}

.form-label {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #334155;
	margin-bottom: 6px;
}

.input-control,
.select-control {
	width: 100%;
	padding: 10px 14px;
	border-radius: 10px;
	border: 1px solid rgba(100, 116, 139, 0.25);
	font-size: 14px;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s;
}

.input-control:focus,
.select-control:focus {
	border-color: #334155;
}

.input-currency-wrap {
	position: relative;
}

.currency-symbol {
	position: absolute;
	left: 14px;
	top: 10px;
	color: #64748B;
	font-weight: 600;
}

.input-currency-wrap .input-control {
	padding-left: 32px;
}

.calc-summary-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 20px;
	background: #F4EFE6;
	padding: 14px 16px;
	border-radius: 14px;
	border: 1px solid rgba(100, 116, 139, 0.18);
	text-align: center;
}

.calc-summary-item {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.calc-summary-label {
	font-size: 11px;
	color: #64748B;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.calc-summary-val {
	font-size: 14.5px;
	font-weight: 600;
	color: #0F172A;
}

.calc-result-box {
	background: linear-gradient(135deg, #334155 0%, #0F172A 100%);
	color: #c7c7c7;
	padding: 16px 20px;
	border-radius: 14px;
	border: 1px solid rgba(255, 216, 117, 0.3);
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
}

.calc-result-box span {
	color: #c7c7c7 !important;
}

.calc-result-val {
	font-size: 24px;
	font-weight: 600;
	color: #ffd875 !important;
}

.form-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

@media (max-width: 480px) {
	.form-grid-2 {
		grid-template-columns: 1fr;
	}
}

/* KNOWLEDGE CENTRE */
.knowledge-grid-5 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

@media (max-width: 1280px) {
	.knowledge-grid-5 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.knowledge-grid-5 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.knowledge-grid-5 {
		grid-template-columns: repeat(1, 1fr);
	}
}

.article-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
	border: 1px solid rgba(100, 116, 139, 0.15);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.3s;
}

.article-card:hover {
	transform: translateY(-4px);
}

.article-img {
	width: 100%;
	height: 144px;
	object-fit: cover;
}

.article-body {
	padding: 16px;
}

.article-title {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 500;
	color: #0F172A;
	margin-bottom: 8px;
	line-height: 1.4;
}

.article-excerpt {
	font-size: 12px;
	color: #64748B;
	line-height: 1.5;
}

.article-footer {
	padding: 0 16px 16px 16px;
}

.read-more-link {
	font-size: 12px;
	font-weight: 600;
	color: #334155;
}

/* WHY CHOOSE US SECTION */
.why-section {
	background-color: var(--bg-dark);
	color: #c7c7c7;
	padding: 80px 24px;
	border-top: 1px solid rgba(100, 116, 139, 0.2);
	border-bottom: 1px solid rgba(100, 116, 139, 0.2);
}

.why-grid-8 {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 24px;
	text-align: center;
}

@media (max-width: 1280px) {
	.why-grid-8 {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 640px) {
	.why-grid-8 {
		grid-template-columns: repeat(2, 1fr);
	}
}

.why-icon-circle {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(100, 116, 139, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-gold);
	margin: 0 auto 12px auto;
	transition: all 0.3s ease;
}

.why-icon-circle:hover {
	background: rgba(255, 216, 117, 0.15);
	border-color: var(--primary-gold);
	transform: translateY(-3px);
}

.why-item-title {
	font-size: 14px;
	font-weight: 500;
	color: #cbd5e1;
}

/* FOOTER */
.footer {
	background-color: var(--bg-dark);
	color: #94a3b8;
	padding-top: 64px;
	padding-bottom: 32px;
	font-size: 15px;
	border-top: 1px solid rgba(100, 116, 139, 0.2);
}

.footer-grid-5 {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(100, 116, 139, 0.2);
}

@media (max-width: 1024px) {
	.footer-grid-5 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.footer-grid-5 {
		grid-template-columns: repeat(1, 1fr);
	}
}

.footer-col-title {
	font-family: var(--font-heading);
	font-size: 14.5px;
	font-weight: 600;
	color: #c7c7c7;
	margin-bottom: 16px;
	letter-spacing: 0.5px;
}

.footer-links-list {
	list-style: none;
}

.footer-links-list li {
	margin-bottom: 8px;
}

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

.social-icons-row {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}

.social-icon-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: #cbd5e1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}

.social-icon-btn:hover {
	color: var(--primary-gold);
	background: rgba(255, 216, 117, 0.12);
}

.footer-bottom-bar {
	padding-top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #64748B;
	font-size: 13px;
}

/* MOBILE DRAWER OVERLAY */
.mobile-drawer {
	position: fixed;
	inset: 0;
	background: linear-gradient(135deg, #0b0f14 0%, #151d27 100%);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	z-index: 1000;
	display: none;
	flex-direction: column;
	padding: 24px;
	overflow-y: auto;
}

.mobile-drawer.active {
	display: flex;
}

.mobile-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer-links {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 24px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
}

.mobile-drawer-links a {
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery{
	max-width:1400px;
	margin:0 auto;
	padding:96px 24px 110px;
}

.gallery-head{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:32px;
	margin-bottom:38px;
	padding-bottom:28px;
	border-bottom:1px solid rgba(243,239,229,0.1);
}

.gallery-head .label{
	font-size: 12px;
	font-weight: 600;
	color: #334155;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: block;
	margin-bottom: 8px;
}

.gallery-head h2{
	font-family:'Outfit', sans-serif;
	font-weight:500;
	font-size:32px;
	line-height:1.1;
	color:#0F172A;
	max-width:520px;
}

.gallery-head p{
	max-width:560px;
	font-size:16px;
	color:var(--stone);
	line-height:1.65;
	padding-bottom:6px;
}

.grid{
	display:grid;
	grid-template-columns:repeat(4, 1fr);
	gap:2px;
	/*background:rgba(243,239,229,0.08);*/
}

.tile{
	position:relative;
	aspect-ratio:1/1.15;
	overflow:hidden;
	background:var(--panel);
	display:block;
	text-decoration:none;
	color:inherit;
	cursor:pointer;
}

.tile .frame{
	position:absolute;
	inset:10px;
	border:1px solid var(--hair);
	z-index:3;
	pointer-events:none;
	transition:border-color .35s ease;
}
.tile:hover .frame{ border-color:var(--hair-strong); }

.tile .art{
	position:absolute;
	inset:0;
	display:flex;
	align-items:center;
	justify-content:center;
	background:radial-gradient(120% 100% at 30% 20%, #171A20 0%, #0A0D12 70%);
}
.tile .art.gold-art{ background:radial-gradient(120% 100% at 30% 20%, #1B1608 0%, #0A0D12 70%); }

.tile .art svg{ width:44%; height:44%; opacity:.9; transition:transform .5s ease; }
.tile:hover .art svg{ transform:scale(1.06); }

.tile .art img{
	max-width:58%;
	max-height:76%;
	width:auto;
	height:auto;
	object-fit:contain;
	filter:drop-shadow(0 18px 28px rgba(0,0,0,0.55));
	transition:transform .5s ease;
}
.tile:hover .art img{ transform:scale(1.06); }

.tile .art img.is-coin{
	max-width:66%;
	max-height:66%;
	aspect-ratio:1/1;
	object-fit:cover;
	border-radius:50%;
	box-shadow:0 0 0 1px rgba(230,197,112,0.35), 0 18px 28px rgba(0,0,0,0.55);
}

.tile .scrim{
	position:absolute;
	inset:0;
	background:linear-gradient(180deg, rgba(10,13,18,0) 40%, rgba(10,13,18,0.88) 100%);
	z-index:2;
}

.tile .tag{
	position:absolute;
	top:22px;
	left:22px;
	z-index:4;
	font-size:9.5px;
	letter-spacing:.16em;
	text-transform:uppercase;
	font-weight:700;
	padding:5px 10px;
	border:1px solid var(--hair-strong);
	color:var(--gold-soft);
	background:rgba(10,13,18,0.55);
	backdrop-filter:blur(2px);
}

.tile .info{
	position:absolute;
	left:22px;
	right:22px;
	bottom:20px;
	z-index:4;
}

.tile .info h3{
	font-family:'Outfit', sans-serif;
	font-weight:600;
	font-size:22px;
	color:var(--ivory);
	margin-bottom:4px;
}

.tile .info .spec{
	font-size:11px;
	letter-spacing:.04em;
	color:var(--stone);
	display:flex;
	align-items:center;
	gap:6px;
}

.tile .info .spec .dot{ width:3px; height:3px; border-radius:50%; background:var(--gold); }

.tile .go{
	position:absolute;
	right:22px;
	bottom:20px;
	z-index:5;
	width:30px;
	height:30px;
	border-radius:50%;
	border:1px solid var(--hair-strong);
	display:flex;
	align-items:center;
	justify-content:center;
	opacity:0;
	transform:translateY(6px);
	transition:opacity .35s ease, transform .35s ease, background .35s ease;
}
.tile:hover .go{ opacity:1; transform:translateY(0); background:rgba(217,180,92,0.12); }
.tile .go svg{ width:12px; height:12px; }

@media (max-width:980px){
	.grid{ grid-template-columns:repeat(2, 1fr); }
	.gallery-head{ flex-direction:column; align-items:flex-start; gap:14px; }
}
@media (max-width:560px){
	.grid{ grid-template-columns:1fr; }
	.gallery-head h2{ font-size:34px; }
}
.blog-article h1 {
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}
