/* =========================================================
   RESET + GLOBAL
========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body, #root, .jack3d-wrapper {
	background: #0C0C0C;
}

html { scroll-behavior: smooth; }

body {
	font-family: 'Kanit', sans-serif;
	color: #D7E2EA;
	overflow-x: clip;
}

.jack3d-wrapper { overflow-x: clip; }

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

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

.hero-heading,
.hero-heading-gradient {
	background: linear-gradient(180deg, #646973 0%, #BBCCD7 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* =========================================================
   FADE-IN (JS toggles .is-visible; initial state set inline)
========================================================= */
[data-fade] {
	opacity: 0;
	transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
	            transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
	will-change: opacity, transform;
}
[data-fade].is-visible { opacity: 1; transform: translate(0, 0) !important; }

/* =========================================================
   BUTTONS
========================================================= */
.btn-contact {
	display: inline-block;
	border-radius: 9999px;
	background: linear-gradient(123deg, #18011F 7%, #B600A8 37%, #7621B0 72%, #BE4C00 100%);
	box-shadow: 0px 4px 4px rgba(181, 1, 167, 0.25), inset 4px 4px 12px #7721B1;
	outline: 2px solid #fff;
	outline-offset: -3px;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.75rem;
	padding: 0.75rem 2rem;
	transition: opacity 0.2s ease;
}
.btn-contact:hover { opacity: 0.8; }

.btn-more {
	display: inline-block;
	border-radius: 9999px;
	background: transparent;
	border: 2px solid rgba(215, 226, 234, 0.5);
	color: #EDF2F5;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.75rem;
	padding: 0.72rem 2rem;
	transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-more:hover { background: rgba(215, 226, 234, 0.08); border-color: #D7E2EA; }
@media (min-width: 640px) {
	.btn-more { font-size: 0.875rem; padding: 0.84rem 2.5rem; }
}

@media (min-width: 640px) {
	.btn-contact { font-size: 0.875rem; padding: 0.875rem 2.5rem; }
}
@media (min-width: 768px) {
	.btn-contact { font-size: 1rem; padding: 1rem 3rem; }
}

.btn-live-project {
	display: inline-block;
	border-radius: 9999px;
	border: 2px solid #D7E2EA;
	color: #D7E2EA;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.875rem;
	padding: 0.75rem 2rem;
	white-space: nowrap;
	transition: background-color 0.2s ease;
}
.btn-live-project:hover { background-color: rgba(215, 226, 234, 0.1); }

@media (min-width: 640px) {
	.btn-live-project { font-size: 1rem; padding: 0.875rem 2.5rem; }
}

/* =========================================================
   1. HERO SECTION
========================================================= */
.hero {
	height: min(100vh, 900px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow-x: clip;
	padding-top: 5rem;
}
@media (min-width: 640px) { .hero { padding-top: 5rem; } }
@media (min-width: 768px) { .hero { padding-top: 4rem; } }

.navbar {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	column-gap: 1.5rem;
	row-gap: 0.5rem;
	padding: 1rem 1.5rem;
	color: #D7E2EA;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.875rem;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background 0.3s ease, border-color 0.3s ease;
}
.navbar.is-scrolled {
	background: rgba(10, 10, 11, 0.92);
	border-bottom: 1px solid rgba(215, 226, 234, 0.1);
}
.navbar a { transition: opacity 0.2s ease; }
.navbar a:hover { opacity: 0.7; }

/* -----------------------------------------------------------
   Mobile-only brand text (left of hamburger)
----------------------------------------------------------- */
.nav-brand {
	display: none;
}
@media (max-width: 767.98px) {
	.nav-brand {
		display: flex;
		align-items: center;
		gap: 0.55rem;
		max-width: 62vw;
	}
	.nav-brand-mark {
		width: 8px;
		height: 8px;
		flex-shrink: 0;
		border-radius: 50%;
		background: linear-gradient(135deg, #B600A8 0%, #7621B0 55%, #BE4C00 100%);
		box-shadow: 0 0 8px rgba(182, 0, 168, 0.85), 0 0 16px rgba(190, 76, 0, 0.5);
		animation: nav-brand-pulse 2.4s ease-in-out infinite;
	}
	.nav-brand-text {
		display: flex;
		flex-direction: column;
		line-height: 1.15;
		overflow: hidden;
	}
	.nav-brand-primary {
		font-size: 1rem;
		font-weight: 800;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		white-space: nowrap;
		background: linear-gradient(90deg, #D7E2EA 0%, #B600A8 28%, #7621B0 52%, #BE4C00 78%, #D7E2EA 100%);
		background-size: 300% 100%;
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
		color: transparent;
		animation: nav-brand-shimmer 5s linear infinite;
		filter: drop-shadow(0 0 10px rgba(182, 0, 168, 0.25));
	}
	.nav-brand-secondary {
		font-size: 0.5rem;
		font-weight: 500;
		letter-spacing: 0.24em;
		text-transform: uppercase;
		white-space: nowrap;
		color: rgba(215, 226, 234, 0.55);
		margin-top: 1px;
	}
}
@keyframes nav-brand-shimmer {
	0% { background-position: 0% 50%; }
	100% { background-position: 300% 50%; }
}
@keyframes nav-brand-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.7); opacity: 0.5; }
}
@keyframes nav-brand-breathe {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.035); }
}

/* -----------------------------------------------------------
   Hamburger toggle (mobile only)
----------------------------------------------------------- */
.nav-toggle {
	appearance: none;
	background: rgba(215, 226, 234, 0.06);
	border: 1px solid rgba(215, 226, 234, 0.16);
	border-radius: 12px;
	width: 42px;
	height: 40px;
	padding: 0;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
	z-index: 210;
	backdrop-filter: blur(6px);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}
.nav-toggle:active { transform: scale(0.92); }
@media (hover: hover) {
	.nav-toggle:hover {
		background: rgba(215, 226, 234, 0.12);
		border-color: rgba(215, 226, 234, 0.3);
	}
}
.nav-toggle[aria-expanded="true"] {
	background: rgba(182, 0, 168, 0.12);
	border-color: rgba(182, 0, 168, 0.4);
}
.nav-toggle-bar {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, #D7E2EA 0%, #B600A8 45%, #BE4C00 100%);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, width 0.3s ease;
	transform-origin: center;
}
.nav-toggle-bar:nth-child(1) { width: 20px; }
.nav-toggle-bar:nth-child(2) { width: 14px; }
.nav-toggle-bar:nth-child(3) { width: 20px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
	background: linear-gradient(90deg, #D7E2EA 0%, #F0F4F7 100%);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
	width: 20px;
	transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
	opacity: 0;
	width: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
	width: 20px;
	transform: translateY(-7px) rotate(-45deg);
}

/* -----------------------------------------------------------
   Mobile slide-in panel
----------------------------------------------------------- */
.nav-links {
	position: fixed;
	top: 0;
	right: -100%;
	width: min(80vw, 340px);
	height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0.25rem;
	padding: 4.5rem 1.5rem 2.5rem;
	background: linear-gradient(180deg, rgba(15, 15, 17, 0.98) 0%, rgba(9, 9, 10, 0.98) 100%);
	border-left: 1px solid rgba(182, 0, 168, 0.25);
	box-shadow: -24px 0 60px -12px rgba(0, 0, 0, 0.6);
	overflow-y: auto;
	overflow-x: hidden;
	transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 200;
}
.nav-links::before {
	content: '';
	position: absolute;
	top: -6rem;
	right: -6rem;
	width: 16rem;
	height: 16rem;
	background: radial-gradient(circle, rgba(182, 0, 168, 0.25) 0%, transparent 70%);
	pointer-events: none;
	z-index: -1;
}
.nav-links.is-open { right: 0; }
.nav-links a {
	position: relative;
	width: 100%;
	padding: 0.75rem 0.75rem 0.75rem 1rem;
	margin-left: -1rem;
	font-size: 1.05rem;
	border-radius: 10px;
	transition: background 0.2s ease, padding-left 0.2s ease;
}
.nav-links a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5rem;
	bottom: 0.5rem;
	width: 3px;
	border-radius: 2px;
	background: linear-gradient(180deg, #B600A8, #7621B0, #BE4C00);
	transform: scaleY(0);
	transition: transform 0.2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
	background: rgba(182, 0, 168, 0.1);
	padding-left: 1.35rem;
}
.nav-links a:hover::before,
.nav-links a:focus-visible::before {
	transform: scaleY(1);
}

.nav-links-brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	width: 100%;
	padding-bottom: 1.1rem;
	margin-bottom: 0.75rem;
	border-bottom: 1px solid rgba(215, 226, 234, 0.12);
}
.nav-links-brand-mark {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
	background: linear-gradient(135deg, #B600A8 0%, #7621B0 55%, #BE4C00 100%);
	box-shadow: 0 0 10px rgba(182, 0, 168, 0.85), 0 0 20px rgba(190, 76, 0, 0.5);
	animation: nav-brand-pulse 2.4s ease-in-out infinite;
}
.nav-links-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-links-brand-primary {
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: linear-gradient(90deg, #D7E2EA 0%, #B600A8 28%, #7621B0 52%, #BE4C00 78%, #D7E2EA 100%);
	background-size: 300% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: nav-brand-shimmer 5s linear infinite;
}
.nav-links-brand-secondary {
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(215, 226, 234, 0.55);
}

.nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 90;
}
.nav-overlay.is-visible { opacity: 1; visibility: visible; }

body.nav-open { overflow: hidden; }
body.lead-popup-active { overflow: hidden; }

.nav-item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 0.35rem;
}

.nav-caret {
	appearance: none;
	background: transparent;
	border: none;
	padding: 0.25rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.nav-caret::before {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	color: #D7E2EA;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}
.nav-item.is-open .nav-caret::before,
.nav-item:hover .nav-caret::before {
	transform: rotate(225deg);
}

.nav-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(0) scale(0.96);
	margin-top: 0;
	padding-top: 0.85rem;
	min-width: 240px;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	background: linear-gradient(180deg, rgba(26, 26, 30, 0.99) 0%, rgba(10, 10, 11, 0.99) 100%);
	border: 1px solid rgba(182, 0, 168, 0.28);
	border-radius: 18px;
	box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.03);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform-origin: top center;
	transition: opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1), transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.22s;
	z-index: 110;
}
.nav-dropdown-label {
	padding: 0.15rem 1.1rem 0.6rem;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: linear-gradient(90deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.nav-dropdown-items {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 0 0.85rem 0.85rem;
}
.nav-dropdown::before {
	content: '';
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	background: rgb(26, 26, 30);
	border-left: 1px solid rgba(182, 0, 168, 0.28);
	border-top: 1px solid rgba(182, 0, 168, 0.28);
	border-radius: 3px 0 0 0;
}
.nav-item.is-open .nav-dropdown,
.nav-item:hover .nav-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0) scale(1);
}
.nav-dropdown a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	color: #D7E2EA;
	opacity: 0.8;
	padding: 0.6rem 0.75rem;
	border-radius: 10px;
	white-space: nowrap;
	overflow: hidden;
	transition: opacity 0.15s ease, background-color 0.15s ease, padding-left 0.15s ease;
}
.nav-dropdown a::after {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: linear-gradient(135deg, #B600A8, #BE4C00);
	flex-shrink: 0;
	opacity: 0.7;
	transition: opacity 0.15s ease, transform 0.15s ease;
}
.nav-dropdown a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	transform: scaleY(0);
	transition: transform 0.18s ease;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible,
.nav-dropdown a:active {
	opacity: 1;
	background: rgba(182, 0, 168, 0.12);
	padding-left: 1.1rem;
}
.nav-dropdown a:hover::after,
.nav-dropdown a:focus-visible::after,
.nav-dropdown a:active::after {
	opacity: 1;
	transform: scale(1.4);
}
.nav-dropdown a:hover::before,
.nav-dropdown a:focus-visible::before,
.nav-dropdown a:active::before {
	transform: scaleY(1);
}
@media (hover: none) {
	.nav-dropdown a:active {
		background: rgba(215, 226, 234, 0.18);
	}
}

/* -----------------------------------------------------------
   Mobile-only: dropdowns become inline accordions inside the
   slide-in panel instead of floating absolute menus
----------------------------------------------------------- */
@media (max-width: 767.98px) {
	.nav-dropdown {
		position: static;
		width: 100%;
		min-width: 0;
		margin-top: 0;
		padding: 0;
		max-height: 0;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		background: transparent;
		border: none;
		box-shadow: none;
		overflow: hidden;
		transition: max-height 0.3s ease, padding 0.3s ease;
	}
	.nav-dropdown::before { display: none; }
	.nav-item.is-open .nav-dropdown {
		max-height: 400px;
		padding: 0.35rem 0 0.5rem 1rem;
	}
	.nav-dropdown a {
		white-space: normal;
		overflow: visible;
	}
	.nav-item.is-open .nav-dropdown,
	.nav-item:hover .nav-dropdown {
		transform: none;
	}
}
@media (max-width: 767.98px) and (hover: none) {
	.nav-dropdown a:active {
		background: rgba(215, 226, 234, 0.12);
		padding-left: 1.1rem;
	}
}

@media (min-width: 768px) {
	.navbar { padding: 1.25rem 2.5rem; font-size: 1rem; column-gap: 2rem; justify-content: space-between; }

	.nav-toggle { display: none; }
	.nav-overlay { display: none; }

	.nav-links {
		position: static;
		width: 100%;
		height: auto;
		flex: 1 1 auto;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: inherit;
		padding: 0;
		background: transparent;
		border: none;
		box-shadow: none;
		overflow: visible;
		transition: none;
	}
	.nav-links a { width: auto; padding: 0; margin-left: 0; font-size: inherit; }
	.nav-links a::before { display: none; }
	.nav-item { width: auto; display: inline-flex; }
	.nav-links-brand { display: none; }
	.nav-links::before { display: none; }
}
@media (min-width: 1024px) {
	.navbar { font-size: 1.1rem; }
}
@media (max-width: 767.98px) {
	.navbar { justify-content: space-between; padding: 1rem 1.25rem; }
}

.hero-heading-clip {
	overflow: hidden;
	width: 100%;
	margin-top: 1.5rem;
}
@media (min-width: 640px) { .hero-heading-clip { margin-top: 1rem; } }
@media (min-width: 768px) { .hero-heading-clip { margin-top: 0.5rem; } }

.hero-heading {
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.03em;
	line-height: 0.9;
	white-space: nowrap;
	width: 100%;
	font-size: 14vw;
}
@media (min-width: 640px) { .hero-heading { font-size: 15vw; } }
@media (min-width: 768px) { .hero-heading { font-size: 15.5vw; } }
@media (min-width: 1024px) { .hero-heading { font-size: 16vw; } }

.hero-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0 1.5rem 1.75rem;
	position: relative;
	z-index: 20;
}
@media (max-width: 639.98px) {
	.hero-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}
}
@media (min-width: 640px) { .hero-bottom { padding-bottom: 2rem; } }
@media (min-width: 768px) { .hero-bottom { padding: 0 2.5rem 2.5rem; } }

