/**
 * NexCore Design System — Phase 2
 * Source: DESIGN/nexcore-website-design.md §1, §23 + preview tokens
 */

/* -------------------------------------------------------------------------- */
/* Design tokens                                                               */
/* -------------------------------------------------------------------------- */

:root {
	--bg-void: #000000;
	--bg-deep: #050508;
	--bg-surface: #0a0a0f;
	--bg-elevated: #0f0f18;
	--bg-border: #1a1a2e;

	--brand-blue: #1a56ff;
	--brand-cyan: #00e5ff;
	--brand-mid: #0099e6;

	--gradient-brand: linear-gradient(135deg, #1a56ff 0%, #00bcd4 50%, #00e5ff 100%);
	--gradient-glow: radial-gradient(ellipse at center, rgba(0, 180, 255, 0.15) 0%, transparent 70%);
	--gradient-card: linear-gradient(135deg, rgba(26, 86, 255, 0.08) 0%, rgba(0, 229, 255, 0.05) 100%);

	--text-primary: #ffffff;
	--text-secondary: #a0aec0;
	--text-muted: #4a5568;
	--text-accent: #00e5ff;

	--border-glow: rgba(0, 180, 255, 0.25);
	--shadow-brand: 0 0 40px rgba(0, 150, 255, 0.2);
	--shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6);

	--font-display: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
	--font-body: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;

	--text-hero: clamp(3rem, 7vw, 6rem);
	--text-h2: clamp(2rem, 4vw, 3.5rem);
	--text-h3: clamp(1.25rem, 2vw, 1.75rem);
	--text-body-lg: 1.125rem;
	--text-body: 1rem;
	--text-sm: 0.875rem;

	--section-pad: clamp(80px, 12vw, 160px);
	--container: 1280px;
	--gutter: clamp(16px, 4vw, 48px);
	--card-radius: 16px;
	--btn-radius: 8px;
	--header-h: 72px;

	--surface-chrome: linear-gradient(135deg, #041a0f 0%, #0a2818 38%, #0f3d24 68%, #061a10 100%);
	--surface-chrome-header:
		radial-gradient(ellipse 85% 110% at 0% 50%, rgba(180, 255, 210, 0.14) 0%, transparent 48%),
		radial-gradient(ellipse 100% 120% at 100% 50%, rgba(34, 197, 94, 0.12) 0%, transparent 55%),
		linear-gradient(90deg, #0a3320 0%, #0d4028 45%, #0a3020 72%, #061a12 100%);
	--surface-chrome-header-scrolled:
		radial-gradient(ellipse 95% 115% at 100% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 52%),
		linear-gradient(90deg, #051a10 0%, #0a3020 48%, #082818 75%, #041208 100%);
	--surface-chrome-footer:
		radial-gradient(ellipse 75% 90% at 0% 15%, rgba(190, 255, 220, 0.12) 0%, transparent 50%),
		radial-gradient(ellipse 90% 100% at 85% 70%, rgba(22, 163, 74, 0.14) 0%, transparent 55%),
		linear-gradient(165deg, #041a0f 0%, #0a2818 45%, #0f4228 78%, #061810 100%);

	--text-on-chrome: #ecfdf5;
	--text-on-chrome-muted: #a7f3d0;
	--border-on-chrome: rgba(74, 222, 128, 0.22);
}

/* -------------------------------------------------------------------------- */
/* Base reset & document                                                       */
/* -------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: var(--text-body);
	background: var(--bg-void);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

::selection {
	background: rgba(0, 180, 255, 0.3);
	color: #fff;
}

::-webkit-scrollbar {
	width: 4px;
}

::-webkit-scrollbar-track {
	background: #000;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(var(--brand-blue), var(--brand-cyan));
	border-radius: 2px;
}

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

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

ul,
ol {
	list-style: none;
}

button {
	font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.15;
}

/* -------------------------------------------------------------------------- */
/* Layout                                                                      */
/* -------------------------------------------------------------------------- */

.nc-container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.site-main {
	padding-top: var(--header-h);
	min-height: 60vh;
}

/* -------------------------------------------------------------------------- */
/* Typography utilities                                                        */
/* -------------------------------------------------------------------------- */

.gradient-text {
	background: var(--gradient-brand);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 30px rgba(0, 180, 255, 0.35));
}

.text-secondary {
	color: var(--text-secondary);
}

.text-muted {
	color: var(--text-muted);
}

.link-gradient {
	font-size: var(--text-sm);
	font-weight: 600;
	background: var(--gradient-brand);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.link-gradient:hover {
	filter: brightness(1.15);
}

/* -------------------------------------------------------------------------- */
/* Surface utilities                                                           */
/* -------------------------------------------------------------------------- */

.glass {
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.gradient-border {
	position: relative;
	background: var(--bg-surface);
	border-radius: var(--card-radius);
	isolation: isolate;
}

.gradient-border::before {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(26, 86, 255, 0.4), rgba(0, 229, 255, 0.4));
	z-index: -1;
}

/* -------------------------------------------------------------------------- */
/* Section patterns                                                            */
/* -------------------------------------------------------------------------- */

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--brand-cyan);
	padding: 6px 14px;
	background: rgba(0, 229, 255, 0.08);
	border: 1px solid rgba(0, 229, 255, 0.2);
	border-radius: 100px;
	margin-bottom: 16px;
}

.section-label .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--brand-cyan);
	animation: nc-glow-pulse 3s ease-in-out infinite;
}

