/* ═══════════════════════════════════════════════
   DESIGN SYSTEM — TOKENS
═══════════════════════════════════════════════ */
:root {
	/* Palette */
	--black: #000000;
	--near-black: #1d1d1f;
	--dark-surface: #111111;
	--dark-card: #1c1c1e;
	--dark-card-2: #2c2c2e;
	--dark-border: rgba(255, 255, 255, 0.09);
	--light-bg: #f5f5f7;
	--light-card: #ffffff;
	--light-border: rgba(0, 0, 0, 0.08);
	--white: #ffffff;

	/* Accent — single source of truth */
	--accent: #0071e3;
	--accent-hover: #0058b0;
	--accent-light: #2997ff;
	--accent-subtle: rgba(0, 113, 227, 0.12);

	/* Text */
	--text-primary: #1d1d1f;
	--text-body: rgba(0, 0, 0, 0.78);
	--text-muted: rgba(0, 0, 0, 0.46);
	--text-dark-pri: #ffffff;
	--text-dark-body: rgba(255, 255, 255, 0.72);
	--text-dark-muted: rgba(255, 255, 255, 0.42);

	/* Semantic */
	--green: #10b981;
	--yellow: #f59e0b;
	--red: #ef4444;
	--purple: #8b5cf6;

	/* Elevation */
	--shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.10);
	--shadow-md: rgba(0, 0, 0, 0.18) 0 4px 20px;
	--shadow-card: rgba(0, 0, 0, 0.22) 3px 5px 30px 0px;

	/* Radius */
	--radius-pill: 980px;
	--radius-lg: 20px;
	--radius-md: 14px;
	--radius-sm: 8px;

	/* Spacing */
	--section-gap: 110px;
	--container: 980px;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 64px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
	background: var(--white);
	color: var(--text-primary);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

ul {
	list-style: none;
}

button {
	cursor: pointer;
	font-family: inherit;
}

/* ═══════════════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════════════ */
#v3-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0%;
	background: linear-gradient(90deg, var(--accent), var(--accent-light));
	z-index: 2000;
	transition: width 0.08s linear;
	border-radius: 0 2px 2px 0;
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
/* Desktop navbar now uses shared partial styles + look=dark */
.v3-home-navbar .site-navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

/* ═══════════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════════ */
.v3-container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.v3-section {
	padding: var(--section-gap) 0;
	overflow: hidden;
}

.v3-section-dark {
	background: var(--black);
}

.v3-section-light {
	background: var(--light-bg);
}

.v3-section-white {
	background: var(--white);
}

/* Section typography aliases used by tasks 6-9 */
.v3-h2 {
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 800;
	line-height: 1.07;
	letter-spacing: -0.04em;
	color: var(--near-black);
	margin-bottom: 1rem;
	text-align: center;
}

.v3-sub {
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: -0.02em;
	color: var(--text-body);
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
}

/* Section header */
.v3-section-head {
	text-align: center;
	margin-bottom: 4rem;
}

.v3-eyebrow {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 0.85rem;
	text-align: center;
}

.v3-eyebrow-dark {
	color: var(--accent-light);
}

.v3-heading {
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 700;
	line-height: 1.07;
	letter-spacing: -0.04em;
	color: var(--near-black);
	margin-bottom: 1rem;
}

.v3-heading-dark {
	color: var(--white);
}

.v3-subheading {
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: -0.02em;
	color: var(--text-body);
	max-width: 540px;
	margin: 0 auto;
}

.v3-subheading-dark {
	color: var(--text-dark-body);
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.92rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	border-radius: var(--radius-pill);
	padding: 11px 24px;
	border: none;
	transition: all 0.15s;
	white-space: nowrap;
	text-decoration: none;
	cursor: pointer;
}

.btn-primary {
	background: var(--accent);
	color: #fff;
}

.btn-primary:hover {
	background: var(--accent-hover);
	color: #fff;
}

.btn-outline-white {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
	border-color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.btn-outline-dark {
	background: transparent;
	color: var(--near-black);
	border: 1px solid rgba(0, 0, 0, 0.18);
}

.btn-outline-dark:hover {
	background: var(--near-black);
	color: #fff;
	border-color: transparent;
}

.btn-dark {
	background: var(--near-black);
	color: #fff;
}

.btn-dark:hover {
	background: #000;
	color: #fff;
}

.btn-green {
	background: #25d366;
	color: #fff;
}

.btn-green:hover {
	background: #1ab854;
	color: #fff;
}

.btn-sm {
	font-size: 0.8rem;
	padding: 7px 16px;
}

.btn-lg {
	font-size: 1rem;
	padding: 14px 32px;
}

/* ═══════════════════════════════════════════════
   BADGE / TAG
═══════════════════════════════════════════════ */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: var(--radius-pill);
}

.badge-blue {
	background: var(--accent-subtle);
	color: var(--accent);
}

.badge-blue-dk {
	background: rgba(41, 151, 255, 0.15);
	color: var(--accent-light);
}

.badge-green {
	background: rgba(16, 185, 129, 0.12);
	color: #059669;
}

.badge-yellow {
	background: rgba(245, 158, 11, 0.12);
	color: #d97706;
}

.badge-red {
	background: rgba(239, 68, 68, 0.12);
	color: #ef4444;
}

.badge-purple {
	background: rgba(139, 92, 246, 0.12);
	color: #7c3aed;
}

.badge-gray {
	background: rgba(107, 114, 128, 0.12);
	color: #6b7280;
}

/* ═══════════════════════════════════════════════
   ENTRANCE ANIMATION
═══════════════════════════════════════════════ */
.v3-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.v3-reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.v3-reveal-delay-1 {
	transition-delay: 0.08s;
}

.v3-reveal-delay-2 {
	transition-delay: 0.16s;
}

.v3-reveal-delay-3 {
	transition-delay: 0.24s;
}

.v3-reveal-delay-4 {
	transition-delay: 0.32s;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE BREAKPOINT HELPERS
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
	html {
		scroll-padding-top: 52px;
	}

	:root {
		--section-gap: 72px;
	}
}

@media (max-width: 480px) {
	:root {
		--container: 100%;
		--section-gap: 56px;
	}
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#v3-hero {
	min-height: 100vh;
	background: var(--black);
	padding-top: 64px;
	/* navbar height */
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

/* Subtle radial glow top-right behind image */
#v3-hero::before {
	content: '';
	position: absolute;
	top: -10%;
	right: -5%;
	width: 55%;
	height: 80%;
	background: radial-gradient(ellipse at top right,
			rgba(0, 113, 227, 0.18) 0%,
			transparent 65%);
	pointer-events: none;
}

.v3-hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 5rem 0 4rem;
}

.v3-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

/* ── Left column ── */
.v3-hero-left {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.v3-hero-status {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 0.78rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.75);
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 5px 14px;
	border-radius: var(--radius-pill);
	margin-bottom: 1.75rem;
	width: fit-content;
	letter-spacing: -0.01em;
}

.v3-hero-status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
	animation: pulse 2s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes pulse {

	0%,
	100% {
		box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
	}

	50% {
		box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.10);
	}
}