.hero-subtext {
	color: #D7E2EA;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.4;
	font-size: clamp(0.95rem, 2vw, 1.75rem);
	max-width: 220px;
}
@media (min-width: 640px) { .hero-subtext { max-width: 300px; } }
@media (min-width: 768px) { .hero-subtext { max-width: 340px; } }

.hero-portrait {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 10;
	width: min(430px, 96vw);
	top: auto;
	bottom: 12rem;
}
.hero-portrait .magnet { width: 100%; position: relative; line-height: 0; will-change: transform; }
.hero-portrait img { width: 100%; height: auto; display: block; margin: 0 auto; }

@media (min-width: 640px) {
	.hero-portrait { left: 50%; right: auto; margin: 0; width: 360px; top: auto; bottom: 0; transform: translateX(-50%); }
}
@media (min-width: 768px) { .hero-portrait { width: 440px; } }
@media (min-width: 1024px) { .hero-portrait { width: 520px; } }

/* =========================================================
   2. MARQUEE SECTION
========================================================= */
.marquee-section {
	background: #0C0C0C;
	padding: 3rem 0 2.5rem;
	overflow: hidden;
}
@media (min-width: 640px) { .marquee-section { padding-top: 3.5rem; } }
@media (min-width: 768px) { .marquee-section { padding-top: 4.5rem; } }

