/**
 * Website Styles - ClickUp Inspired Theme
 * Vibrant, Friendly, Rounded, Clean
 * (Google Fonts are linked from index.php <head> for faster, parallel loading)
 */

/* ============ CSS Variables ============ */
:root {
	/* Brand Colors - Masterpanel Gradient (Blue -> Red) */
	--color-primary: #0066FF;
	/* Blue Anchor */
	--color-primary-hover: #0052cc;

	--color-secondary: #f0f9ff;
	/* Light Blue tint for backgrounds */

	--color-accent: #FF3366;
	/* Red/Pink */
	--color-info: #0ea5e9;
	/* Sky Blue */

	/* Gradients */
	/* Matches the logo: Blue -> Red */
	--gradient-primary: linear-gradient(135deg, #0066FF 0%, #FF3366 100%);
	--gradient-text: linear-gradient(135deg, #0066FF 0%, #FF3366 100%);
	--gradient-glow: radial-gradient(circle at center, rgba(0, 102, 255, 0.15) 0%, transparent 70%);

	/* Text Colors */
	--color-text-main: #0f172a;
	/* Slate 900 */
	--color-text-muted: #64748b;
	/* Slate 500 */
	--color-text-light: #94a3b8;
	/* Slate 400 */

	/* Backgrounds */
	--color-bg-body: #ffffff;
	--color-bg-grey: #f8fafc;
	/* Slate 50 */
	--color-bg-surface: #ffffff;

	/* Borders */
	--color-border: #e2e8f0;
	/* Slate 200 */
	--color-border-hover: #cbd5e1;
	/* Slate 300 */

	/* Spacing & Radius */
	--radius-sm: 0px;
	--radius-md: 0px;
	--radius-lg: 0px;
	--radius-xl: 0px;
	--radius-pill: 0px;

	/* Shadows */
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
	--shadow-floating: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
	/* Indigo glow */

	/* Transitions */
	--ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
	--ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--duration-fast: 0.2s;
	--duration-normal: 0.3s;
}

/* ============ Reset & Base ============ */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: var(--color-text-main);
	background-color: var(--color-bg-body);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Outfit', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: var(--color-text-main);
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.02em;
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2.25rem;
}

h3 {
	font-size: 1.5rem;
}

h4 {
	font-size: 1.25rem;
}

.lead {
	font-size: 1.125rem;
	color: var(--color-text-muted);
}

a {
	text-decoration: none;
	color: inherit;
	transition: color var(--duration-fast) var(--ease-smooth);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 0 !important;
}

.container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ============ Utilities ============ */
.text-center {
	text-align: center;
}

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

.text-gradient {
	background: var(--gradient-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.text-gradient-blue {
	background: var(--gradient-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

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

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

.flex-col {
	display: flex;
	flex-direction: column;
}

.max-w-800 {
	max-width: 800px;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.section-bg {
	padding: 4.5rem 0;
	background: var(--color-bg-grey);
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.mt-1 {
	margin-top: 0.5rem;
}

.mt-2 {
	margin-top: 1rem;
}

.mt-4 {
	margin-top: 2rem;
}

.mb-2 {
	margin-bottom: 1rem;
}

.mb-4 {
	margin-bottom: 2rem;
}

/* ============ Header ============ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	transition: all var(--duration-normal);
}

.site-header.scrolled {
	border-color: var(--color-border);
	box-shadow: var(--shadow-sm);
}

.header-content {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo img {
	height: 36px;
}

.nav-menu {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-menu li a {
	font-weight: 500;
	font-size: 0.875rem;
	color: var(--color-text-main);
}

.nav-menu li a:hover {
	color: var(--color-primary);
}

/* Dropdown */
.has-dropdown {
	position: relative;
}

.dropdown-arrow {
	width: 10px;
	margin-left: 4px;
	opacity: 0.5;
	transition: transform 0.2s;
}

.has-dropdown:hover .dropdown-arrow {
	transform: rotate(180deg);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background: white;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	padding: 0.5rem;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s;
	list-style: none;
}

.has-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
	display: block;
	padding: 0.6rem 1rem;
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
}

.dropdown-menu li a:hover {
	background: var(--color-bg-grey);
	color: var(--color-primary);
}

/* Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.lang-btn {
	font-size: 0.875rem;
	font-weight: 600;
	padding: 4px 8px;
	border-radius: 0;
}

.lang-btn.active {
	background: var(--color-bg-grey);
	color: var(--color-primary);
}

/* Prominent login CTA — makes the merchant entry point unmissable in the header */
.btn-login {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg, #0066FF 0%, #FF3366 100%);
	color: #fff !important;
	font-size: 1.0625rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	padding: 0.7rem 1.6rem;
	border-radius: 999px;
	box-shadow: 0 10px 24px -8px rgba(0, 102, 255, 0.55), 0 4px 12px -2px rgba(255, 51, 102, 0.35);
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
	white-space: nowrap;
}

.btn-login:hover {
	transform: translateY(-2px);
	filter: brightness(1.06);
	box-shadow: 0 14px 30px -8px rgba(0, 102, 255, 0.6), 0 6px 16px -2px rgba(255, 51, 102, 0.4);
	color: #fff !important;
	text-decoration: none;
}

.btn-login:active {
	transform: translateY(0);
}

/* The "login" entry inside the nav list is reserved for the mobile drawer —
 * hide it on desktop so the prominent .btn-login in .header-actions is the
 * only login surface above the breakpoint. */
.main-nav .mobile-only {
	display: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
}

.mobile-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #333;
	margin: 5px 0;
}

/* ============ Buttons ============ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.8rem;
	border-radius: var(--radius-pill);
	font-weight: 700;
	font-size: 1rem;
	transition: all var(--duration-fast) var(--ease-smooth);
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: var(--gradient-primary);
	color: white;
	box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
	border: none;
}

.btn-primary:hover {
	background: var(--gradient-primary);
	filter: brightness(1.1);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
	background: white;
	color: var(--color-text-main);
	border: 1px solid var(--color-border);
}

.btn-secondary:hover {
	border-color: var(--color-text-muted);
	background: var(--color-bg-grey);
}

.btn-lg {
	padding: 1rem 2.5rem;
	font-size: 1.125rem;
}

/* ============ Hero Section (Centered) ============ */
.hero-centered {
	padding: 6rem 0 3rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* Background gradient blob */
.hero-centered::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(123, 104, 238, 0.08) 0%, transparent 60%);
	z-index: -1;
	pointer-events: none;
}

.hero-badge {
	display: inline-block;
	background: #f0ebff;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 0.85rem;
	padding: 0.5rem 1rem;
	border-radius: var(--radius-pill);
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.hero-title {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	letter-spacing: -0.03em;
	background: linear-gradient(180deg, #292d34 0%, #555 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-subtitle {
	font-size: 1.35rem;
	color: var(--color-text-muted);
	max-width: 700px;
	margin: 0 auto 2rem;
	line-height: 1.6;
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
}

.hero-visual-container {
	position: relative;
	max-width: 900px;
	margin: 2rem auto 0;
	perspective: 1000px;
}

.hero-visual-container::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--radius-xl);
	background: transparent;
	box-shadow:
		0 8px 24px rgba(0, 0, 0, 0.05),
		0 0 60px 24px rgba(99, 102, 241, 0.08),
		0 0 60px 24px rgba(236, 72, 153, 0.06);
	pointer-events: none;
	z-index: 0;
}

.hero-visual-img {
	border-radius: 0;
	box-shadow: var(--shadow-floating);
	border: 1px solid rgba(0, 0, 0, 0.05);
	background: transparent;
	transform: none;
	transition: none;
	position: relative;
	z-index: 1;
}

.hero-visual-img:hover {
	transform: rotateX(0) scale(1.01);
}

/* ============ Logo Strip ============ */
.logo-strip {
	padding: 2.5rem 0;
	border-bottom: 1px solid var(--color-border);
	background: white;
}

.logo-strip .logo-strip-heading {
	text-align: center;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-text-muted);
	letter-spacing: 0.04em;
	text-transform: none;
	margin: 0 auto 1.25rem;
	line-height: 1.4;
}

.logo-marquee {
	width: 100%;
}

.logo-marquee-viewport {
	overflow: hidden;
	width: 100%;
	mask-image: linear-gradient(
		to right,
		transparent,
		#000 6%,
		#000 94%,
		transparent
	);
	-webkit-mask-image: linear-gradient(
		to right,
		transparent,
		#000 6%,
		#000 94%,
		transparent
	);
}

.logo-marquee-track {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: clamp(2rem, 5vw, 4rem);
	width: max-content;
	animation: logo-marquee-scroll 45s linear infinite reverse;
	will-change: transform;
}

@keyframes logo-marquee-scroll {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.logo-marquee-viewport {
		mask-image: none;
		-webkit-mask-image: none;
	}

	.logo-marquee-track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		max-width: 1240px;
		margin: 0 auto;
		padding: 0 24px;
		box-sizing: border-box;
	}
}

.partner-logo {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
	min-width: 0;
	width: 11rem;
	max-width: min(11rem, 28vw);
}

.partner-logo-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	width: 100%;
}

.partner-logo-mark img {
	display: block;
	height: 48px;
	width: auto;
	object-fit: contain;
	object-position: center bottom;
	max-width: min(200px, 32vw);
	/* Full brand colour (SVG/PNG); do not use grayscale or hue filters here */
	filter: none;
}

.partner-logo-name {
	margin-top: 0.4rem;
	font-size: 0.68rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	color: var(--color-text-muted);
	letter-spacing: 0.02em;
	width: 100%;
}

/* ============ Bento Grid Features ============ */
.section-features {
	padding: 4.5rem 0;
	background: var(--color-bg-grey);
}

.home-features-head {
	margin-bottom: 0.25rem;
}

.home-section-title {
	font-size: clamp(1.85rem, 4vw, 2.5rem);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.home-section-lead {
	font-size: 1.1rem;
	line-height: 1.65;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, auto);
	gap: 1.25rem;
	margin-top: 2rem;
}

.bento-card {
	background: white;
	border-radius: var(--radius-lg);
	padding: 2rem;
	border: 1px solid transparent;
	box-shadow: var(--shadow-sm);
	transition: all var(--duration-normal);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	position: relative;
}

.bento-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: rgba(123, 104, 238, 0.2);
}