.v3-hero-title {
	font-size: clamp(2.6rem, 5.5vw, 4.2rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.05em;
	color: #fff;
	margin-bottom: 1.35rem;
}

.v3-hero-title span {
	color: var(--accent-light);
}

.v3-hero-subtitle {
	font-size: clamp(0.95rem, 1.8vw, 1.15rem);
	font-weight: 400;
	line-height: 1.65;
	letter-spacing: -0.02em;
	color: var(--text-dark-body);
	margin-bottom: 2.25rem;
	max-width: 440px;
}

.v3-hero-ctas {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

/* Quick-facts strip below CTAs */
.v3-hero-facts {
	display: flex;
	gap: 1.75rem;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	padding-top: 1.75rem;
}

.v3-hero-fact {
	display: flex;
	align-items: center;
	gap: 7px;
}

.v3-hero-fact i {
	font-size: 0.78rem;
	color: var(--accent-light);
	width: 16px;
	text-align: center;
}

.v3-hero-fact span {
	font-size: 0.8rem;
	font-weight: 400;
	color: var(--text-dark-muted);
	letter-spacing: -0.01em;
}

/* ── Right column — image frame ── */
.v3-hero-right {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
}

/* ── Aurora blobs behind the image ── */
.v3-hero-geo {
	position: absolute;
	inset: -10%;
	z-index: 0;
	pointer-events: none;
	/* overflow: hidden; */
}

.v3-hero-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(72px);
}

.v3-hero-blob-1 {
	width: 75%;
	height: 65%;
	top: -10%;
	left: -15%;
	background: radial-gradient(circle, rgba(0, 113, 227, 0.85) 0%, transparent 70%);
	animation: v3Blob1 9s ease-in-out infinite;
}

.v3-hero-blob-2 {
	width: 60%;
	height: 60%;
	bottom: -5%;
	right: -10%;
	background: radial-gradient(circle, rgba(110, 50, 255, 0.75) 0%, transparent 70%);
	animation: v3Blob2 12s ease-in-out infinite;
}

.v3-hero-blob-3 {
	width: 50%;
	height: 45%;
	top: 35%;
	left: 20%;
	background: radial-gradient(circle, rgba(0, 210, 200, 0.5) 0%, transparent 70%);
	animation: v3Blob3 15s ease-in-out infinite;
}

@keyframes v3Blob1 {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}

	35% {
		transform: translate(18px, -24px) scale(1.09);
	}

	70% {
		transform: translate(-12px, 16px) scale(0.93);
	}
}

@keyframes v3Blob2 {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}

	40% {
		transform: translate(-22px, 18px) scale(1.12);
	}

	75% {
		transform: translate(14px, -12px) scale(0.95);
	}
}

@keyframes v3Blob3 {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}

	50% {
		transform: translate(24px, -28px) scale(1.15);
	}
}

/* ── Iridescent rotating border ring ── */
/* @property lets us animate the conic-gradient angle natively */
@property --v3-ring-angle {
	syntax: '<angle>';
	inherits: false;
	initial-value: 0deg;
}

.v3-hero-img-wrap {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4/6;
	border-radius: 26px;
	padding: 2.5px;
	background: conic-gradient(from var(--v3-ring-angle, 0deg),
			#0071e3 0%,
			#6e32ff 22%,
			#00d2c8 38%,
			rgba(0, 0, 0, 0.05) 50%,
			rgba(0, 0, 0, 0.05) 60%,
			#00d2c8 72%,
			#6e32ff 85%,
			#0071e3 100%);
	animation: v3RingRotate 5s linear infinite;
	/* soft outer glow that pulses with the ring */
	box-shadow:
		0 0 40px rgba(0, 113, 227, 0.35),
		0 30px 90px rgba(0, 0, 0, 0.6);
	transition: box-shadow .4s ease;
}

.v3-hero-img-wrap:hover {
	box-shadow:
		0 0 60px rgba(0, 113, 227, 0.55),
		0 0 30px rgba(110, 50, 255, 0.35),
		0 40px 100px rgba(0, 0, 0, 0.65);
}

@keyframes v3RingRotate {
	from {
		--v3-ring-angle: 0deg;
	}

	to {
		--v3-ring-angle: 360deg;
	}
}

/* ── Image frame inside the ring ── */
.v3-hero-img-frame {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 23px;
	overflow: hidden;
	background: var(--dark-card);
	transform-style: preserve-3d;
	will-change: transform;
	animation: v3ImgReveal 1s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes v3ImgReveal {
	from {
		opacity: 0;
		transform: scale(0.88) translateY(30px);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.v3-hero-img-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .12s ease-out, filter .35s ease;
	will-change: transform;
}

.v3-hero-slider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.v3-hero-slider img {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .75s ease, transform .12s ease-out, filter .35s ease;
}

.v3-hero-slider img.active {
	opacity: 1;
}

.v3-hero-img-wrap:hover .v3-hero-img-frame img {
	filter: saturate(1.18) brightness(1.06);
}

/* Glare layer */
.v3-hero-img-frame::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at var(--glare-x, 30%) var(--glare-y, 30%),
			rgba(255, 255, 255, .18) 0%,
			transparent 62%);
	opacity: 0;
	transition: opacity .3s ease;
	pointer-events: none;
	border-radius: inherit;
}

.v3-hero-img-wrap:hover .v3-hero-img-frame::after {
	opacity: 1;
}

/* ── Stats bar below the grid ── */
.v3-hero-stats {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 4rem;
}

.v3-hero-stat {
	text-align: center;
	padding: 1.75rem 1rem;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.v3-hero-stat:last-child {
	border-right: none;
}

.v3-hero-stat-val {
	font-size: 1.9rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	letter-spacing: -0.05em;
	margin-bottom: 0.3rem;
}

.v3-hero-stat-val span {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--accent-light);
}

.v3-hero-stat-lbl {
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--text-dark-muted);
	letter-spacing: -0.01em;
}

/* Responsive hero */
@media (max-width: 860px) {
	.v3-hero-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.v3-hero-right {
		display: none;
	}

	.v3-hero-title {
		font-size: clamp(2.4rem, 8vw, 3.2rem);
	}

	.v3-hero-subtitle {
		max-width: 100%;
	}

	.v3-hero-stats {
		grid-template-columns: repeat(3, 1fr);
	}

	.v3-hero-stat:nth-child(3) {
		border-right: none;
	}

	.v3-hero-stat:nth-child(4) {
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.v3-hero-stat:nth-child(5) {
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.v3-hero-stat:nth-child(6) {
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		border-right: none;
	}
}

@media (max-width: 480px) {
	.v3-hero-stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.v3-hero-stat:nth-child(2) {
		border-right: none;
	}

	.v3-hero-stat:nth-child(3) {
		border-right: 1px solid rgba(255, 255, 255, 0.08);
	}

	.v3-hero-stat:nth-child(odd):last-child {
		grid-column: 1 / -1;
		border-right: none;
	}

	.v3-hero-facts {
		gap: 1rem;
	}
}

/* ═══════════════════════════════════════════════
   ANNOUNCEMENTS
═══════════════════════════════════════════════ */
#v3-announcements {
	background: var(--black);
	padding: var(--section-gap) 0 2.5rem;
}

#v3-announcements .v3-eyebrow {
	color: rgba(255, 255, 255, .45);
}

#v3-announcements .v3-h2 {
	color: #f5f5f7;
}

#v3-announcements .v3-sub {
	color: rgba(255, 255, 255, .5);
}

/* ── Pinned banner ── */
.v3-ann-banner {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 1rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 220px;
}

.v3-ann-banner-img {
	position: relative;
	overflow: hidden;
}

.v3-ann-banner-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.v3-ann-banner-img-ph {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.5rem;
}

.v3-ann-banner-body {
	padding: 2rem 2.25rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.6rem;
}