.marquee-heading {
	text-align: center;
	padding: 0 1.25rem;
	margin-bottom: 2.75rem;
}
.marquee-heading h2 {
	font-family: 'Kanit', sans-serif;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	font-size: clamp(1.9rem, 5vw, 3.25rem);
	background: linear-gradient(180deg, #646973 0%, #BBCCD7 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 0.5rem;
}
.marquee-heading p {
	font-size: clamp(0.9rem, 1.6vw, 1.15rem);
	font-weight: 500;
	background: linear-gradient(90deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.marquee-row {
	overflow: hidden;
	margin-bottom: 0.75rem;
	cursor: grab;
}
.marquee-row.is-dragging { cursor: grabbing; }
.marquee-row:last-child { margin-bottom: 0; }

.marquee-track {
	display: flex;
	gap: 0.75rem;
	width: max-content;
	will-change: transform;
	animation: marquee-scroll 42s linear infinite;
}
.marquee-track[data-marquee-track="2"] {
	animation-direction: reverse;
	animation-duration: 38s;
}
@keyframes marquee-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.marquee-track { animation: none; }
}

.marquee-tile {
	flex: 0 0 auto;
	width: 420px;
	height: 270px;
	border-radius: 1rem;
	overflow: hidden;
	pointer-events: none;
	background: linear-gradient(100deg, #141416 30%, #1d1d20 50%, #141416 70%);
	background-size: 250% 100%;
	animation: marquee-skeleton 1.6s ease-in-out infinite;
}
@keyframes marquee-skeleton {
	0% { background-position: 200% 0; }
	100% { background-position: -50% 0; }
}
.marquee-tile.is-loaded {
	animation: none;
	background: none;
}
.marquee-tile.is-broken {
	display: none;
}
.marquee-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-user-drag: none;
	user-select: none;
	pointer-events: none;
}

/* =========================================================
   3. ABOUT SECTION
========================================================= */
.about-section {
	position: relative;
	min-height: 45vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 4rem 1.25rem 4.5rem;
}
@media (min-width: 640px) { .about-section { padding: 5rem 2rem; } }
@media (min-width: 768px) { .about-section { padding: 5rem 2.5rem; } }

.about-deco { position: absolute; z-index: 1; }
@media (max-width: 639.98px) {
	.about-deco { display: none; }
}
.about-deco-tl { top: 4%; left: 1%; width: 120px; }
.about-deco-bl { bottom: 8%; left: 3%; width: 100px; }
.about-deco-tr { top: 4%; right: 1%; width: 120px; }
.about-deco-br { bottom: 8%; right: 3%; width: 130px; }

@media (min-width: 640px) {
	.about-deco-tl { left: 2%; width: 160px; }
	.about-deco-bl { left: 6%; width: 140px; }
	.about-deco-tr { right: 2%; width: 160px; }
	.about-deco-br { right: 6%; width: 170px; }
}
@media (min-width: 768px) {
	.about-deco-tl { left: 4%; width: 210px; }
	.about-deco-bl { left: 10%; width: 180px; }
	.about-deco-tr { right: 4%; width: 210px; }
	.about-deco-br { right: 10%; width: 220px; }
}

.about-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.75rem;
}
@media (min-width: 640px) { .about-inner { gap: 2.25rem; } }
@media (min-width: 768px) { .about-inner { gap: 2.5rem; } }

.about-heading {
	font-weight: 900;
	text-transform: uppercase;
	line-height: 0.9;
	letter-spacing: -0.03em;
	font-size: clamp(3rem, 12vw, 160px);
}

.animated-text {
	color: #D7E2EA;
	font-weight: 500;
	text-align: center;
	line-height: 1.6;
	max-width: 560px;
	font-size: clamp(1rem, 2vw, 1.35rem);
}

/* =========================================================
   4. SERVICES SECTION
========================================================= */
.services-section {
	background: #FFFFFF;
	border-radius: 40px 40px 0 0;
	padding: 5rem 1.25rem;
	color: #0C0C0C;
}
@media (min-width: 640px) { .services-section { border-radius: 50px 50px 0 0; padding: 6rem 2rem; } }
@media (min-width: 768px) { .services-section { border-radius: 60px 60px 0 0; padding: 8rem 2.5rem; } }

.services-heading {
	color: #0C0C0C;
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
	line-height: 0.9;
	font-size: clamp(3rem, 12vw, 160px);
	margin-bottom: 4rem;
}
@media (min-width: 640px) { .services-heading { margin-bottom: 5rem; } }
@media (min-width: 768px) { .services-heading { margin-bottom: 7rem; } }

/* -----------------------------------------------------------
   How It Works — 5-step process
----------------------------------------------------------- */
.how-works-head {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 3.5rem;
}
.how-works-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #7621B0;
	margin-bottom: 0.75rem;
}
.how-works-heading {
	color: #0C0C0C;
	font-size: clamp(2rem, 6vw, 3.5rem);
	margin-bottom: 0.75rem !important;
}
.how-works-sub {
	color: rgba(12, 12, 12, 0.6);
	font-size: clamp(0.9rem, 1.6vw, 1.15rem);
	font-weight: 300;
}

.services-list {
	max-width: 64rem;
	margin: 0 auto;
}

.service-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 2rem 0;
	border-bottom: 1px solid rgba(12, 12, 12, 0.15);
}
.services-list .service-item:first-child { border-top: 1px solid rgba(12, 12, 12, 0.15); }

@media (min-width: 640px) { .service-item { padding: 2.5rem 0; } }
@media (min-width: 768px) { .service-item { padding: 3rem 0; } }

.service-num {
	font-weight: 900;
	color: #0C0C0C;
	font-size: clamp(3rem, 10vw, 140px);
	line-height: 1;
	flex-shrink: 0;
}

.service-body { display: flex; flex-direction: column; gap: 0.5rem; }

.service-name {
	font-weight: 500;
	text-transform: uppercase;
	font-size: clamp(1rem, 2.2vw, 2.1rem);
}

.service-desc {
	font-weight: 300;
	line-height: 1.6;
	max-width: 42rem;
	font-size: clamp(0.85rem, 1.6vw, 1.25rem);
	opacity: 0.6;
}

/* =========================================================
   5. PROJECTS SECTION
========================================================= */
.projects-section {
	background: #0C0C0C;
	border-radius: 40px 40px 0 0;
	margin-top: -2.5rem;
	position: relative;
	z-index: 10;
	padding: 5rem 1.25rem 1.5rem;
}
@media (min-width: 640px) {
	.projects-section { border-radius: 50px 50px 0 0; margin-top: -3rem; padding: 6rem 2rem 3.5rem; }
}
@media (min-width: 768px) {
	.projects-section { border-radius: 60px 60px 0 0; margin-top: -3.5rem; padding: 7rem 2.5rem 3rem; }
}

.projects-heading {
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
	line-height: 0.9;
	font-size: clamp(3rem, 12vw, 160px);
	margin-bottom: 3rem;
}

.projects-stack { max-width: 80rem; margin: 0 auto; position: relative; }

.project-card-outer {
	position: sticky;
	top: 6rem;
	height: min(50vh, 420px);
	display: flex;
	align-items: flex-start;
	padding-bottom: 2rem;
}
@media (min-width: 768px) { .project-card-outer { top: 8rem; height: min(55vh, 460px); } }

.project-card {
	width: 100%;
	border-radius: 40px;
	border: 2px solid #D7E2EA;
	background: #0C0C0C;
	padding: 1rem;
	transform-origin: top center;
	transition: transform 0.1s linear;
	will-change: transform;
}
@media (min-width: 640px) { .project-card { border-radius: 50px; padding: 1.5rem; } }
@media (min-width: 768px) { .project-card { border-radius: 60px; padding: 2rem; } }