.section-header {
	text-align: center;
	max-width: 720px;
	margin-inline: auto;
	margin-bottom: 56px;
}

.section-header h2 {
	font-family: var(--font-display);
	font-size: var(--text-h2);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 16px;
}

.section-header p {
	color: var(--text-secondary);
	font-size: var(--text-body-lg);
}

.section-pad {
	padding-block: var(--section-pad);
}

/* Scroll reveal — JS toggles .is-visible in Phase 3+ */
.nc-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* -------------------------------------------------------------------------- */
/* Buttons                                                                     */
/* -------------------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: var(--btn-radius);
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	border: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
	font-family: var(--font-body);
	line-height: 1.2;
}

.btn-primary {
	background: var(--gradient-brand);
	color: #fff;
	box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 50px rgba(0, 150, 255, 0.35);
	color: #fff;
}

.btn-secondary {
	background: var(--bg-elevated);
	color: var(--text-primary);
	border: 1px solid var(--bg-border);
}

.btn-secondary:hover {
	border-color: var(--brand-cyan);
	color: var(--brand-cyan);
}

.btn-ghost {
	background: transparent;
	color: var(--text-primary);
	border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
	border-color: var(--brand-cyan);
	color: var(--brand-cyan);
}

.btn-cta {
	position: relative;
	background: transparent;
	color: var(--text-on-chrome);
	border: 1.5px solid transparent;
	padding: 10px 22px;
	z-index: 1;
}

.btn-cta::before {
	content: '';
	position: absolute;
	inset: -1.5px;
	border-radius: var(--btn-radius);
	background: var(--gradient-brand);
	z-index: -1;
}

.btn-cta:hover {
	background: var(--gradient-brand);
	box-shadow: var(--shadow-brand);
	color: #fff;
}

/* Alias — same as .btn-cta (header Phase 3) */
.btn-cta-nav {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: var(--btn-radius);
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
	border: 1.5px solid transparent;
	background: transparent;
	color: var(--text-on-chrome);
	z-index: 1;
	transition: background 0.3s ease, box-shadow 0.3s ease;
	font-family: var(--font-body);
}

.btn-cta-nav::before {
	content: '';
	position: absolute;
	inset: -1.5px;
	border-radius: var(--btn-radius);
	background: var(--gradient-brand);
	z-index: -1;
}

.btn-cta-nav:hover {
	background: var(--gradient-brand);
	box-shadow: var(--shadow-brand);
	color: #fff;
}

/* -------------------------------------------------------------------------- */
/* Header, mega menu, footer, floating CTA (Phase 3 chrome)                     */
/* -------------------------------------------------------------------------- */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-h);
	z-index: 1000;
	background: var(--surface-chrome-header);
	border-bottom: 1px solid var(--border-on-chrome);
	transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
	background: var(--surface-chrome-header-scrolled);
	box-shadow: 0 4px 32px rgba(0, 60, 30, 0.35);
	border-bottom-color: rgba(74, 222, 128, 0.25);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
	position: relative;
	z-index: 1;
}

.header-inner::before {
	content: '';
	position: absolute;
	left: -110px;
	top: 50%;
	transform: translateY(-50%);
	width: 440px;
	height: 220px;
	background: radial-gradient(
		ellipse 46% 46% at 44% 50%,
		rgba(255, 255, 255, 0.78) 0%,
		rgba(220, 252, 231, 0.55) 22%,
		rgba(167, 243, 208, 0.28) 42%,
		rgba(74, 222, 128, 0.12) 60%,
		transparent 78%
	);
	filter: blur(26px);
	pointer-events: none;
	z-index: -1;
}

.logo {
	position: relative;
	z-index: 1;
}

.logo img {
	height: 36px;
	width: auto;
	display: block;
}