/* Type-specific banner colours */
.v3-ann-banner.type-info {
	background: linear-gradient(135deg, #0a1628 0%, #0d2040 100%);
}

.v3-ann-banner.type-warning {
	background: linear-gradient(135deg, #1a1200 0%, #2a1f00 100%);
}

.v3-ann-banner.type-urgent {
	background: linear-gradient(135deg, #1a0a0a 0%, #2a0f0f 100%);
}

.v3-ann-banner.type-maintenance {
	background: linear-gradient(135deg, #111418 0%, #1a1e24 100%);
}

.v3-ann-banner-type {
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	display: flex;
	align-items: center;
	gap: 6px;
}

.v3-ann-banner.type-info .v3-ann-banner-type {
	color: var(--accent-light);
}

.v3-ann-banner.type-warning .v3-ann-banner-type {
	color: #fbbf24;
}

.v3-ann-banner.type-urgent .v3-ann-banner-type {
	color: #f87171;
}

.v3-ann-banner.type-maintenance .v3-ann-banner-type {
	color: #9ca3af;
}

.v3-ann-banner-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	letter-spacing: -0.03em;
}

.v3-ann-banner-msg {
	font-size: 0.9rem;
	color: var(--text-dark-body);
	line-height: 1.65;
	letter-spacing: -0.01em;
}

.v3-ann-banner-meta {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	margin-top: 0.25rem;
}

.v3-ann-banner-countdown {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 0.8rem;
	color: var(--text-dark-muted);
}

.v3-ann-banner-countdown i {
	color: var(--accent-light);
	font-size: 0.72rem;
}

.v3-ann-countdown-val {
	font-weight: 700;
	color: #fff;
	font-variant-numeric: tabular-nums;
}

.v3-ann-pin-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	background: rgba(239, 68, 68, 0.18);
	color: #f87171;
	padding: 3px 10px;
	border-radius: var(--radius-pill);
}

/* ── Non-pinned cards ── */
.v3-ann-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 0.75rem;
}

.v3-ann-card {
	border-radius: var(--radius-md);
	padding: 1.25rem 1.4rem;
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	border-left: 3px solid transparent;
	cursor: pointer;
	transition: filter 0.15s;
}

.v3-ann-card:hover {
	filter: brightness(1.08);
}

.v3-ann-card.type-info {
	background: rgba(0, 113, 227, 0.1);
	border-left-color: var(--accent-light);
}

.v3-ann-card.type-warning {
	background: rgba(245, 158, 11, 0.1);
	border-left-color: #fbbf24;
}

.v3-ann-card.type-urgent {
	background: rgba(239, 68, 68, 0.12);
	border-left-color: #f87171;
}

.v3-ann-card.type-maintenance {
	background: rgba(107, 114, 128, 0.1);
	border-left-color: #6b7280;
}

.v3-ann-card-icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	margin-top: 1px;
}

.v3-ann-card.type-info .v3-ann-card-icon {
	background: rgba(41, 151, 255, 0.15);
	color: var(--accent-light);
}

.v3-ann-card.type-warning .v3-ann-card-icon {
	background: rgba(251, 191, 36, 0.15);
	color: #fbbf24;
}

.v3-ann-card.type-urgent .v3-ann-card-icon {
	background: rgba(248, 113, 113, 0.15);
	color: #f87171;
}

.v3-ann-card.type-maintenance .v3-ann-card-icon {
	background: rgba(156, 163, 175, 0.15);
	color: #9ca3af;
}

.v3-ann-card-body {
	flex: 1;
}

.v3-ann-card-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
	margin-bottom: 0.3rem;
	line-height: 1.3;
}

.v3-ann-card-msg {
	font-size: 0.83rem;
	color: var(--text-dark-body);
	line-height: 1.6;
	letter-spacing: -0.01em;
}

/* Accordion expand/collapse */
.v3-ann-card-msg.collapsed {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.v3-ann-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 0.75rem;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.v3-ann-card-cta {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--accent-light);
	text-decoration: none;
	letter-spacing: -0.01em;
	transition: opacity 0.15s;
}

.v3-ann-card-cta:hover {
	opacity: 0.75;
}

.v3-ann-card-toggle {
	font-size: 0.72rem;
	font-weight: 500;
	color: var(--text-dark-muted);
	background: none;
	border: none;
	padding: 0;
	transition: color 0.15s;
	display: flex;
	align-items: center;
	gap: 4px;
}

.v3-ann-card-toggle:hover {
	color: #fff;
}

@media (max-width: 680px) {
	.v3-ann-banner {
		grid-template-columns: 1fr;
	}

	.v3-ann-banner-img {
		height: 160px;
	}

	.v3-ann-banner-body {
		padding: 1.5rem;
	}

	.v3-ann-banner-title {
		font-size: 1.2rem;
	}
}

/* ═══════════════════════════════════════════════
   SPACES
═══════════════════════════════════════════════ */
#v3-spaces,
#spaces {
	background: var(--light-bg);
	padding: var(--section-gap) 0;
}

/* Each space is a full-width horizontal row */
.v3-space-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--white);
	box-shadow: var(--shadow-md);
	margin-bottom: 3rem;
	transition: box-shadow 0.2s;
}

.v3-space-row:hover {
	box-shadow: var(--shadow-card);
}

/* Alternate: odd rows = image left, even = image right */
.v3-space-row.reversed .v3-space-img-wrap {
	order: 2;
}

.v3-space-row.reversed .v3-space-body {
	order: 1;
}

.v3-space-img-wrap {
	position: relative;
	overflow: hidden;
	min-height: 380px;
}

.v3-space-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.v3-space-row:hover .v3-space-img-wrap img {
	transform: scale(1.04);
}

.v3-space-img-ph {
	width: 100%;
	height: 100%;
	min-height: 380px;
	background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
	color: rgba(0, 0, 0, 0.1);
}

/* Featured ribbon */
.v3-space-ribbon {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(8px);
	color: #fff;
	padding: 5px 12px;
	border-radius: var(--radius-pill);
}

.v3-space-ribbon i {
	color: #fbbf24;
}

/* Body */
.v3-space-body {
	padding: 2.5rem 3rem;
	display: flex;
	flex-direction: column;
	gap: 0;
	justify-content: center;
}

.v3-space-number {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 0.6rem;
}

.v3-space-name {
	font-size: 1.9rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.04em;
	color: var(--near-black);
	margin-bottom: 0.75rem;
}

.v3-space-desc {
	font-size: 0.95rem;
	color: var(--text-body);
	line-height: 1.7;
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
}

/* Features list */
.v3-space-features-title {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 0.6rem;
}

.v3-space-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 1.75rem;
}

.v3-space-feat {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--text-primary);
	background: var(--light-bg);
	padding: 4px 11px;
	border-radius: var(--radius-pill);
	letter-spacing: -0.01em;
}

.v3-space-feat i {
	color: var(--green);
	font-size: 0.6rem;
}

/* Pricing rules table */
.v3-space-pricing-title {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 0.6rem;
}

.v3-space-rules {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.v3-space-rule {
	background: var(--light-bg);
	border-radius: var(--radius-sm);
	padding: 0.6rem 0.75rem;
	border-left: 3px solid var(--accent);
}

.v3-space-rule-type {
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--text-muted);
	margin-bottom: 2px;
}

.v3-space-rule-price {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--near-black);
	letter-spacing: -0.03em;
}

.v3-space-rule-price span {
	font-size: 0.7rem;
	font-weight: 500;
	color: var(--text-muted);
	letter-spacing: 0;
}

.v3-space-rule-scope {
	font-size: 0.68rem;
	color: var(--text-muted);
	margin-top: 1px;
	letter-spacing: -0.01em;
}

/* CTA row */
.v3-space-ctas {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 860px) {

	.v3-space-row,
	.v3-space-row.reversed {
		grid-template-columns: 1fr;
	}

	.v3-space-row.reversed .v3-space-img-wrap {
		order: 0;
	}

	.v3-space-row.reversed .v3-space-body {
		order: 0;
	}

	.v3-space-img-wrap {
		min-height: 260px;
	}

	.v3-space-body {
		padding: 2rem;
	}

	.v3-space-name {
		font-size: 1.5rem;
	}
}

/* ═══════════════════════════════════════════════
   PRICING CALCULATOR
═══════════════════════════════════════════════ */
/* Gear & Tools */
.v3-gear-section {
	background: #1b58c5;
	color: #fff;
}

.v3-gear-section .v3-eyebrow,
.v3-gear-section .v3-heading,
.v3-gear-section .v3-subheading {
	color: #fff;
}

.v3-gear-section .v3-subheading {
	opacity: .86;
}

.v3-gear-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 46px;
}

.v3-gear-card {
	background: rgba(255, 255, 255, .96);
	border: 1px solid rgba(255, 255, 255, .32);
	border-radius: 34px 6px 6px 34px;
	box-shadow: 0 22px 58px rgba(0, 34, 96, .16);
	color: var(--near-black);
	display: grid;
	grid-template-columns: minmax(180px, .95fr) minmax(0, 1.05fr);
	min-height: 310px;
	overflow: hidden;
	position: relative;
	transition: box-shadow .2s, transform .2s;
}