.project-top-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.project-num {
	font-weight: 900;
	font-size: clamp(2.5rem, 8vw, 100px);
	line-height: 1;
}

.project-meta {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	flex: 1;
}
.project-category {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.8rem;
	opacity: 0.6;
}
.project-name {
	font-weight: 600;
	text-transform: uppercase;
	font-size: clamp(1.1rem, 2.5vw, 1.8rem);
}

.project-content {
	padding-top: 0.5rem;
	border-top: 1px solid rgba(215, 226, 234, 0.14);
}
.project-desc {
	color: #D7E2EA;
	font-weight: 300;
	line-height: 1.7;
	font-size: clamp(0.95rem, 1.8vw, 1.35rem);
	max-width: 46rem;
	padding: 1.5rem 0 0.5rem;
}
@media (min-width: 640px) { .project-desc { padding: 2rem 0 1rem; } }
@media (min-width: 768px) { .project-desc { padding: 2.5rem 0 1.5rem; } }

/* =========================================================
   6. FOOTER
========================================================= */
.site-footer {
	background: #0C0C0C;
	border-top: 1px solid rgba(215, 226, 234, 0.15);
	position: relative;
	z-index: 5;
	padding: 4rem 1.25rem 2rem;
}
@media (min-width: 640px) { .site-footer { padding: 5rem 2rem 2.5rem; } }
@media (min-width: 768px) { .site-footer { padding: 6rem 2.5rem 3rem; } }

.footer-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	text-align: center;
	margin-bottom: 4rem;
}
@media (min-width: 768px) { .footer-cta { margin-bottom: 5rem; } }

.footer-heading {
	font-weight: 900;
	text-transform: uppercase;
	line-height: 0.95;
	font-size: clamp(2rem, 8vw, 80px);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem 1.5rem;
	max-width: 80rem;
	margin: 0 auto;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(215, 226, 234, 0.15);
}
@media (min-width: 700px) {
	.footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; }
}

.footer-brand {
	max-width: 22rem;
	grid-column: 1 / -1;
}
@media (min-width: 700px) {
	.footer-brand { grid-column: auto; }
}