.nav-desktop {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-desktop > ul {
	display: flex;
	gap: 28px;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-desktop a {
	color: var(--text-on-chrome);
	font-size: var(--text-sm);
	font-weight: 500;
	transition: color 0.2s ease;
	white-space: nowrap;
}

.nav-desktop a:hover {
	color: var(--brand-cyan);
}

.nav-item-has-mega {
	position: relative;
}

.nav-item-has-mega > a::after {
	content: ' ▾';
	font-size: 0.7em;
	opacity: 0.6;
}

.mega-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	width: min(720px, 90vw);
	padding: 28px;
	border-radius: var(--card-radius);
	background: rgba(5, 5, 8, 0.95);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(0, 180, 255, 0.15);
	box-shadow: var(--shadow-card);
	pointer-events: none;
	z-index: 100;
}

.nav-item-has-mega:hover .mega-menu,
.nav-item-has-mega:focus-within .mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

.mega-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.mega-col h4 {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--brand-cyan);
	margin-bottom: 12px;
	font-weight: 600;
}

.mega-col a {
	display: block;
	padding: 6px 0;
	font-size: 0.85rem;
	color: var(--text-secondary);
	white-space: normal;
}

.mega-col a:hover {
	color: var(--brand-cyan);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--text-on-chrome);
	font-size: 1.5rem;
	cursor: pointer;
	line-height: 1;
	padding: 4px;
}

.mobile-menu {
	display: none;
	position: fixed;
	inset: 0;
	background: #000;
	z-index: 999;
	padding: 100px var(--gutter) 40px;
	transform: translateX(100%);
	transition: transform 0.4s ease;
	overflow-y: auto;
}

.mobile-menu.is-open {
	transform: translateX(0);
}

.mobile-menu ul {
	display: flex;
	flex-direction: column;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-menu a {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-primary);
}

.site-footer {
	position: relative;
	background: var(--surface-chrome-footer);
	border-top: 1px solid var(--border-on-chrome);
	padding: 64px 0 0;
	color: var(--text-on-chrome);
	overflow: hidden;
}

.site-footer > .nc-container {
	position: relative;
	z-index: 1;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 48px;
	padding-bottom: 48px;
}

.footer-brand {
	position: relative;
}

.footer-brand::before {
	content: '';
	position: absolute;
	left: -100px;
	top: -35px;
	width: 380px;
	height: 200px;
	background: radial-gradient(
		ellipse 46% 46% at 42% 42%,
		rgba(255, 255, 255, 0.72) 0%,
		rgba(220, 252, 231, 0.48) 22%,
		rgba(167, 243, 208, 0.26) 42%,
		rgba(74, 222, 128, 0.1) 60%,
		transparent 78%
	);
	filter: blur(30px);
	pointer-events: none;
	z-index: 0;
}

.footer-brand img {
	height: 28px;
	width: auto;
	margin-bottom: 16px;
	position: relative;
	z-index: 1;
}

.footer-brand p {
	color: var(--text-on-chrome-muted);
	font-size: 0.875rem;
	margin-bottom: 20px;
	max-width: 280px;
	line-height: 1.6;
	position: relative;
	z-index: 1;
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.social-links a {
	min-width: 36px;
	height: 36px;
	padding: 0 8px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	font-weight: 600;
	color: var(--text-on-chrome-muted);
	transition: border-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
	border-color: var(--brand-cyan);
	color: var(--brand-cyan);
}

.footer-col h4 {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-on-chrome);
	margin-bottom: 20px;
	font-weight: 700;
}

.footer-col a {
	display: block;
	color: var(--text-on-chrome-muted);
	font-size: 0.875rem;
	padding: 6px 0;
	transition: color 0.2s ease;
}

.footer-col a:hover {
	color: var(--brand-cyan);
}

.footer-contact ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-contact li {
	color: var(--text-on-chrome-muted);
	font-size: 0.875rem;
	padding: 6px 0;
	line-height: 1.5;
}

.footer-contact a {
	color: var(--brand-cyan);
	display: inline;
	padding: 0;
}

.footer-contact a:hover {
	text-decoration: underline;
}

.footer-legal {
	padding-bottom: 40px;
}

.footer-legal-box {
	background: rgba(8, 18, 45, 0.65);
	border: 1px solid rgba(120, 160, 220, 0.22);
	border-radius: 12px;
	padding: 24px 28px;
	max-width: 640px;
}

.footer-legal-label {
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #a8b8e8;
	margin-bottom: 14px;
}

.footer-legal-name-vn {
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--text-on-chrome);
	line-height: 1.45;
	margin-bottom: 6px;
}

.footer-legal-name-en {
	font-size: 0.8rem;
	color: var(--text-on-chrome-muted);
	margin-bottom: 8px;
}