.v3-gear-card:nth-child(2n) {
	border-radius: 6px 34px 34px 6px;
}

.v3-gear-card:hover {
	box-shadow: 0 26px 70px rgba(0, 34, 96, .22);
	transform: translateY(-4px);
}

.v3-gear-media {
	background: rgba(0, 0, 0, .08);
	min-height: 100%;
	overflow: hidden;
	position: relative;
}

.v3-gear-media img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
	width: 100%;
}

.v3-gear-card:hover .v3-gear-media img {
	transform: scale(1.045);
}

.v3-gear-media-fallback {
	align-items: center;
	background:
		radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .34), transparent 28%),
		linear-gradient(135deg, #0f172a, #1f4fb9);
	color: #fff;
	display: flex;
	font-size: 54px;
	height: 100%;
	justify-content: center;
	min-height: 310px;
	width: 100%;
}

.v3-gear-body {
	display: flex;
	flex-direction: column;
	padding: 26px;
}

.v3-gear-status {
	align-self: flex-start;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .06em;
	margin-top: 14px;
	padding: 7px 10px;
	text-transform: uppercase;
	white-space: nowrap;
}

.v3-gear-status-available {
	background: rgba(232, 255, 241, .94);
	color: #128c3f;
}

.v3-gear-status-ask {
	background: rgba(235, 243, 255, .94);
	color: #245fd0;
}

.v3-gear-status-reserved {
	background: rgba(255, 246, 224, .94);
	color: #a65f00;
}

.v3-gear-status-soon {
	background: rgba(226, 247, 255, .94);
	color: #0369a1;
}

.v3-gear-status-muted {
	background: rgba(244, 245, 247, .94);
	color: #4b5563;
}

.v3-gear-category {
	color: #3478f2;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .1em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.v3-gear-card h3 {
	color: var(--near-black);
	font-size: clamp(19px, 2.1vw, 32px);
	font-weight: 850;
	letter-spacing: -.055em;
	line-height: 1.08;
	margin: 0 0 12px;
	white-space: nowrap;
}

.v3-gear-card p {
	color: var(--text-body);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.7;
	margin: 0;
}

.v3-gear-note {
	align-items: center;
	border-top: 1px solid rgba(0, 0, 0, .07);
	color: var(--text-body);
	display: flex;
	font-size: 13px;
	font-weight: 750;
	gap: 8px;
	margin-top: auto;
	padding-top: 18px;
}

.v3-gear-note i {
	color: #3478f2;
}

@media (max-width: 980px) {
	.v3-gear-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	.v3-gear-grid {
		gap: 18px;
		margin-top: 32px;
	}

	.v3-gear-card {
		border-radius: 30px 58px 58px 30px;
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.v3-gear-card:nth-child(2n) {
		border-radius: 30px 58px 58px 30px;
	}

	.v3-gear-media,
	.v3-gear-media-fallback {
		min-height: 220px;
	}

	.v3-gear-body {
		padding: 22px;
	}
}
#v3-calculator,
#pricing {
	background: var(--black);
	padding: var(--section-gap) 0;
}

.v3-calc-wrap {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 2rem;
	align-items: stretch;
}

/* ── Controls panel ── */
.v3-calc-controls {
	background: var(--dark-card);
	border-radius: var(--radius-lg);
	padding: 2.25rem;
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	border: 1px solid var(--dark-border);
	height: 100%;
}

.v3-calc-field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.v3-calc-label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-dark-muted);
}

/* Space selector */
.v3-calc-select {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--dark-border);
	border-radius: var(--radius-md);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 500;
	font-family: inherit;
	padding: 0.75rem 1rem;
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	transition: border-color 0.15s;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}

.v3-calc-select:focus {
	outline: none;
	border-color: var(--accent);
}

.v3-calc-select option {
	background: #1c1c1e;
	color: #fff;
}

/* Duration tabs */
.v3-calc-tabs {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
}

.v3-calc-tab {
	flex: 1;
	min-width: 80px;
	padding: 0.6rem 0.5rem;
	border-radius: var(--radius-sm);
	border: 1px solid var(--dark-border);
	background: transparent;
	color: var(--text-dark-muted);
	font-size: 0.8rem;
	font-weight: 600;
	font-family: inherit;
	letter-spacing: -0.01em;
	transition: all 0.15s;
	text-align: center;
}

.v3-calc-tab:hover {
	border-color: rgba(255, 255, 255, 0.25);
	color: #fff;
}

.v3-calc-tab.active {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

.v3-calc-tab:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

/* Scope toggle */
.v3-calc-scope {
	display: flex;
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-md);
	padding: 4px;
	gap: 4px;
}

.v3-calc-scope-btn {
	flex: 1;
	padding: 0.55rem 1rem;
	border-radius: calc(var(--radius-md) - 4px);
	border: none;
	background: transparent;
	color: var(--text-dark-muted);
	font-size: 0.82rem;
	font-weight: 600;
	font-family: inherit;
	transition: all 0.15s;
}

.v3-calc-scope-btn.active {
	background: var(--white);
	color: var(--near-black);
	box-shadow: var(--shadow-sm);
}

.v3-calc-scope-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

/* Dynamic duplicators */
.v3-calc-dup-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem;
}

.v3-calc-dup {
	border: 1px solid var(--dark-border);
	background: rgba(255, 255, 255, 0.04);
	border-radius: var(--radius-sm);
	padding: 0.55rem 0.6rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.55rem;
	transition: opacity 0.15s, filter 0.15s, border-color 0.15s;
}

.v3-calc-dup-title {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: #fff;
}

.v3-calc-dup-ctrl {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.v3-calc-dup-btn {
	width: 24px;
	height: 24px;
	border-radius: 6px;
	border: 1px solid var(--dark-border);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.15s;
}

.v3-calc-dup-btn:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.24);
}

.v3-calc-dup-val {
	min-width: 16px;
	text-align: center;
	font-size: 0.88rem;
	font-weight: 700;
	color: #fff;
	font-variant-numeric: tabular-nums;
}

.v3-calc-dup.is-hidden {
	display: none;
}

/* Number input */
.v3-calc-number {
	width: 120px;
	height: 44px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--dark-border);
	border-radius: var(--radius-md);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	font-family: inherit;
	padding: 0 0.75rem;
}

.v3-calc-number:focus {
	outline: none;
	border-color: var(--accent);
}

.v3-calc-number::-webkit-outer-spin-button,
.v3-calc-number::-webkit-inner-spin-button {
	opacity: 1;
}

/* People count row */
.v3-calc-people {
	display: none;
	flex-direction: column;
	gap: 0.5rem;
}

.v3-calc-people.show {
	display: flex;
}

/* ── Results panel ── */
.v3-calc-result {
	background:
		radial-gradient(120% 90% at 100% 0%, rgba(41, 151, 255, 0.12) 0%, rgba(41, 151, 255, 0) 58%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%),
		var(--dark-card);
	border-radius: var(--radius-lg);
	border: 1px solid var(--dark-border);
	overflow: hidden;
	position: sticky;
	top: 68px;
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 56px rgba(0, 0, 0, 0.35);
}

.v3-calc-result-header {
	padding: 1.1rem 1.25rem;
	border-bottom: 1px solid var(--dark-border);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.v3-calc-result-title {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
	margin-bottom: 0.42rem;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 980px;
	background: rgba(255, 255, 255, 0.08);
}

.v3-calc-result-space {
	font-size: 1.02rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
	line-height: 1.35;
}

.v3-calc-result-body {
	padding: 1.1rem 1.2rem 1.25rem;
	height: auto;
	flex: 1;
	display: flex;
	flex-direction: column;
}

#calcBreakdownWrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	gap: 0.8rem;
}

.v3-calc-breakdown {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	margin-bottom: 0;
}

.v3-calc-breakdown-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.8rem;
	color: var(--text-dark-muted);
	padding: 0.52rem 0.65rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
}

.v3-calc-breakdown-row span:last-child {
	font-weight: 700;
	color: #fff;
	font-variant-numeric: tabular-nums;
}

.v3-calc-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
	margin: 0.15rem 0;
}