.bento-card--lead {
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	gap: 1.5rem;
}

.bento-card-main {
	flex: 1 1 0;
	min-width: 0;
}

.bento-card-figure {
	flex: 0 0 42%;
	max-width: 300px;
	align-self: stretch;
	background: #f0f4f8;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	min-height: 160px;
}

.bento-card-img {
	width: 100%;
	height: 100%;
	max-height: 220px;
	object-fit: cover;
	object-position: center;
}

.split-visual-img {
	width: 100%;
	height: auto;
	display: block;
	box-shadow: var(--shadow-lg);
}

/* Span classes for Bento Grid */
.span-2 {
	grid-column: span 2;
}

.span-3 {
	grid-column: span 3;
}

.bento-icon {
	width: 50px;
	height: 50px;
	background: var(--color-secondary);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--color-primary);
	margin-bottom: 1.25rem;
}

.bento-title {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.bento-desc {
	color: var(--color-text-muted);
	font-size: 1rem;
	line-height: 1.6;
}

/* ============ Alternating Sections ============ */
.section-split {
	padding: 4.5rem 0;
}

.split-container {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.split-container.reverse {
	flex-direction: row-reverse;
}

.split-text {
	flex: 1;
}

.split-visual {
	flex: 1;
}

.split-tag {
	color: var(--color-primary);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
	display: block;
}

.split-title {
	font-size: 2.25rem;
	margin-bottom: 1.5rem;
}

.split-desc {
	font-size: 1.1rem;
	color: var(--color-text-muted);
	margin-bottom: 1.5rem;
}

.check-list {
	list-style: none;
	margin-bottom: 1.5rem;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--color-text-main);
}

.check-icon {
	color: var(--color-success);
	font-weight: bold;
}

/* ============ Footer ============ */
.site-footer {
	background: #1a1d21;
	color: white;
	padding: 4rem 0 2rem;
	margin-top: 3px;
}

.footer-content {
	text-align: center;
	opacity: 0.6;
	font-size: 0.9rem;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
	.hero-title {
		font-size: 3.5rem;
	}

	.bento-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.span-3 {
		grid-column: span 2;
	}

	.bento-card--lead {
		flex-direction: column;
	}

	.bento-card-figure {
		max-width: none;
		width: 100%;
		min-height: 200px;
	}
}

@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: block;
	}

	.main-nav {
		display: none;
		position: absolute;
		top: 80px;
		left: 0;
		width: 100%;
		background: white;
		flex-direction: column;
		padding: 1rem;
		box-shadow: var(--shadow-md);
	}

	.main-nav.active {
		display: flex;
	}

	.header-actions {
		display: none;
	}

	/* Reveal the in-nav login link on mobile (hidden on desktop above) and
	 * style it as the dominant CTA inside the drawer so merchants spot it. */
	.main-nav .mobile-only {
		display: block;
		margin-top: 0.75rem;
		padding-top: 0.75rem;
		border-top: 1px solid var(--color-border, #e5e7eb);
	}

	.main-nav .mobile-only a {
		display: block;
		text-align: center;
		background: linear-gradient(90deg, #0066FF 0%, #FF3366 100%);
		color: #fff;
		font-size: 1.0625rem;
		font-weight: 800;
		padding: 0.85rem 1.5rem;
		border-radius: 999px;
		box-shadow: 0 10px 24px -8px rgba(0, 102, 255, 0.55), 0 4px 12px -2px rgba(255, 51, 102, 0.35);
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-centered {
		padding-top: 4rem;
	}

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

	.span-2,
	.span-3 {
		grid-column: span 1;
	}

	.split-container,
	.split-container.reverse {
		flex-direction: column;
		gap: 3rem;
		text-align: center;
	}

	.check-list li {
		justify-content: center;
	}
}

/* ============ Video Modal ============ */
.video-modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
	align-items: center;
	justify-content: center;
}

.video-modal.active {
	display: flex;
}

.video-modal-content {
	position: relative;
	width: 90%;
	max-width: 800px;
	background-color: #000;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-floating);
	overflow: hidden;
}

.video-modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	color: white;
	font-size: 30px;
	font-weight: bold;
	cursor: pointer;
	background: none;
	border: none;
	z-index: 10;
	line-height: 1;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-modal-body {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 Aspect Ratio */
	height: 0;
	overflow: hidden;
}

.video-modal-body iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* MiniApp solution page — layout helpers (matches POS / e-Invoice breakpoints) */
.sol-miniapp-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.sol-miniapp-benefits-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.sol-miniapp-benefits-grid .sol-miniapp-benefit-wide {
	grid-column: 1 / -1;
}

.sol-miniapp-card-accent {
	border-top: 3px solid var(--color-primary);
}

.sol-miniapp-pain-grid,
.sol-miniapp-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

@media (max-width: 900px) {
	.sol-miniapp-hero-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

@media (max-width: 768px) {
	.sol-miniapp-benefits-grid {
		grid-template-columns: 1fr;
	}

	.sol-miniapp-benefits-grid .sol-miniapp-benefit-wide {
		grid-column: auto;
	}

	.sol-miniapp-pain-grid,
	.sol-miniapp-features-grid {
		grid-template-columns: 1fr;
	}
}
/* ============================================
   Utility classes to replace repeated inline styles
   ============================================ */
.mp-section { padding: 5rem 0; }
.mp-section--sm { padding: 4.5rem 0; }
.mp-section--lg { padding: 6rem 0; }
.mp-bg-light { background: #f8f9fa; }
.mp-bg-white { background: white; }

.mp-container-narrow { max-width: 1200px; }

.mp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.mp-check-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.mp-check-row--light {
    background: #f8f9fa;
    box-shadow: none;
}
.mp-check-icon {
    color: var(--color-success);
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
}
.mp-check-text { font-size: 1rem; line-height: 1.6; }
.mp-check-list { display: flex; flex-direction: column; gap: 1rem; }

.mp-section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--color-primary);
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mp-section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}
.mp-section-subtitle {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.mp-section-desc {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-text-secondary);
}

@media (max-width: 1024px) {
    .mp-two-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ============================================
   Utility classes used across pricing/product/solutions/404 pages
   ============================================ */
.hero {
    padding: 4rem 0 2rem;
    text-align: center;
}
.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 0.75rem; line-height: 1.15; }
.hero p { font-size: 1.125rem; color: var(--color-text-secondary); max-width: 680px; margin: 0 auto; }

.content-page {
    padding: 4rem 0;
}

.grid {
    display: grid;
    gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1024px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
    background: #fff;
    border: 1px solid var(--color-border, #e5e7eb);
    padding: 2rem;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.05));
    border-radius: 0;
}

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

.bg-accent { background: var(--color-bg-accent, #f1f5ff); }
.bg-secondary { background: var(--color-bg-secondary, #f8f9fa); }

.rounded { border-radius: 0; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }

.feature-item {
    background: #fff;
    border: 1px solid var(--color-border, #e5e7eb);
    padding: 2rem;
    border-radius: 0;
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