.footer-col:last-child {
	grid-column: 1 / -1;
}
.footer-col:last-child ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 1.5rem;
}
@media (min-width: 700px) {
	.footer-col:last-child { grid-column: auto; }
	.footer-col:last-child ul { display: block; }
}
.footer-logo {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.footer-tagline {
	margin-top: 0.85rem;
	font-weight: 300;
	font-size: 0.88rem;
	line-height: 1.65;
	opacity: 0.6;
}

.footer-col h3 {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: linear-gradient(90deg, #B600A8 0%, #BE4C00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
	position: relative;
	display: inline-block;
	font-size: 0.85rem;
	color: rgba(215, 226, 234, 0.65);
	transition: color 0.2s ease, transform 0.2s ease;
}
.footer-col a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 1px;
	background: linear-gradient(90deg, #B600A8, #BE4C00);
	transition: width 0.25s ease;
}
.footer-col a:hover {
	color: #EDF2F5;
	transform: translateX(3px);
}
.footer-col a:hover::after { width: 100%; }

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: 80rem;
	margin: 2rem auto 0;
	font-size: 0.75rem;
	opacity: 0.45;
}
@media (min-width: 640px) {
	.footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* =========================================================
   7. LEAD POPUP
========================================================= */
.lead-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 500;
	background: rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lead-popup-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.lead-popup {
	position: relative;
	width: 100%;
	max-width: 780px;
	max-height: 90vh;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, rgba(24, 24, 27, 0.98) 0%, rgba(10, 10, 11, 0.98) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1.25rem;
	box-shadow: 0 40px 100px -12px rgba(0, 0, 0, 0.75);
	transform: translateY(24px) scale(0.97);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.lead-popup-overlay.is-open .lead-popup {
	transform: translateY(0) scale(1);
	opacity: 1;
}
@media (min-width: 720px) {
	.lead-popup { flex-direction: row; max-height: 620px; }
}

.lead-popup-close {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	z-index: 5;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #D7E2EA;
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}
.lead-popup-close:hover { background: rgba(182, 0, 168, 0.35); transform: scale(1.06); }

.lead-popup-media {
	position: relative;
	flex: 0 0 auto;
	width: 100%;
	height: 180px;
	overflow: hidden;
	background: #05050a;
}
.lead-popup-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
@media (min-width: 720px) {
	.lead-popup-media { width: 42%; height: auto; }
}

.lead-popup-body {
	flex: 1 1 auto;
	padding: 1.75rem 1.5rem 2rem;
	display: flex;
	flex-direction: column;
}
@media (min-width: 720px) {
	.lead-popup-body { padding: 2.25rem 2.25rem 2.25rem 1.75rem; }
}

.lead-popup-eyebrow {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: linear-gradient(90deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.lead-popup-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	color: #EDF2F5;
	margin: 0.4rem 0 0.4rem;
}
.lead-popup-sub {
	font-size: 0.85rem;
	color: #9AA6AE;
	margin-bottom: 1.25rem;
}

.lead-popup-form {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}
.lead-field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}
.lead-field label {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #9AA6AE;
}
.lead-field input,
.lead-field select {
	appearance: none;
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 0.6rem;
	padding: 0.65rem 0.8rem;
	font-family: 'Kanit', sans-serif;
	font-size: 0.9rem;
	color: #EDF2F5;
	transition: border-color 0.2s ease, background 0.2s ease;
}
.lead-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%239AA6AE'%3E%3Cpath d='M5.5 7.5l4.5 4.5 4.5-4.5' stroke='%239AA6AE' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.8rem center;
	background-size: 16px;
	padding-right: 2.2rem;
}
.lead-field select option { background: #18181b; color: #EDF2F5; }
.lead-field input:focus,
.lead-field select:focus {
	outline: none;
	border-color: rgba(182, 0, 168, 0.6);
	background: rgba(255, 255, 255, 0.08);
}

.lead-popup-submit {
	margin-top: 0.4rem;
	width: 100%;
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 999px;
	background: linear-gradient(90deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	color: #fff;
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.15s ease;
}
.lead-popup-submit:hover { opacity: 0.9; }
.lead-popup-submit:active { transform: scale(0.98); }
.lead-popup-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.lead-popup-status {
	min-height: 1.2em;
	font-size: 0.8rem;
	margin-top: 0.25rem;
}
.lead-popup-status.is-success { color: #6fd399; }
.lead-popup-status.is-error { color: #e2685f; }

.lead-field.has-error input,
.lead-field.has-error select {
	border-color: rgba(226, 104, 95, 0.7);
}

/* =========================================================
   PROMO BANNER — scrolling ticker, brand gradient
========================================================= */
.promo-banner {
	background: linear-gradient(90deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	overflow: hidden;
	padding: 0.65rem 0;
}
.promo-banner-track {
	display: flex;
	width: max-content;
	gap: 3rem;
	animation: promo-banner-scroll 22s linear infinite;
}
.promo-banner-item {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	white-space: nowrap;
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	color: #fff;
	letter-spacing: 0.01em;
}
.promo-banner-tag {
	display: inline-flex;
	align-items: center;
	padding: 0.15rem 0.6rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.28);
	font-weight: 800;
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
@keyframes promo-banner-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.promo-banner-track { animation: none; }
}
@media (min-width: 768px) {
	.promo-banner-item { font-size: 0.95rem; }
}

/* =========================================================
   FOUNDER CARD
========================================================= */
.founder-card {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 780px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	padding: 2rem;
	border-radius: 1.5rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
	border: 1px solid rgba(215, 226, 234, 0.12);
}
@media (min-width: 700px) {
	.founder-card {
		flex-direction: row;
		align-items: center;
		text-align: left;
		padding: 2.5rem;
		gap: 2.5rem;
	}
}

.founder-photo {
	flex: 0 0 auto;
	width: 280px;
	height: 280px;
	border-radius: 1.25rem;
	overflow: hidden;
	position: relative;
	background: #141416;
	padding: 3px;
	background: linear-gradient(135deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
}
@media (min-width: 640px) {
	.founder-photo { width: 340px; height: 340px; }
}
.founder-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	border-radius: calc(1.25rem - 3px);
	display: block;
}

.founder-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
@media (min-width: 700px) {
	.founder-info { align-items: flex-start; text-align: left; }
}

.founder-eyebrow {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: linear-gradient(90deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.founder-name {
	font-family: 'Kanit', sans-serif;
	font-weight: 800;
	font-size: 1.75rem;
	color: #EDF2F5;
	margin: 0.3rem 0 0.15rem;
}
.founder-badge {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.5;
	color: #D7E2EA;
	background: rgba(215, 226, 234, 0.06);
	border: 1px solid rgba(182, 0, 168, 0.35);
	border-radius: 0.7rem;
	padding: 0.5rem 0.85rem;
	margin-bottom: 1rem;
	max-width: 34ch;
}
.founder-bio {
	font-size: 0.95rem;
	line-height: 1.65;
	color: #D7E2EA;
	font-weight: 300;
	max-width: 46ch;
	margin-bottom: 1.25rem;
}
.founder-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.7rem 1.3rem;
	border-radius: 999px;
	background: #25D366;
	color: #06210F;
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	transition: opacity 0.2s ease, transform 0.15s ease;
}
.founder-whatsapp:hover { opacity: 0.88; }
.founder-whatsapp:active { transform: scale(0.98); }

/* =========================================================
   TEAM GRID
========================================================= */
.team-section {
	padding: 1rem 1.25rem 3rem;
	max-width: 78rem;
	margin: 0 auto;
}
@media (min-width: 640px) { .team-section { padding: 1.5rem 2rem 4rem; } }

.team-section-head {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 2.5rem;
}
.team-section-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: linear-gradient(90deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 0.75rem;
}
.team-section-heading {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	color: #EDF2F5;
	margin-bottom: 0.6rem;
}
.team-section-sub { color: rgba(215, 226, 234, 0.6); font-size: 0.95rem; font-weight: 300; }

.team-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 560px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.75rem 1.5rem;
	border-radius: 1.25rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
	border: 1px solid rgba(215, 226, 234, 0.12);
}

.team-card-photo {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 1.1rem;
	padding: 3px;
	background: linear-gradient(135deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
}
.team-card-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	border-radius: 50%;
	display: block;
}

.team-card-name { font-family: 'Kanit', sans-serif; font-weight: 700; font-size: 1.1rem; color: #EDF2F5; margin-bottom: 0.2rem; }
.team-card-title { font-size: 0.78rem; font-weight: 600; color: #B600A8; margin-bottom: 0.75rem; }
.team-card-bio { font-size: 0.85rem; line-height: 1.55; color: rgba(215, 226, 234, 0.75); font-weight: 300; }

/* Placeholder slots for team members not yet added — visually distinct
   (dashed ring, no fabricated photo) so nothing on the page implies a
   real person who doesn't exist. */
.team-card-placeholder .team-card-photo {
	background: transparent;
	border: 2px dashed rgba(215, 226, 234, 0.25);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.team-card-placeholder .team-card-photo svg { opacity: 0.35; }
.team-card-placeholder .team-card-name { color: rgba(215, 226, 234, 0.5); }
.team-card-placeholder .team-card-title { color: rgba(215, 226, 234, 0.35); }

/* =========================================================
   PRICING SECTION
========================================================= */
.pricing-section {
	background: #0C0C0C;
	padding: 0 1.25rem 1.5rem;
}
@media (min-width: 640px) { .pricing-section { padding: 0.75rem 2rem 2rem; } }
@media (min-width: 768px) { .pricing-section { padding: 1rem 2.5rem 2.5rem; } }

.pricing-head {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 2rem;
}
.pricing-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: linear-gradient(90deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 0.75rem;
}
.pricing-heading {
	font-size: clamp(2rem, 6vw, 3.5rem) !important;
	white-space: normal !important;
	margin-bottom: 0.75rem !important;
}
.pricing-sub {
	color: rgba(215, 226, 234, 0.6);
	font-size: clamp(0.9rem, 1.6vw, 1.15rem);
	font-weight: 300;
}

.pricing-grid {
	max-width: 78rem;
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	box-sizing: border-box;
}
@media (min-width: 640px) {
	.pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}
@media (min-width: 1000px) {
	.pricing-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); max-width: 92rem; align-items: start; }
	.pricing-grid.has-four,
	.pricing-grid:has(> :nth-child(5)) { max-width: 100rem; }
}
.pricing-grid:has(> :only-child) {
	max-width: 24rem;
}

.pricing-footnote {
	max-width: 60rem;
	margin: 2rem auto 0;
	text-align: center;
	font-size: 0.8rem;
	line-height: 1.6;
	color: rgba(215, 226, 234, 0.5);
}

.pricing-card.is-monthly { border-color: rgba(111, 211, 153, 0.35); }
.pricing-badge-monthly {
	background: linear-gradient(90deg, #2e9b62 0%, #1f7a4d 100%);
}

.pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
	border: 1px solid rgba(215, 226, 234, 0.14);
	border-radius: 1.5rem;
	padding: 2rem 1.75rem;
	box-sizing: border-box;
	max-width: 100%;
	overflow-wrap: break-word;
}
.pricing-card.is-highlighted {
	border: 1px solid rgba(182, 0, 168, 0.55);
	background: linear-gradient(180deg, rgba(182, 0, 168, 0.1) 0%, rgba(118, 33, 176, 0.04) 100%);
	box-shadow: 0 30px 70px -20px rgba(182, 0, 168, 0.35);
}
@media (min-width: 900px) {
	.pricing-card.is-highlighted { transform: translateY(-1rem); padding-top: 2.5rem; padding-bottom: 2.5rem; }
}

.pricing-badge {
	position: absolute;
	top: -0.9rem;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(90deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	white-space: nowrap;
}

.pricing-tag {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #B600A8;
	margin-bottom: 0.5rem;
}
.pricing-name {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	color: #EDF2F5;
	margin-bottom: 1rem;
}

.pricing-price {
	font-family: 'Kanit', sans-serif;
	font-weight: 800;
	font-size: 2.75rem;
	color: #fff;
	line-height: 1;
}
.pricing-currency { font-size: 1.5rem; font-weight: 600; vertical-align: top; margin-right: 0.1rem; }
.pricing-note {
	display: block;
	font-size: 0.78rem;
	color: rgba(215, 226, 234, 0.5);
	margin: 0.35rem 0 1.25rem;
}

.pricing-desc {
	font-size: 0.9rem;
	font-weight: 300;
	line-height: 1.6;
	color: #D7E2EA;
	margin-bottom: 1.25rem;
}

.pricing-extra {
	display: block;
	font-size: 0.8rem;
	color: #D7E2EA;
	background: rgba(215, 226, 234, 0.06);
	border: 1px solid rgba(215, 226, 234, 0.14);
	border-radius: 0.6rem;
	padding: 0.55rem 0.75rem;
	margin-bottom: 0.6rem;
}

.pricing-offer {
	display: block;
	font-size: 0.8rem;
	font-weight: 500;
	color: #6fd399;
	background: rgba(111, 211, 153, 0.1);
	border: 1px solid rgba(111, 211, 153, 0.3);
	border-radius: 0.6rem;
	padding: 0.6rem 0.75rem;
	margin-bottom: 1.5rem;
}

.pricing-features {
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	flex: 1;
}
.pricing-features li {
	position: relative;
	padding-left: 1.4rem;
	font-size: 0.88rem;
	color: #D7E2EA;
	font-weight: 300;
	line-height: 1.4;
}
.pricing-features li::before {
	content: '+';
	position: absolute;
	left: 0;
	top: 0;
	color: #B600A8;
	font-weight: 700;
}

.pricing-whatsapp {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	width: 100%;
	padding: 0.75rem 1.3rem;
	border-radius: 999px;
	background: #25D366;
	color: #06210F;
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	transition: opacity 0.2s ease, transform 0.15s ease;
}
.pricing-whatsapp:hover { opacity: 0.88; }
.pricing-whatsapp:active { transform: scale(0.98); }

/* =========================================================
   REVIEWS / TESTIMONIALS SLIDER
========================================================= */
.reviews-section {
	background: #0C0C0C;
	padding: 1.5rem 1.25rem;
	overflow: hidden;
}
@media (min-width: 640px) { .reviews-section { padding: 2rem 2rem; } }
@media (min-width: 768px) { .reviews-section { padding: 2.5rem 2.5rem; } }

.reviews-head { text-align: center; margin-bottom: 1.75rem; }
.reviews-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: linear-gradient(90deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 0.75rem;
}
.reviews-heading { font-size: clamp(2rem, 6vw, 3.5rem) !important; white-space: normal !important; }

.reviews-slider {
	position: relative;
	max-width: 46rem;
	margin: 0 auto;
}
.reviews-viewport {
	overflow: hidden;
	border-radius: 1.5rem;
}
.reviews-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.review-slide {
	flex: 0 0 100%;
	min-width: 100%;
	text-align: center;
	padding: 2.5rem 1.5rem;
	border-radius: 1.5rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
	border: 1px solid rgba(215, 226, 234, 0.14);
}
@media (min-width: 640px) { .review-slide { padding: 3.5rem; } }

.review-stars {
	color: #F5B301;
	font-size: 1.1rem;
	letter-spacing: 0.15em;
	margin-bottom: 1.25rem;
}
.review-quote {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-weight: 500;
	font-size: clamp(1.15rem, 2.6vw, 1.6rem);
	line-height: 1.55;
	color: #EDF2F5;
	margin-bottom: 1.75rem;
}
.review-author { display: flex; flex-direction: column; gap: 0.15rem; }
.review-name {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	color: #EDF2F5;
}
.review-role {
	font-size: 0.8rem;
	color: rgba(215, 226, 234, 0.55);
}

.reviews-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(215, 226, 234, 0.06);
	border: 1px solid rgba(215, 226, 234, 0.2);
	color: #EDF2F5;
	font-size: 1.1rem;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, border-color 0.2s ease;
}
.reviews-arrow:hover { background: rgba(182, 0, 168, 0.2); border-color: rgba(182, 0, 168, 0.5); }
.reviews-arrow-prev { left: -1.25rem; }
.reviews-arrow-next { right: -1.25rem; }
@media (min-width: 900px) {
	.reviews-arrow { display: flex; }
	.reviews-arrow-prev { left: -3.25rem; }
	.reviews-arrow-next { right: -3.25rem; }
}

.reviews-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.75rem;
}
.reviews-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(215, 226, 234, 0.25);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}
.reviews-dot.is-active {
	background: linear-gradient(90deg, #B600A8, #BE4C00);
	transform: scale(1.3);
}

/* =========================================================
   CONTACT SECTION
========================================================= */
.contact-section {
	background: #0C0C0C;
	padding: 1.5rem 1.25rem 6rem;
}
@media (min-width: 640px) { .contact-section { padding: 2rem 2rem 7rem; } }
@media (min-width: 768px) { .contact-section { padding: 2.5rem 2.5rem 8rem; } }

.contact-head { text-align: center; max-width: 42rem; margin: 0 auto 2rem; }
.contact-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: linear-gradient(90deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 0.75rem;
}
.contact-heading { font-size: clamp(2rem, 6vw, 3.5rem) !important; white-space: normal !important; margin-bottom: 0.75rem !important; }
.contact-sub { color: rgba(215, 226, 234, 0.6); font-size: clamp(0.9rem, 1.6vw, 1.15rem); font-weight: 300; }

.contact-grid {
	max-width: 78rem;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 960px) {
	.contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 2.5rem; align-items: start; }
}

.contact-info-list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	border: 1px solid rgba(215, 226, 234, 0.14);
	border-radius: 1.25rem;
	padding: 1.75rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
}
.contact-info-list li { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-info-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #B600A8;
}
.contact-info-value {
	font-size: 0.95rem;
	color: #EDF2F5;
	font-weight: 400;
}
a.contact-info-value { transition: opacity 0.2s ease; }
a.contact-info-value:hover { opacity: 0.75; }

.contact-map {
	width: 100%;
	height: 260px;
	border-radius: 1.25rem;
	overflow: hidden;
	border: 1px solid rgba(215, 226, 234, 0.14);
}
.contact-map iframe { width: 100%; height: 100%; display: block; filter: grayscale(0.3) invert(0.92) contrast(0.9); }

.contact-form-wrap {
	border: 1px solid rgba(215, 226, 234, 0.14);
	border-radius: 1.25rem;
	padding: 1.75rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
}
@media (min-width: 640px) { .contact-form-wrap { padding: 2.25rem; } }

.contact-form-title {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: 1.3rem;
	color: #EDF2F5;
	margin-bottom: 0.35rem;
}
.contact-form-sub {
	font-size: 0.85rem;
	color: rgba(215, 226, 234, 0.55);
	margin-bottom: 1.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-field-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 560px) {
	.contact-field-row { grid-template-columns: 1fr 1fr; }
}

.contact-field { display: flex; flex-direction: column; gap: 0.35rem; }
.contact-field label {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #9AA6AE;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
	appearance: none;
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 0.6rem;
	padding: 0.65rem 0.8rem;
	font-family: 'Kanit', sans-serif;
	font-size: 0.9rem;
	color: #EDF2F5;
	transition: border-color 0.2s ease, background 0.2s ease;
	resize: vertical;
}
.contact-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%239AA6AE'%3E%3Cpath d='M5.5 7.5l4.5 4.5 4.5-4.5' stroke='%239AA6AE' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.8rem center;
	background-size: 16px;
	padding-right: 2.2rem;
}
.contact-field select option { background: #18181b; color: #EDF2F5; }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
	outline: none;
	border-color: rgba(182, 0, 168, 0.6);
	background: rgba(255, 255, 255, 0.08);
}
.contact-field.has-error input,
.contact-field.has-error select,
.contact-field.has-error textarea {
	border-color: rgba(226, 104, 95, 0.7);
}

.contact-submit {
	margin-top: 0.4rem;
	width: 100%;
	padding: 0.85rem 1.5rem;
	border: none;
	border-radius: 999px;
	background: linear-gradient(90deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	color: #fff;
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.15s ease;
}
.contact-submit:hover { opacity: 0.9; }
.contact-submit:active { transform: scale(0.99); }
.contact-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.contact-form-status { min-height: 1.2em; font-size: 0.82rem; margin-top: 0.25rem; }
.contact-form-status.is-success { color: #6fd399; }
.contact-form-status.is-error { color: #e2685f; }
.contact-form-secure { font-size: 0.75rem; color: rgba(215, 226, 234, 0.4); text-align: center; }

/* =========================================================
   FOOTER — redesign
========================================================= */
.footer-glow {
	position: absolute;
	top: -10rem;
	left: 50%;
	transform: translateX(-50%);
	width: 60rem;
	max-width: 140vw;
	height: 24rem;
	background: radial-gradient(ellipse at center, rgba(182, 0, 168, 0.18) 0%, rgba(190, 76, 0, 0.08) 45%, transparent 75%);
	filter: blur(10px);
	pointer-events: none;
	z-index: 0;
}
.site-footer { overflow: hidden; }

.footer-cta { position: relative; z-index: 1; }
.footer-cta-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: linear-gradient(90deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.footer-cta-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
@media (min-width: 480px) { .footer-cta-buttons { flex-direction: row; } }

.footer-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.75rem;
	border-radius: 999px;
	background: #25D366;
	color: #06210F;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.75rem;
	transition: opacity 0.2s ease;
}
.footer-whatsapp:hover { opacity: 0.88; }

.footer-grid { position: relative; z-index: 1; }

.footer-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.4rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #EDF2F5;
}
.footer-logo-mark {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: linear-gradient(135deg, #B600A8 0%, #7621B0 55%, #BE4C00 100%);
	box-shadow: 0 0 10px rgba(182, 0, 168, 0.7);
	flex-shrink: 0;
}
.footer-logo-accent {
	background: linear-gradient(90deg, #B600A8 0%, #BE4C00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.footer-social {
	display: flex;
	flex-direction: row;
	gap: 0.75rem;
	margin-top: 1.5rem;
}
.footer-social a {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(215, 226, 234, 0.06);
	border: 1px solid rgba(215, 226, 234, 0.16);
	opacity: 1 !important;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.footer-social a:hover {
	background: rgba(182, 0, 168, 0.22);
	border-color: rgba(182, 0, 168, 0.55);
	transform: translateY(-3px) rotate(-8deg) scale(1.08);
	box-shadow: 0 8px 20px -6px rgba(182, 0, 168, 0.5);
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
========================================================= */
.whatsapp-float {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 400;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 rgba(37, 211, 102, 0.5);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float:active { transform: scale(0.96); }

.whatsapp-float-ping {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: #25D366;
	opacity: 0.55;
	animation: whatsapp-float-ping 2.2s cubic-bezier(0.2, 0.7, 0.4, 1) infinite;
	z-index: -1;
}
@keyframes whatsapp-float-ping {
	0% { transform: scale(1); opacity: 0.55; }
	80%, 100% { transform: scale(1.9); opacity: 0; }
}

@media (min-width: 768px) {
	.whatsapp-float { right: 1.75rem; bottom: 1.75rem; width: 60px; height: 60px; }
}
@media (prefers-reduced-motion: reduce) {
	.whatsapp-float-ping { animation: none; }
}
body.nav-open .whatsapp-float,
body.lead-popup-active .whatsapp-float {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

/* =========================================================
   AVATAR COPY PROTECTION
========================================================= */
.no-copy-image {
	-webkit-user-drag: none;
	user-drag: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
	pointer-events: auto;
}

/* =========================================================
   CUSTOM CURSOR — dot + trailing ring (desktop/mouse only)
========================================================= */
@media (hover: hover) and (pointer: fine) {
	body.custom-cursor-active,
	body.custom-cursor-active a,
	body.custom-cursor-active button {
		cursor: none !important;
	}
}

.cursor-dot,
.cursor-ring {
	position: fixed;
	top: 0;
	left: 0;
	border-radius: 50%;
	pointer-events: none;
	z-index: 9000;
	opacity: 0;
	transform: translate(-50%, -50%);
}
.cursor-dot.is-active,
.cursor-ring.is-active { opacity: 1; }

.cursor-dot {
	width: 7px;
	height: 7px;
	background: linear-gradient(135deg, #B600A8, #BE4C00);
	transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-ring {
	width: 34px;
	height: 34px;
	border: 1.5px solid rgba(182, 0, 168, 0.6);
	transition: transform 0.12s ease-out, opacity 0.2s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

@media (max-width: 1023.98px) {
	.cursor-dot, .cursor-ring { display: none; }
}
@media (prefers-reduced-motion: reduce) {
	.cursor-dot, .cursor-ring { display: none; }
}

/* =========================================================
   SUB-PAGE HERO (About/Services/Global/Why Us/Pricing/Blog/Contact)
========================================================= */
.sub-hero {
	background: #0C0C0C;
	padding: 7.5rem 1.25rem 3.5rem;
	text-align: center;
}
@media (min-width: 640px) { .sub-hero { padding: 8.5rem 2rem 4rem; } }
@media (min-width: 768px) { .sub-hero { padding: 9rem 2.5rem 4.5rem; } }

.sub-hero-inner { max-width: 46rem; margin: 0 auto; }

.sub-breadcrumb {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.78rem;
	color: rgba(215, 226, 234, 0.45);
	margin-bottom: 1.25rem;
}
.sub-breadcrumb a { color: rgba(215, 226, 234, 0.7); transition: color 0.2s ease; }
.sub-breadcrumb a:hover { color: #EDF2F5; }

.sub-hero-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: linear-gradient(90deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 0.75rem;
}
.sub-hero-title {
	font-size: clamp(2.1rem, 6vw, 3.75rem) !important;
	white-space: normal !important;
	margin-bottom: 0.85rem !important;
}
.sub-hero-intro {
	color: rgba(215, 226, 234, 0.65);
	font-size: clamp(0.95rem, 1.7vw, 1.2rem);
	font-weight: 300;
	line-height: 1.6;
}

/* =========================================================
   SERVICE / LOCATION BODY (sub-pages only — named svcpage-*
   to avoid colliding with the homepage's .service-body, which
   is a completely different element in the How It Works section)
========================================================= */
.svcpage-body {
	background: #0C0C0C;
	padding: 1.5rem 1.25rem 3rem;
}
@media (min-width: 640px) { .svcpage-body { padding: 2rem 2rem 3.5rem; } }

.svcpage-body-inner {
	max-width: 46rem;
	margin: 0 auto;
	text-align: center;
}

.service-lede {
	color: #D7E2EA;
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	font-weight: 300;
	line-height: 1.7;
	margin-bottom: 2.25rem;
}

.service-points-heading {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	color: #EDF2F5;
	margin-bottom: 1.25rem;
}

.service-points {
	list-style: none;
	margin: 0 0 2.25rem;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	text-align: left;
	max-width: 34rem;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 560px) { .service-points { grid-template-columns: 1fr 1fr; } }

.service-points li {
	position: relative;
	padding-left: 1.6rem;
	font-size: 0.92rem;
	color: #D7E2EA;
	font-weight: 300;
	line-height: 1.5;
}
.service-points li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: #6fd399;
	font-weight: 700;
}

.service-related {
	background: #0C0C0C;
	padding: 1rem 1.25rem 5rem;
	max-width: 78rem;
	margin: 0 auto;
}
.service-related-heading {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: 1.3rem;
	color: #EDF2F5;
	text-align: center;
	margin-bottom: 1.5rem;
}
.service-related-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.85rem;
}
@media (min-width: 640px) { .service-related-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .service-related-grid { grid-template-columns: repeat(4, 1fr); } }

.service-related-card {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1.1rem 0.75rem;
	border-radius: 0.85rem;
	background: rgba(215, 226, 234, 0.05);
	border: 1px solid rgba(215, 226, 234, 0.14);
	color: #D7E2EA;
	font-size: 0.85rem;
	font-weight: 500;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.service-related-card:hover {
	background: rgba(182, 0, 168, 0.12);
	border-color: rgba(182, 0, 168, 0.4);
	transform: translateY(-2px);
}

/* =========================================================
   SERVICES / GLOBAL HUB GRID
========================================================= */
.services-hub-grid-section {
	background: #0C0C0C;
	padding: 1rem 1.25rem 6rem;
	max-width: 78rem;
	margin: 0 auto;
}
.services-hub-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}
@media (min-width: 640px) { .services-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .services-hub-grid { grid-template-columns: repeat(3, 1fr); } }

.services-hub-card {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding: 1.75rem;
	border-radius: 1.1rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
	border: 1px solid rgba(215, 226, 234, 0.14);
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.services-hub-card:hover {
	border-color: rgba(182, 0, 168, 0.45);
	transform: translateY(-3px);
	box-shadow: 0 20px 45px -18px rgba(182, 0, 168, 0.35);
}
.services-hub-card-name {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: 1.15rem;
	color: #EDF2F5;
}
.services-hub-card-tagline {
	font-size: 0.85rem;
	color: rgba(215, 226, 234, 0.6);
	font-weight: 300;
	line-height: 1.5;
}
.services-hub-card-link {
	margin-top: auto;
	font-size: 0.8rem;
	font-weight: 600;
	background: linear-gradient(90deg, #B600A8 0%, #BE4C00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	padding-top: 0.4rem;
}

/* =========================================================
   COMPARISON TABLE (Why Us + Global location pages)
========================================================= */
.compare-section {
	background: #0C0C0C;
	padding: 1rem 1.25rem 5rem;
}
.compare-head { text-align: center; max-width: 42rem; margin: 0 auto 2.5rem; }
.compare-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #B600A8;
	margin-bottom: 0.75rem;
}
.compare-heading {
	font-size: clamp(1.6rem, 4.5vw, 2.5rem) !important;
	white-space: normal !important;
	margin-bottom: 0.5rem !important;
}
.compare-sub { color: rgba(215, 226, 234, 0.6); font-size: 0.95rem; font-weight: 300; }

.compare-table-wrap {
	max-width: 62rem;
	margin: 0 auto;
	overflow-x: auto;
	border-radius: 1rem;
	border: 1px solid rgba(215, 226, 234, 0.14);
}
.compare-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.85rem;
	min-width: 520px;
}
.compare-table th,
.compare-table td {
	padding: 0.85rem 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(215, 226, 234, 0.1);
	color: #D7E2EA;
	font-weight: 400;
}
.compare-table thead th {
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(215, 226, 234, 0.55);
	background: rgba(255, 255, 255, 0.03);
}
.compare-table th.is-us,
.compare-table td.is-us {
	background: rgba(182, 0, 168, 0.08);
	color: #EDF2F5;
	font-weight: 600;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-label { color: rgba(215, 226, 234, 0.75); font-weight: 500; }
.compare-table-bool td.is-us,
.compare-table-bool td:not(.is-us):not(.compare-label) {
	text-align: center;
	font-size: 1rem;
}

/* =========================================================
   BLOG
========================================================= */
.blog-section {
	background: #0C0C0C;
	padding: 1rem 1.25rem 6rem;
	max-width: 78rem;
	margin: 0 auto;
}
.blog-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding: 1.5rem;
	border-radius: 1.1rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
	border: 1px solid rgba(215, 226, 234, 0.14);
	transition: border-color 0.2s ease, transform 0.2s ease;
}
.blog-card:hover { border-color: rgba(182, 0, 168, 0.4); transform: translateY(-3px); }
.blog-card-thumb { display: block; border-radius: 0.75rem; overflow: hidden; }
.blog-card-thumb img { width: 100%; height: auto; display: block; }
.blog-card-date { font-size: 0.72rem; color: rgba(215, 226, 234, 0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card-title { font-family: 'Kanit', sans-serif; font-weight: 700; font-size: 1.1rem; color: #EDF2F5; }
.blog-card-excerpt { font-size: 0.85rem; color: rgba(215, 226, 234, 0.6); font-weight: 300; line-height: 1.5; }
.blog-card-link {
	margin-top: auto;
	font-size: 0.8rem;
	font-weight: 600;
	background: linear-gradient(90deg, #B600A8 0%, #BE4C00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.blog-empty { text-align: center; padding: 3rem 1rem; color: rgba(215, 226, 234, 0.6); }
.blog-empty p { margin-bottom: 1.5rem; }
.blog-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; }
.blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 0.6rem;
	border-radius: 8px;
	background: rgba(215, 226, 234, 0.06);
	border: 1px solid rgba(215, 226, 234, 0.14);
	color: #D7E2EA;
	font-size: 0.85rem;
}
.blog-pagination .page-numbers.current { background: rgba(182, 0, 168, 0.25); border-color: rgba(182, 0, 168, 0.5); }

/* =========================================================
   SINGLE BLOG POST
========================================================= */
.single-post {
	background: #0C0C0C;
	padding: 1rem 1.25rem 6rem;
}
.single-post-inner {
	max-width: 46rem;
	margin: 0 auto;
}
.single-post-thumb {
	border-radius: 1.1rem;
	overflow: hidden;
	margin-bottom: 2.5rem;
}
.single-post-thumb img { width: 100%; height: auto; display: block; }

.single-post-content {
	color: #D7E2EA;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.8;
}
.single-post-content p { margin-bottom: 1.5rem; }
.single-post-content h2 {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	color: #EDF2F5;
	margin: 2.25rem 0 1rem;
}
.single-post-content ul,
.single-post-content ol {
	margin: 0 0 1.5rem 1.25rem;
}
.single-post-content li { margin-bottom: 0.5rem; }
.single-post-content a {
	color: #EDF2F5;
	text-decoration: underline;
	text-decoration-color: rgba(182, 0, 168, 0.5);
	text-underline-offset: 3px;
}
.single-post-content a:hover { text-decoration-color: #B600A8; }

.single-post-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(215, 226, 234, 0.12);
}

/* =========================================================
   EXPLORE MORE — site-wide internal linking block
========================================================= */
.explore-more {
	background: #08080a;
	border-top: 1px solid rgba(215, 226, 234, 0.1);
	padding: 3rem 1.25rem;
}
@media (min-width: 640px) { .explore-more { padding: 3.5rem 2rem; } }

.explore-more-inner {
	max-width: 78rem;
	margin: 0 auto;
}
.explore-more-heading {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: 1.2rem;
	color: rgba(215, 226, 234, 0.85);
	margin-bottom: 1.75rem;
	text-align: center;
}
@media (min-width: 640px) { .explore-more-heading { text-align: left; } }

.explore-more-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	text-align: center;
}
@media (min-width: 640px) {
	.explore-more-grid { grid-template-columns: repeat(3, 1fr); text-align: left; }
}

.explore-more-col h3 {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #B600A8;
	margin-bottom: 0.85rem;
}
.explore-more-col ul { list-style: none; margin: 0; padding: 0; }
.explore-more-col li { margin-bottom: 0.55rem; }
.explore-more-col a {
	font-size: 0.85rem;
	color: rgba(215, 226, 234, 0.6);
	transition: color 0.2s ease;
}
.explore-more-col a:hover { color: #EDF2F5; }


/* =====================================================
   Pricing Hub — service tabs + pricing panel
   Deliberately simple: identical markup/behavior at every screen
   size (tabs wrap instead of scrolling, panels are plain show/hide
   at natural height). No fixed-height boxes, no scroll-hijacking,
   no transforms — nothing left that can silently break on mobile.
===================================================== */
.pricing-hub {
	max-width: 78rem;
	margin: 0 auto;
	padding: 0 1.25rem 4rem;
}
@media (min-width: 768px) { .pricing-hub { padding: 0 2.5rem 5rem; } }

.pricing-hub-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	margin: 0 0 2.5rem;
}

.pricing-hub-tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.15rem;
	padding: 0.7rem 1.1rem;
	border-radius: 0.9rem;
	border: 1px solid rgba(215, 226, 234, 0.14);
	background: rgba(255, 255, 255, 0.02);
	cursor: pointer;
	font-family: inherit;
	transition: background 0.25s ease, border-color 0.25s ease;
}
.pricing-hub-tab:hover { border-color: rgba(182, 0, 168, 0.4); }
.pricing-hub-tab.is-active {
	background: linear-gradient(90deg, rgba(182, 0, 168, 0.18) 0%, rgba(118, 33, 176, 0.1) 100%);
	border-color: rgba(182, 0, 168, 0.55);
}
.pricing-hub-tab-name { font-family: 'Kanit', sans-serif; font-weight: 600; font-size: 0.9rem; color: #EDF2F5; }
.pricing-hub-tab-from { font-size: 0.7rem; color: rgba(215, 226, 234, 0.55); }

.pricing-hub-panel { display: none; }
.pricing-hub-panel.is-active { display: block; }

.pricing-hub-panel-head { text-align: center; max-width: 42rem; margin: 0 auto 2rem; }
.pricing-hub-panel-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: linear-gradient(90deg, #B600A8 0%, #7621B0 50%, #BE4C00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 0.75rem;
}
.pricing-hub-panel-heading {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: clamp(1.5rem, 4vw, 2.4rem);
	color: #EDF2F5;
	margin-bottom: 0.6rem;
	line-height: 1.15;
}
.pricing-hub-panel-sub { color: rgba(215, 226, 234, 0.6); font-size: 0.95rem; font-weight: 300; }

.pricing-hub-panel-subhead { margin-top: 3rem; }
.pricing-hub-panel-subheading { font-size: clamp(1.25rem, 3vw, 1.75rem); }

.pricing-hub-panel-link {
	display: block;
	text-align: center;
	margin: 1.5rem auto 0;
	font-size: 0.85rem;
	font-weight: 600;
	color: #B600A8;
	text-decoration: none;
}
.pricing-hub-panel-link:hover { text-decoration: underline; }