.v3-calc-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.7rem 0.8rem;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(41, 151, 255, 0.16) 0%, rgba(41, 151, 255, 0.07) 100%);
	border: 1px solid rgba(41, 151, 255, 0.35);
}

.v3-calc-total-label {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: #fff;
}

.v3-calc-total-val {
	font-size: 1.7rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.04em;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}

.v3-calc-total-val span {
	font-size: 0.74rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.82);
	margin-left: 4px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.v3-calc-no-rule {
	display: none;
	text-align: center;
	padding: 1.25rem 0.4rem;
	color: var(--text-dark-muted);
	font-size: 0.88rem;
	line-height: 1.6;
	margin: auto 0;
}

.v3-calc-no-rule i {
	display: block;
	font-size: 2rem;
	color: rgba(255, 255, 255, 0.15);
	margin-bottom: 0.5rem;
}

.v3-calc-notes {
	margin-top: 0.85rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.v3-calc-note {
	font-size: 0.72rem;
	color: var(--text-dark-muted);
	letter-spacing: -0.01em;
	line-height: 1.5;
	display: flex;
	align-items: flex-start;
	gap: 5px;
}

.v3-calc-note i {
	color: var(--accent-light);
	margin-top: 2px;
	flex-shrink: 0;
	font-size: 0.65rem;
}

@media (max-width: 860px) {
	.v3-calc-wrap {
		grid-template-columns: 1fr;
	}

	.v3-calc-dup-grid {
		grid-template-columns: 1fr;
	}

	.v3-calc-result {
		position: static;
		height: auto;
	}
}

/* ── PLANS ─────────────────────────────────────── */
#plans {
	background: var(--light-bg);
}

.v3-plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
	margin-top: 56px;
}

.v3-plan-card {
	background: #fff;
	border: 1.5px solid #e0e0e0;
	border-radius: 20px;
	padding: 36px 32px 32px;
	display: flex;
	flex-direction: column;
	gap: 0;
	transition: box-shadow .25s, transform .25s;
	position: relative;
}

.v3-plan-card:hover {
	box-shadow: 0 12px 48px rgba(0, 0, 0, .10);
	transform: translateY(-4px);
}

.v3-plan-card.featured {
	background: #000;
	border-color: #000;
	color: #f5f5f7;
}

.v3-plan-popular {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 4px 18px;
	border-radius: 980px;
	white-space: nowrap;
}

.v3-plan-name {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 6px;
}

.v3-plan-desc {
	font-size: 14px;
	opacity: .65;
	margin-bottom: 28px;
	line-height: 1.5;
	min-height: 40px;
}

.v3-plan-price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 24px;
}

.v3-plan-price .amt {
	font-size: 44px;
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1;
}

.v3-plan-price .curr {
	font-size: 18px;
	font-weight: 600;
	opacity: .7;
}

.v3-plan-price .per {
	font-size: 13px;
	opacity: .55;
	align-self: flex-end;
	margin-bottom: 4px;
}

.v3-plan-features {
	list-style: none;
	padding: 0;
	margin: 10px 0 28px;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.v3-plan-features li {
	font-size: 13.5px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	opacity: .85;
	line-height: 1.4;
}

.v3-plan-features li::before {
	content: '✓';
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	background: rgba(0, 113, 227, .12);
	color: var(--accent);
	border-radius: 50%;
	font-size: 10px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}

.v3-plan-card.featured .v3-plan-features li::before {
	background: rgba(255, 255, 255, .12);
	color: #fff;
}

.v3-plan-cta {
	margin-top: auto;
	display: block;
	text-align: center;
	padding: 14px 0;
	border-radius: 980px;
	font-size: 15px;
	font-weight: 600;
	border: 2px solid var(--accent);
	color: var(--accent);
	text-decoration: none;
	transition: background .2s, color .2s;
}

.v3-plan-cta:hover {
	background: var(--accent);
	color: #fff;
}

.v3-plan-card.featured .v3-plan-cta {
	background: #fff;
	color: #000;
	border-color: #fff;
}

.v3-plan-card.featured .v3-plan-cta:hover {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

.v3-plan-duration {
	font-size: 12px;
	opacity: .5;
	text-align: center;
	margin-top: 10px;
}

@media (max-width: 860px) {
	.v3-plans-grid {
		grid-template-columns: 1fr;
	}

	.v3-plan-price .amt {
		font-size: 36px;
	}
}

/* ── OFFERS ─────────────────────────────────────── */
#offers {
	background: #000;
	color: #f5f5f7;
}

#offers .v3-eyebrow {
	color: rgba(255, 255, 255, .5);
}

#offers .v3-h2 {
	color: #f5f5f7;
}

#offers .v3-sub {
	color: rgba(255, 255, 255, .55);
}

.v3-offers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-top: 56px;
}

.v3-offer-card {
	background: #1a1a1a;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 20px;
	padding: 32px 28px 28px;
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
	overflow: hidden;
	transition: border-color .25s, transform .25s;
}

.v3-offer-card:hover {
	border-color: rgba(255, 255, 255, .2);
	transform: translateY(-4px);
}

.v3-offer-discount {
	font-size: 64px;
	font-weight: 900;
	letter-spacing: -.04em;
	line-height: 1;
	background: linear-gradient(135deg, #0071e3, #2997ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 4px;
}

.v3-offer-title {
	font-size: 20px;
	font-weight: 700;
	color: #f5f5f7;
	margin-bottom: 8px;
}

.v3-offer-desc {
	font-size: 13.5px;
	color: rgba(255, 255, 255, .55);
	line-height: 1.55;
	margin-bottom: 20px;
	flex-grow: 1;
}

/* Countdown */
.v3-offer-countdown {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	align-items: flex-end;
}

.v3-cd-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 44px;
}

.v3-cd-val {
	font-size: 28px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.v3-cd-lbl {
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: rgba(255, 255, 255, .4);
	margin-top: 2px;
}

.v3-cd-sep {
	font-size: 22px;
	font-weight: 700;
	color: rgba(255, 255, 255, .3);
	margin-bottom: 6px;
}

.v3-offer-expired-badge {
	display: inline-block;
	background: rgba(255, 59, 48, .15);
	color: #ff453a;
	border: 1px solid rgba(255, 59, 48, .3);
	border-radius: 980px;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 14px;
	margin-bottom: 20px;
	letter-spacing: .04em;
	text-transform: uppercase;
}

/* Usage bar */
.v3-offer-usage {
	margin-bottom: 20px;
}

.v3-offer-usage-label {
	display: flex;
	justify-content: space-between;
	font-size: 11.5px;
	color: rgba(255, 255, 255, .45);
	margin-bottom: 6px;
}

.v3-offer-bar-track {
	height: 5px;
	background: rgba(255, 255, 255, .1);
	border-radius: 980px;
	overflow: hidden;
}

.v3-offer-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, #0071e3, #2997ff);
	border-radius: 980px;
	transition: width .6s ease;
}

/* Weekday pills */
.v3-offer-days {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 16px;
}

.v3-day-pill {
	font-size: 11px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 980px;
	background: rgba(255, 255, 255, .08);
	color: rgba(255, 255, 255, .6);
	text-transform: uppercase;
	letter-spacing: .04em;
}

.v3-day-pill.active-day {
	background: rgba(0, 113, 227, .25);
	color: #2997ff;
}

/* Valid hours */
.v3-offer-hours {
	font-size: 12px;
	color: rgba(255, 255, 255, .4);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.v3-offer-hours svg {
	opacity: .5;
}

/* Coupon row */
.v3-offer-coupon-row {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 12px;
	padding: 10px 14px;
	margin-bottom: 18px;
}

.v3-coupon-code {
	flex: 1;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .12em;
	color: #f5f5f7;
	font-family: 'Courier New', monospace;
}

.v3-copy-btn {
	background: none;
	border: 1px solid rgba(255, 255, 255, .2);
	color: rgba(255, 255, 255, .7);
	font-size: 11px;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 980px;
	cursor: pointer;
	transition: background .2s, color .2s;
	white-space: nowrap;
}

.v3-copy-btn:hover,
.v3-copy-btn.copied {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

/* Max discount note */
.v3-offer-maxdisc {
	font-size: 11.5px;
	color: rgba(255, 255, 255, .35);
	margin-top: -10px;
	margin-bottom: 14px;
}

@media (max-width: 860px) {
	.v3-offers-grid {
		grid-template-columns: 1fr;
	}

	.v3-offer-discount {
		font-size: 48px;
	}
}

/* ── EVENTS ─────────────────────────────────────── */
#events {
	background: var(--light-bg);
}

#events .v3-eyebrow {
	color: var(--accent);
}