.footer-legal-mst {
	font-size: 0.8rem;
	color: var(--text-on-chrome-muted);
	margin-bottom: 14px;
}

.footer-legal-mst-note {
	opacity: 0.75;
}

.footer-legal-contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-legal-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.875rem;
	color: var(--text-on-chrome-muted);
	padding: 5px 0;
	line-height: 1.5;
}

.footer-legal-contact .li-icon {
	flex-shrink: 0;
	width: 18px;
	text-align: center;
}

.footer-legal-contact a {
	color: var(--brand-cyan);
}

.footer-legal-contact a:hover {
	text-decoration: underline;
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 24px 0;
	font-size: 0.8rem;
	color: var(--text-on-chrome-muted);
	border-top: 1px solid var(--border-on-chrome);
}

.footer-bottom-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
}

.footer-bottom a {
	color: var(--text-on-chrome-muted);
	transition: color 0.2s ease;
}

.footer-bottom a:hover {
	color: var(--brand-cyan);
}

.floating-cta {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 900;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.floating-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 48px;
	padding: 0 14px;
	border-radius: 100px;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	overflow: hidden;
	transition: padding 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	border: none;
	cursor: pointer;
	text-decoration: none;
}

.floating-btn span {
	max-width: 0;
	overflow: hidden;
	white-space: nowrap;
	transition: max-width 0.3s ease;
}

.floating-btn:hover {
	padding: 0 20px;
	color: #fff;
}

.floating-btn:hover span {
	max-width: 140px;
}

.floating-btn.zalo {
	background: #0068ff;
}

.floating-btn.call {
	background: var(--gradient-brand);
	position: relative;
}

.floating-btn.call::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 100px;
	background: var(--gradient-brand);
	opacity: 0.4;
	animation: nc-pulse-ring 2s ease-out infinite;
	z-index: -1;
}

.floating-btn.top {
	background: var(--bg-elevated);
	border: 1px solid var(--bg-border);
	color: var(--text-secondary);
	width: 40px;
	height: 40px;
	padding: 0;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-btn.top.is-visible {
	opacity: 1;
	visibility: visible;
}

.floating-btn.top:hover {
	color: var(--brand-cyan);
	border-color: var(--brand-cyan);
}

/* -------------------------------------------------------------------------- */
/* Design system preview (temporary — front-page Phase 2)                      */
/* -------------------------------------------------------------------------- */

.nc-ds-preview {
	padding-block: var(--section-pad);
}

.nc-ds-preview__hero {
	text-align: center;
	max-width: 720px;
	margin-inline: auto;
	margin-bottom: 64px;
}

.nc-ds-preview__hero h1 {
	font-size: var(--text-h2);
	margin-bottom: 16px;
}

.nc-ds-preview__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.nc-ds-preview__card {
	padding: 28px;
	border-radius: var(--card-radius);
}

.nc-ds-preview__swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
}

.nc-ds-preview__swatch {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.nc-ds-preview__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
}

.nc-ds-preview__type h1 {
	font-size: var(--text-hero);
	margin-bottom: 8px;
}

.nc-ds-preview__type h2 {
	font-size: var(--text-h2);
	margin-bottom: 8px;
}

.nc-ds-preview__type h3 {
	font-size: var(--text-h3);
	margin-bottom: 8px;
}

/* -------------------------------------------------------------------------- */
/* WordPress content defaults                                                  */
/* -------------------------------------------------------------------------- */

.entry-content {
	color: var(--text-secondary);
}

.entry-content a {
	color: var(--brand-cyan);
}

.entry-content a:hover {
	text-decoration: underline;
}

.entry-content h2,
.entry-content h3 {
	color: var(--text-primary);
	margin-block: 1.5em 0.75em;
}

.entry-content p {
	margin-bottom: 1em;
}

/* -------------------------------------------------------------------------- */
/* Motion                                                                      */
/* -------------------------------------------------------------------------- */

@keyframes nc-glow-pulse {
	0%,
	100% {
		opacity: 0.5;
		transform: scale(1);
	}

	50% {
		opacity: 1;
		transform: scale(1.1);
	}
}

@keyframes nc-pulse-ring {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}

	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	html {
		scroll-behavior: auto;
	}

	.nc-reveal {
		opacity: 1;
		transform: none;
	}

	.section-label .dot {
		animation: none;
	}

	.floating-btn.call::before {
		animation: none;
	}
}

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

@media (max-width: 768px) {
	.nav-desktop,
	.nav-desktop + .btn-cta-nav {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.mobile-menu {
		display: block;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.mega-grid {
		grid-template-columns: 1fr 1fr;
	}

	.floating-cta {
		bottom: 16px;
		right: 16px;
	}
}