#events .v3-h2 {
	color: var(--near-black);
}

#events .v3-sub {
	color: var(--text-body);
}

/* Card shell */
#events .v3-event-card {
	background: #fff;
	border-color: rgba(0, 0, 0, .09);
	box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
}

#events .v3-event-card:hover {
	border-color: rgba(0, 0, 0, .18);
}

/* Card body text */
#events .v3-event-body {
	background: #fff;
}

#events .v3-event-date-row {
	color: var(--accent);
}

#events .v3-event-title {
	color: var(--near-black);
}

#events .v3-event-location {
	color: var(--text-body);
}

/* Seats bar */
#events .v3-event-seats-label {
	color: rgba(0, 0, 0, .45);
}

#events .v3-event-seats-track {
	background: rgba(0, 0, 0, .08);
}

/* Social links & full-btn inside card on white bg */
#events .v3-event-social-link {
	background: rgba(0, 0, 0, .05);
	border-color: rgba(0, 0, 0, .1);
	color: rgba(0, 0, 0, .55);
}

#events .v3-event-social-link:hover {
	background: rgba(0, 0, 0, .1);
	color: rgba(0, 0, 0, .8);
}

#events .v3-event-reserve.full-btn {
	background: rgba(0, 0, 0, .06);
	color: rgba(0, 0, 0, .35);
}

.v3-events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 28px;
	margin-top: 56px;
}

.v3-event-card {
	background: #111;
	border: 1px solid rgba(255, 255, 255, .07);
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .25s, border-color .25s;
}

.v3-event-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 255, 255, .18);
}

/* Cover image */
.v3-event-cover {
	position: relative;
	height: 200px;
	overflow: hidden;
	background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
	flex-shrink: 0;
}

.v3-event-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}

.v3-event-card:hover .v3-event-cover img {
	transform: scale(1.04);
}

.v3-event-cover-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, transparent 55%);
}

/* Badges on cover */
.v3-event-badges {
	position: absolute;
	top: 14px;
	left: 14px;
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.v3-event-badge {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 980px;
	backdrop-filter: blur(8px);
}

.v3-badge-free {
	background: rgba(52, 199, 89, .25);
	color: #34c759;
	border: 1px solid rgba(52, 199, 89, .4);
}

.v3-badge-paid {
	background: rgba(255, 159, 10, .2);
	color: #ff9f0a;
	border: 1px solid rgba(255, 159, 10, .35);
}

.v3-badge-full {
	background: rgba(255, 69, 58, .2);
	color: #ff453a;
	border: 1px solid rgba(255, 69, 58, .35);
}

/* Countdown on cover bottom */
.v3-event-cd {
	position: absolute;
	bottom: 12px;
	left: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.v3-event-cd-label {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: rgba(255, 255, 255, .55);
	font-weight: 600;
}

.v3-event-cd-val {
	font-size: 13px;
	font-weight: 800;
	color: #fff;
	font-variant-numeric: tabular-nums;
	background: rgba(0, 0, 0, .4);
	backdrop-filter: blur(6px);
	padding: 3px 10px;
	border-radius: 980px;
}

/* Body */
.v3-event-body {
	padding: 22px 22px 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 0;
}

.v3-event-date-row {
	font-size: 11.5px;
	color: var(--accent-light);
	font-weight: 600;
	letter-spacing: .03em;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.v3-event-title {
	font-size: 18px;
	font-weight: 700;
	color: #f5f5f7;
	line-height: 1.35;
	margin-bottom: 10px;
}

.v3-event-location {
	font-size: 12.5px;
	color: rgba(255, 255, 255, .45);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 5px;
}

/* Seats bar */
.v3-event-seats {
	margin-bottom: 18px;
}

.v3-event-seats-label {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	color: rgba(255, 255, 255, .4);
	margin-bottom: 5px;
}

.v3-event-seats-track {
	height: 4px;
	background: rgba(255, 255, 255, .1);
	border-radius: 980px;
	overflow: hidden;
}

.v3-event-seats-fill {
	height: 100%;
	border-radius: 980px;
	transition: width .6s ease;
}

.seats-ok {
	background: linear-gradient(90deg, #34c759, #30d158);
}

.seats-warn {
	background: linear-gradient(90deg, #ff9f0a, #ffcc00);
}

.seats-full {
	background: linear-gradient(90deg, #ff453a, #ff6961);
}

/* Footer row */
.v3-event-footer {
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.v3-event-reserve {
	flex: 1;
	text-align: center;
	background: var(--accent);
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	padding: 11px 16px;
	border-radius: 980px;
	transition: background .2s;
	white-space: nowrap;
}

.v3-event-reserve:hover {
	background: #005fbe;
}

.v3-event-reserve.full-btn {
	background: rgba(255, 255, 255, .08);
	color: rgba(255, 255, 255, .5);
	pointer-events: none;
}

.v3-event-social-links {
	display: flex;
	gap: 8px;
}

.v3-event-social-link {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .12);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: rgba(255, 255, 255, .65);
	font-size: 15px;
	transition: background .2s, color .2s;
	flex-shrink: 0;
}

.v3-event-social-link:hover {
	background: rgba(255, 255, 255, .15);
	color: #fff;
}

.v3-event-ticket-price {
	font-size: 13px;
	font-weight: 700;
	color: #ff9f0a;
	white-space: nowrap;
}

@media (max-width: 860px) {
	.v3-events-grid {
		grid-template-columns: 1fr;
	}
}

/* ── NEWS ───────────────────────────────────────── */
#news {
	background: var(--light-bg);
}

.v3-news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
	margin-top: 56px;
}

.v3-news-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid #e8e8e8;
	display: flex;
	flex-direction: column;
	transition: box-shadow .25s, transform .25s;
	text-decoration: none;
	color: inherit;
}

.v3-news-card:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, .09);
	transform: translateY(-4px);
}

.v3-news-thumb {
	width: 100%;
	height: 190px;
	object-fit: cover;
	display: block;
	background: #e8e8e8;
	flex-shrink: 0;
	transition: transform .4s ease;
}

.v3-news-card:hover .v3-news-thumb {
	transform: scale(1.04);
}

.v3-news-thumb-wrap {
	overflow: hidden;
	height: 190px;
	flex-shrink: 0;
}

.v3-news-body {
	padding: 22px 22px 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.v3-news-date {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 8px;
}

.v3-news-title {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	color: #1d1d1f;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.v3-news-excerpt {
	font-size: 13.5px;
	color: #6e6e73;
	line-height: 1.6;
	flex-grow: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 18px;
}

.v3-news-read-more {
	font-size: 13px;
	font-weight: 600;
	color: var(--accent);
	display: flex;
	align-items: center;
	gap: 4px;
	margin-top: auto;
}

.v3-news-read-more::after {
	content: '→';
	transition: transform .2s;
}

.v3-news-card:hover .v3-news-read-more::after {
	transform: translateX(4px);
}

.v3-news-no-thumb {
	height: 190px;
	flex-shrink: 0;
	background: linear-gradient(135deg, #e8f0fe, #c7d8f7);
	display: flex;
	align-items: center;
	justify-content: center;
}

.v3-news-no-thumb svg {
	opacity: .3;
}

/* ── SPACES GALLERY SHOWCASE (inside Spaces section) ──────── */
.v3-gallery-showcase {
	margin-top: 80px;
	display: grid;
	grid-template-columns: 1.45fr .85fr;
	gap: 20px;
	background: #0f1115;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 24px;
	padding: 18px;
	box-shadow:
		0 20px 56px rgba(0, 0, 0, .34),
		inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.v3-gallery-stage {
	position: relative;
	width: 100%;
	border: 0;
	background: #161a21;
	border-radius: 20px;
	overflow: hidden;
	cursor: zoom-in;
	aspect-ratio: 1 / 1;
	min-height: 0;
	padding: 0;
	text-align: left;
}

.v3-gallery-stage img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	display: block;
	transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .35s ease;
}

.v3-gallery-stage::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, 0) 56%);
	pointer-events: none;
}

.v3-gallery-stage:hover img {
	transform: scale(1.04);
	filter: saturate(1.06);
}

.v3-gallery-stage-overlay {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 2;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.v3-gallery-stage-kicker {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .78);
}

.v3-gallery-stage-title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -.02em;
	max-width: 80%;
}

.v3-gallery-stage-hint {
	font-size: 12px;
	color: rgba(255, 255, 255, .75);
}

.v3-gallery-stage-count {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	color: #fff;
	background: rgba(0, 0, 0, .4);
	backdrop-filter: blur(7px);
	border: 1px solid rgba(255, 255, 255, .2);
	padding: 5px 10px;
	border-radius: 980px;
}

.v3-gallery-rail-wrap {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.v3-gallery-rail-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 2px 2px 6px;
}

.v3-gallery-rail-title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .62);
}

.v3-gallery-rail-nav {
	display: flex;
	gap: 6px;
}

.v3-gallery-nav-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .16);
	background: rgba(255, 255, 255, .06);
	color: rgba(255, 255, 255, .88);
	font-size: 14px;
	transition: all .2s ease;
}

.v3-gallery-nav-btn:hover {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

.v3-gallery-rail {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 499px;
	overflow-y: auto;
	padding-right: 4px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, .18) transparent;
}

.v3-gallery-thumb {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, .09);
	background: #171b22;
	border-radius: 14px;
	padding: 8px;
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: 10px;
	align-items: center;
	text-align: left;
	cursor: pointer;
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.v3-gallery-thumb:hover {
	border-color: rgba(41, 151, 255, .65);
	transform: translateY(-1px);
	background: #1b2029;
}

.v3-gallery-thumb.active {
	border-color: rgba(41, 151, 255, .9);
	box-shadow:
		0 10px 24px rgba(0, 113, 227, .22),
		inset 0 0 0 1px rgba(41, 151, 255, .2);
}

.v3-gallery-thumb img {
	width: 78px;
	height: 64px;
	border-radius: 10px;
	object-fit: cover;
	display: block;
}

.v3-gallery-thumb-meta {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.v3-gallery-thumb-title {
	font-size: 13px;
	font-weight: 600;
	color: #f5f5f7;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.v3-gallery-thumb-sub {
	font-size: 11px;
	color: rgba(255, 255, 255, .48);
}

@media (max-width: 980px) {
	.v3-gallery-showcase {
		grid-template-columns: 1fr;
	}

	.v3-gallery-stage {
		aspect-ratio: 1 / 1;
	}

	.v3-gallery-stage-title {
		font-size: 18px;
	}

	.v3-gallery-rail {
		max-height: unset;
		overflow-y: hidden;
		overflow-x: auto;
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: minmax(220px, 240px);
		padding-bottom: 8px;
	}
}

@media (max-width: 580px) {
	.v3-gallery-showcase {
		margin-top: 56px;
		border-radius: 18px;
		padding: 12px;
	}

	.v3-gallery-stage {
		aspect-ratio: 1 / 1;
	}

	.v3-gallery-stage-title {
		font-size: 16px;
		max-width: 100%;
	}

	.v3-gallery-rail-title {
		font-size: 11px;
	}
}

/* Lightbox */
#v3-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, .92);
	backdrop-filter: blur(12px);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 16px;
}

#v3-lightbox.open {
	display: flex;
}

#v3-lb-img {
	max-width: min(92vw, 1100px);
	max-height: 82vh;
	border-radius: 14px;
	object-fit: contain;
	box-shadow: 0 40px 120px rgba(0, 0, 0, .8);
}

#v3-lb-caption {
	font-size: 13px;
	color: rgba(255, 255, 255, .55);
	text-align: center;
}

#v3-lb-close {
	position: fixed;
	top: 20px;
	right: 24px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .15);
	color: #fff;
	font-size: 22px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s;
	backdrop-filter: blur(6px);
}

#v3-lb-close:hover {
	background: rgba(255, 255, 255, .2);
}

#v3-lb-prev,
#v3-lb-next {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .15);
	color: #fff;
	font-size: 22px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s;
	backdrop-filter: blur(6px);
}

#v3-lb-prev {
	left: 16px;
}

#v3-lb-next {
	right: 16px;
}

#v3-lb-prev:hover,
#v3-lb-next:hover {
	background: rgba(255, 255, 255, .18);
}

@media (max-width: 860px) {
	#v3-lb-prev,
	#v3-lb-next {
		display: none;
	}
}

/* -- CONTACT ---------------------------------------- */
#contact {
	background: var(--light-bg);
	color: var(--near-black);
}

#contact .v3-eyebrow {
	color: var(--accent);
}

#contact .v3-h2 {
	color: var(--near-black);
}

#contact .v3-sub {
	color: var(--text-body);
}

.v3-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 56px;
}

.v3-contact-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 18px;
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
	padding: 28px 24px;
	text-decoration: none;
	transition: border-color .2s, background .2s, box-shadow .2s;
}

.v3-contact-card:hover {
	border-color: rgba(0, 113, 227, .25);
	box-shadow: 0 8px 32px rgba(0, 0, 0, .07);
}

.v3-contact-map-card {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr);
	overflow: hidden;
	padding: 0;
}

.v3-contact-map-copy {
	display: flex;
	flex-direction: column;
	gap: 18px;
	justify-content: center;
	padding: 34px 32px;
}

.v3-contact-map-frame {
	background: rgba(0, 113, 227, .08);
	min-height: 300px;
}

.v3-contact-map-frame iframe {
	border: 0;
	display: block;
	height: 100%;
	min-height: 300px;
	width: 100%;
}

.v3-contact-map-link {
	align-items: center;
	background: var(--accent);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	margin-top: 14px;
	padding: 10px 16px;
	text-decoration: none;
	transition: background .2s, transform .2s;
	width: fit-content;
}

.v3-contact-map-link:hover {
	background: #005bbd;
	transform: translateY(-1px);
}

.v3-contact-map-copy .v3-contact-label {
	margin-bottom: 8px;
}

.v3-contact-map-copy .v3-contact-value {
	font-size: clamp(20px, 2.2vw, 28px);
	letter-spacing: -.02em;
	line-height: 1.35;
}

.v3-contact-map-copy .v3-contact-sub-value {
	font-size: 15px;
	line-height: 1.8;
	margin-top: 12px;
}

.v3-contact-icon {
	align-items: center;
	background: rgba(0, 113, 227, .08);
	border-radius: 14px;
	display: flex;
	flex-shrink: 0;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.v3-contact-icon svg,
.v3-contact-icon i {
	color: var(--accent);
	font-size: 22px;
}

.v3-contact-label {
	color: var(--text-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.v3-contact-value {
	color: var(--near-black);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	overflow-wrap: anywhere;
}

.v3-contact-sub-value {
	color: var(--text-body);
	font-size: 12px;
	line-height: 1.45;
	margin-top: 2px;
	overflow-wrap: anywhere;
}

.v3-contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

.v3-contact-action-pill {
	align-items: center;
	background: rgba(0, 113, 227, .08);
	border: 1px solid rgba(0, 113, 227, .16);
	border-radius: 999px;
	color: var(--accent);
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	gap: 8px;
	padding: 10px 14px;
	text-decoration: none;
	transition: background .2s, border-color .2s, transform .2s;
}

.v3-contact-action-pill span {
	overflow-wrap: anywhere;
}

.v3-contact-action-pill:hover {
	background: rgba(0, 113, 227, .13);
	border-color: rgba(0, 113, 227, .28);
	transform: translateY(-1px);
}

.v3-contact-action-pill-whatsapp {
	background: rgba(37, 211, 102, .12);
	border-color: rgba(37, 211, 102, .28);
	color: #128c3f;
}

.v3-contact-action-pill-whatsapp:hover {
	background: rgba(37, 211, 102, .18);
	border-color: rgba(37, 211, 102, .42);
}

.v3-contact-action-pill-email {
	background: rgba(0, 0, 0, .04);
	border-color: rgba(0, 0, 0, .09);
	color: var(--near-black);
}

.v3-contact-action-pill-email:hover {
	background: rgba(0, 113, 227, .08);
	border-color: rgba(0, 113, 227, .18);
	color: var(--accent);
}

.v3-contact-hours-card {
	background:
		radial-gradient(circle at top right, rgba(0, 113, 227, .15), transparent 34%),
		linear-gradient(135deg, rgba(0, 113, 227, .045), rgba(255, 255, 255, 0) 46%),
		#fff;
	grid-column: 1 / -1;
	gap: 22px;
	padding: 30px;
}

.v3-hours-header {
	align-items: center;
	display: flex;
	gap: 16px;
}

.v3-hours-title {
	color: var(--near-black);
	font-size: clamp(22px, 2.8vw, 34px);
	font-weight: 850;
	letter-spacing: -.04em;
	line-height: 1.05;
}

.v3-hours-content {
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(230px, .55fr) minmax(0, 1.45fr);
}

.v3-hours-footer {
	border-top: 1px solid rgba(0, 0, 0, .07);
	padding-top: 16px;
}

.v3-hours-today {
	background: linear-gradient(135deg, var(--near-black), #17385d);
	border-radius: 22px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
	color: #fff;
	display: grid;
	gap: 10px;
	min-height: 100%;
	padding: 22px;
	position: relative;
	overflow: hidden;
}

.v3-hours-today::after {
	background: rgba(255, 255, 255, .12);
	border-radius: 999px;
	content: "";
	height: 120px;
	position: absolute;
	right: -42px;
	top: -42px;
	width: 120px;
}

.v3-hours-today span {
	color: rgba(255, 255, 255, .72);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.v3-hours-today strong {
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1.12;
	position: relative;
	z-index: 1;
}

.v3-hours-today-muted {
	background: linear-gradient(135deg, #526070, #27313d);
}

.v3-weekly-hours {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
}

.v3-weekly-hours-row {
	align-items: flex-start;
	background: rgba(0, 0, 0, .025);
	border: 1px solid rgba(0, 0, 0, .05);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: space-between;
	min-height: 112px;
	padding: 14px;
}

.v3-weekly-hours-row span {
	align-items: flex-start;
	color: var(--text-body);
	display: flex;
	flex-direction: column;
	font-size: 13px;
	font-weight: 750;
	gap: 8px;
	line-height: 1.3;
}

.v3-weekly-hours-row strong {
	color: var(--near-black);
	font-size: 15px;
	font-weight: 850;
	letter-spacing: -.01em;
	line-height: 1.3;
	text-align: left;
}

.v3-weekly-hours-row span em {
	background: rgba(0, 113, 227, .1);
	border-radius: 999px;
	color: var(--accent);
	font-size: 10px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: .06em;
	padding: 3px 7px;
	text-transform: uppercase;
}

.v3-weekly-hours-row-today {
	background: #fff;
	border-color: rgba(0, 113, 227, .35);
	box-shadow: 0 14px 34px rgba(0, 113, 227, .1);
	transform: translateY(-2px);
}

.v3-weekly-hours-row-today strong {
	color: var(--accent);
}

.v3-contact-hours-note {
	color: var(--text-body);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.6;
	margin-top: 0;
}

/* WhatsApp CTA block */
.v3-contact-wa-cta {
	align-items: center;
	background: linear-gradient(135deg, rgba(37, 211, 102, .10), rgba(37, 211, 102, .04));
	border: 1px solid rgba(37, 211, 102, .3);
	border-radius: 24px;
	display: flex;
	gap: 32px;
	margin-top: 48px;
	padding: 40px 40px;
}

.v3-wa-icon-wrap {
	align-items: center;
	background: rgba(37, 211, 102, .15);
	border-radius: 50%;
	display: flex;
	flex-shrink: 0;
	height: 72px;
	justify-content: center;
	width: 72px;
}

.v3-contact-wa-cta h3 {
	color: var(--near-black);
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 6px;
}

.v3-contact-wa-cta p {
	color: var(--text-body);
	font-size: 14px;
	line-height: 1.5;
}

.v3-wa-btn {
	align-items: center;
	background: #25d366;
	border-radius: 980px;
	color: #fff;
	display: inline-flex;
	flex-shrink: 0;
	font-size: 15px;
	font-weight: 700;
	gap: 10px;
	margin-left: auto;
	padding: 14px 28px;
	text-decoration: none;
	transition: background .2s, transform .2s;
	white-space: nowrap;
}

.v3-wa-btn:hover {
	background: #1ebe5a;
	transform: scale(1.03);
}

@media (max-width: 860px) {
	.v3-contact-grid {
		grid-template-columns: 1fr 1fr;
	}

	.v3-contact-map-card {
		grid-template-columns: 1fr;
	}

	.v3-contact-map-frame,
	.v3-contact-map-frame iframe {
		min-height: 260px;
	}

	.v3-hours-content {
		grid-template-columns: 1fr;
	}

	.v3-hours-today {
		min-height: auto;
	}

	.v3-contact-wa-cta {
		flex-direction: column;
		padding: 28px 24px;
		text-align: center;
	}

	.v3-wa-btn {
		margin-left: 0;
	}
}

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

	.v3-contact-map-copy {
		padding: 26px 22px;
	}

	.v3-contact-map-frame,
	.v3-contact-map-frame iframe {
		min-height: 230px;
	}

	.v3-contact-actions {
		flex-direction: column;
	}

	.v3-contact-action-pill {
		justify-content: center;
		width: 100%;
	}

	.v3-contact-hours-card {
		padding: 24px 20px;
	}

	.v3-hours-header {
		align-items: flex-start;
	}

	.v3-weekly-hours {
		grid-template-columns: 1fr;
	}

	.v3-weekly-hours-row {
		min-height: auto;
	}

	.v3-weekly-hours-row strong {
		text-align: left;
	}
}
/* ── FOOTER ──────────────────────────────────────── */
.v3-footer {
	background: #000;
	color: rgba(255, 255, 255, .55);
	padding: 72px 0 0;
}

.v3-footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.v3-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 56px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.v3-footer-brand img {
	height: 64px;
	margin-bottom: 16px;
}

.v3-footer-brand p {
	font-size: 13.5px;
	line-height: 1.65;
	color: rgba(255, 255, 255, .45);
	margin-bottom: 24px;
	max-width: 280px;
}

.v3-footer-socials {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.v3-footer-social-btn {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .6);
	text-decoration: none;
	font-size: 15px;
	transition: background .2s, color .2s;
}

.v3-footer-social-btn:hover {
	background: rgba(255, 255, 255, .15);
	color: #fff;
}

.v3-footer-col h4 {
	font-size: 13px;
	font-weight: 700;
	color: #f5f5f7;
	text-transform: uppercase;
	letter-spacing: .07em;
	margin-bottom: 18px;
}

.v3-footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.v3-footer-col ul li a {
	font-size: 13.5px;
	color: rgba(255, 255, 255, .5);
	text-decoration: none;
	transition: color .2s;
}

.v3-footer-col ul li a:hover {
	color: #f5f5f7;
}

.v3-footer-bottom {
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 12px;
	color: rgba(255, 255, 255, .3);
}

.v3-footer-bottom a {
	color: rgba(255, 255, 255, .4);
	text-decoration: none;
}

.v3-footer-bottom a:hover {
	color: rgba(255, 255, 255, .7);
}

@media (max-width: 860px) {
	.v3-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}

	.v3-footer-brand {
		grid-column: 1 / -1;
	}
}

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