﻿/* ============================================================================
   texto-home.css  —  Light-theme homepage styling for home.aspx ONLY.
   Everything is namespaced under .home-light (set on <body> by home.aspx.cs)
   or uses .home-* class names, so no other page in the app is affected.
   This file is fully self-contained and does NOT depend on the frozen
   Content/site.css Tailwind bundle.
   ========================================================================== */

.home-light {
	/* Palette */
	--h-white: #ffffff;
	--h-eggshell: #fafaf8;
	--h-parchment: #f5f4f0;
	--h-ink: #1a1a2e; /* headings, dark surfaces */
	--h-ink-2: #2d2d4e;
	--h-body: #4a5568; /* body copy */
	--h-muted: #6b7280;
	--h-border: #e5e7eb;
	--h-accent: #00c896;
	--h-accent-dark: #00a67a;
	--h-accent-light: #e6faf5;
	--h-radius: 16px;
	--h-radius-lg: 24px;
	--h-shadow-sm: 0 1px 2px rgba(16,24,40,.05), 0 1px 3px rgba(16,24,40,.06);
	--h-shadow-md: 0 8px 24px rgba(16,24,40,.08), 0 2px 6px rgba(16,24,40,.05);
	--h-shadow-lg: 0 24px 60px rgba(16,24,40,.12), 0 8px 20px rgba(16,24,40,.06);
	--h-container: 1180px;
	background: var(--h-white);
	color: var(--h-body);
	font-family: "Inter", "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

	/* The shared dark master sets bg-background on <body>; neutralise it here. */
	.home-light.antialiased {
		background: var(--h-white);
	}

	/* ----------------------------------------------------------------------------
   NAVBAR — light skin, only when body.home-light. Overrides the dark .ascx.
   -------------------------------------------------------------------------- */
	.home-light #site-nav {
		background: rgba(255, 255, 255, 0.85);
		backdrop-filter: saturate(180%) blur(12px);
		-webkit-backdrop-filter: saturate(180%) blur(12px);
		border-bottom: 1px solid transparent;
		transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
	}

		.home-light #site-nav.home-nav-scrolled {
			background: rgba(255, 255, 255, 0.95);
			border-bottom-color: var(--h-border);
			box-shadow: var(--h-shadow-sm);
		}
		/* Link colours: the dark nav uses text-gray-300/hover:text-white — repaint. */
		.home-light #site-nav a,
		.home-light #site-nav button {
			color: var(--h-ink) !important;
		}

		.home-light #site-nav .text-gray-300,
		.home-light #site-nav .text-gray-400 {
			color: #475467 !important;
		}

		.home-light #site-nav a:hover,
		.home-light #site-nav button:hover {
			color: var(--h-accent-dark) !important;
		}
		/* Dropdown panels were dark (#0B0F13) — make them light. */
		.home-light #site-nav .bg-\[\#0B0F13\] {
			background: #ffffff !important;
			border-color: var(--h-border) !important;
			box-shadow: var(--h-shadow-lg) !important;
		}

		.home-light #site-nav .border-white\/10 {
			border-color: var(--h-border) !important;
		}

		.home-light #site-nav .hover\:bg-white\/5:hover {
			background: var(--h-eggshell) !important;
		}
		/* "Book a Demo" pill in nav keeps accent treatment. */
		.home-light #site-nav .bg-primary {
			background: var(--h-accent) !important;
			color: #fff !important;
		}

			.home-light #site-nav .bg-primary:hover {
				background: var(--h-accent-dark) !important;
			}
		/* Mobile menu panel */
		.home-light #site-nav .bg-background {
			background: #ffffff !important;
		}

/* Logo swap: dark page shows white texto.svg; light page shows dark logo. */
.home-logo-light {
	display: none;
}

.home-light .home-logo-dark {
	display: none;
}

.home-light .home-logo-light {
	display: inline-block;
}

/* ----------------------------------------------------------------------------
   FOOTER — Footer.ascx paints its band with rgba(0,0,0,.4), which only reads
   as dark over the old dark <body>. On the light homepage that washes out to
   grey, so force a solid dark band here (scoped; Footer.ascx itself untouched).
   -------------------------------------------------------------------------- */
.home-light .footer-section {
	background-color: var(--h-ink);
}

/* ----------------------------------------------------------------------------
   LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.home-light .home-container {
	width: 100%;
	max-width: var(--h-container);
	margin: 0 auto;
	padding: 0 24px;
}

.home-light .home-section {
	padding: 96px 0;
	position: relative;
}

.home-light .home-section--tight {
	padding: 72px 0;
}

.home-light .bg-egg {
	background: var(--h-eggshell);
}

.home-light .bg-parch {
	background: var(--h-parchment);
}

.home-light .home-section-head {
	max-width: 720px;
	margin: 0 auto 56px;
	text-align: center;
}

.home-light .home-section-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--h-accent-dark);
	margin-bottom: 16px;
}

.home-light h1, .home-light h2, .home-light h3, .home-light h4 {
	color: var(--h-ink);
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0;
}

.home-light .home-h2 {
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 800;
}

.home-light .home-lead {
	font-size: 18px;
	line-height: 1.6;
	color: var(--h-body);
	margin-top: 18px;
}

.home-light .home-accent-text {
	color: var(--h-accent-dark);
}

.home-light .home-gradient-text {
	background: linear-gradient(90deg, var(--h-accent) 0%, #14b8a6 60%, var(--h-ink) 140%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ----------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.home-light .home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 600;
	font-size: 16px;
	line-height: 1;
	padding: 15px 26px;
	border-radius: 12px;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

	.home-light .home-btn svg {
		transition: transform .2s ease;
	}

	.home-light .home-btn:hover svg {
		transform: translateX(3px);
	}

.home-light .home-btn-primary {
	background: var(--h-accent);
	color: #fff;
	box-shadow: 0 8px 20px rgba(0, 200, 150, .28);
}

	.home-light .home-btn-primary:hover {
		background: var(--h-accent-dark);
		transform: translateY(-2px);
		box-shadow: 0 12px 28px rgba(0, 200, 150, .38);
	}

.home-light .home-btn-outline {
	background: #fff;
	color: var(--h-ink);
	border-color: var(--h-border);
}

	.home-light .home-btn-outline:hover {
		border-color: var(--h-accent);
		color: var(--h-accent-dark);
		transform: translateY(-2px);
		box-shadow: var(--h-shadow-md);
	}

.home-light .home-btn-lg {
	padding: 18px 34px;
	font-size: 17px;
}

/* ----------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.home-light .home-hero {
	position: relative;
	padding: 160px 0 90px;
	overflow: hidden;
	background: radial-gradient(60% 50% at 80% 0%, rgba(0,200,150,.10) 0%, transparent 60%), radial-gradient(50% 40% at 5% 20%, rgba(20,184,166,.08) 0%, transparent 55%), var(--h-white);
}

.home-light .home-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.home-light .home-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--h-accent-light);
	color: var(--h-accent-dark);
	font-size: 13.5px;
	font-weight: 600;
	padding: 7px 14px;
	border-radius: 999px;
	border: 1px solid rgba(0,200,150,.22);
}

	.home-light .home-pill .dot {
		width: 7px;
		height: 7px;
		border-radius: 50%;
		background: var(--h-accent);
		display: inline-block;
	}

.home-light .home-hero h1 {
	font-size: clamp(40px, 5.6vw, 68px);
	font-weight: 800;
	margin: 22px 0 0;
}

.home-light .home-hero .home-lead {
	max-width: 540px;
	font-size: 19px;
}
/* In centered sub-page heroes (home-section-head inside home-hero) the
   540px lead block must centre itself, or the text sits 90px left of the
   headline's axis. The homepage's left-aligned hero column is unaffected. */
.home-light .home-hero .home-section-head .home-lead {
	margin-left: auto;
	margin-right: auto;
}

.home-light .home-hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.home-light .home-trustline {
	margin-top: 20px;
	font-size: 14px;
	color: var(--h-muted);
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

	.home-light .home-trustline .sep {
		color: var(--h-border);
	}

/* Hero stat chips */
.home-light .home-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 42px;
	max-width: 540px;
}
	/* 4-up variant for results bands that show four metrics (e.g. Logistics).
   Double-class specificity so it beats the responsive 3-col rule below
   regardless of source order. */
	.home-light .home-stats.home-stats--4 {
		grid-template-columns: repeat(4, 1fr);
		max-width: 880px;
		margin-left: auto;
		margin-right: auto;
	}

@media (max-width: 640px) {
	.home-light .home-stats.home-stats--4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

.home-light .home-stat {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius);
	padding: 18px 16px;
	box-shadow: var(--h-shadow-sm);
}

.home-light .home-stat-num {
	font-size: 28px;
	font-weight: 800;
	color: var(--h-ink);
	line-height: 1;
	letter-spacing: -.02em;
}

.home-light .home-stat-label {
	font-size: 13px;
	color: var(--h-muted);
	margin-top: 6px;
}

/* ============================================================================
   HERO — WHATSAPP PHONE MOCKUP
   A real smartphone running a WhatsApp-style business chat. Geometry is pure
   CSS; the scripted conversation, float, parallax + glare are driven from
   texto-home.js with GSAP.
   ========================================================================== */
.home-light .home-phone-stage {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	perspective: 1400px;
	padding: 10px 0;
}

.home-light .home-phone-wrap {
	position: relative;
	transform-style: preserve-3d;
	will-change: transform;
}
/* Grab-to-tilt affordance (fine pointers only; texto-home.js wires the drag). */
@media (pointer: fine) {
	.home-light .home-phone-stage {
		cursor: grab;
	}

		.home-light .home-phone-stage.is-grabbing {
			cursor: grabbing;
		}
}

.home-light .home-phone-float {
	will-change: transform;
}

/* Soft ambient shadow pooled under the device for depth. */
.home-light .home-phone-stage::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 2%;
	width: 64%;
	height: 42px;
	transform: translateX(-50%);
	background: radial-gradient(ellipse at center, rgba(16,24,40,.28), transparent 70%);
	filter: blur(14px);
	z-index: 0;
	pointer-events: none;
	transition: opacity .6s ease;
}
/* With JS active the shadow waits for the phone's entrance (the .phone-on
   class is added when the device lands). Without JS it stays visible. */
.home-js .home-light .home-phone-stage::after {
	opacity: 0;
}

.home-js .home-light .home-phone-stage.phone-on::after {
	opacity: 1;
}

.home-light .home-phone {
	position: relative;
	z-index: 1;
	/* One fixed device size — no fluid resizing (kept constant across breakpoints). */
	width: 290px;
	max-width: 86vw;
	aspect-ratio: 9 / 19;
	background: linear-gradient(160deg, #23232b 0%, #15151b 55%, #0c0c10 100%);
	border-radius: 46px;
	padding: 11px;
	box-shadow: 0 2px 4px rgba(0,0,0,.5), 0 28px 60px -18px rgba(16,24,40,.55), 0 40px 90px -30px rgba(0,200,150,.18), inset 0 0 0 2px rgba(255,255,255,.06);
}

/* Dynamic-island pill */
.home-light .home-phone-island {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 92px;
	height: 26px;
	background: #000;
	border-radius: 16px;
	z-index: 6;
}

/* The screen */
.home-light .home-phone-screen {
	position: relative;
	height: 100%;
	border-radius: 36px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background: #efe7de;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}

/* Screen-wake veil — sits over the screen, under the glare. Hidden by
   default so a no-JS visit never sees a black screen; texto-home.js raises
   it to 1 before the entrance and fades it out like a device waking up. */
.home-light .home-phone-veil {
	position: absolute;
	inset: 11px;
	border-radius: 36px;
	background: #05070a;
	opacity: 0;
	pointer-events: none;
	z-index: 6;
}

/* Glass reflection sweep */
.home-light .home-phone-glare {
	position: absolute;
	inset: 0;
	border-radius: 46px;
	pointer-events: none;
	z-index: 7;
	background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,.10) 44%, rgba(255,255,255,.22) 50%, rgba(255,255,255,.06) 56%, rgba(255,255,255,0) 70%);
	mix-blend-mode: screen;
}

/* Status bar */
.home-light .wa-statusbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 22px 6px;
	background: #008069;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .02em;
}

	.home-light .wa-statusbar .wa-status-ic {
		display: inline-flex;
		align-items: center;
		gap: 5px;
	}

/* Chat header */
.home-light .wa-header {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 6px 12px 10px;
	background: #008069;
	color: #fff;
}

.home-light .wa-back {
	display: inline-flex;
	opacity: .95;
}

.home-light .wa-avatar {
	position: relative;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, #25d366, #128c7e);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.home-light .wa-avatar-on {
	position: absolute;
	right: -1px;
	bottom: -1px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #4ade80;
	border: 2px solid #008069;
}

.home-light .wa-peer {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
	margin-right: auto;
}

.home-light .wa-peer-name {
	font-size: 15px;
	font-weight: 600;
}

.home-light .wa-peer-state {
	font-size: 11.5px;
	color: rgba(255,255,255,.8);
	min-height: 14px;
}

.home-light .wa-header-actions {
	display: inline-flex;
	gap: 18px;
	opacity: .95;
}

/* Thread / wallpaper */
.home-light .wa-thread {
	position: relative;
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 14px 12px 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	background-color: #efe7de;
	background-image: radial-gradient(rgba(0,0,0,.04) 1px, transparent 1px), radial-gradient(rgba(0,0,0,.03) 1px, transparent 1px);
	background-size: 26px 26px, 26px 26px;
	background-position: 0 0, 13px 13px;
}

	.home-light .wa-thread::-webkit-scrollbar {
		width: 0;
		height: 0;
		display: none;
	}

/* Date / system separators */
.home-light .wa-day {
	text-align: center;
	margin: 2px 0 4px;
}

	.home-light .wa-day span,
	.home-light .wa-system span {
		display: inline-block;
		background: #ffffff;
		color: #54656f;
		font-size: 11px;
		font-weight: 600;
		padding: 5px 12px;
		border-radius: 9px;
		box-shadow: 0 1px 1px rgba(0,0,0,.08);
	}

.home-light .wa-system {
	text-align: center;
	margin: 4px 0;
}

	.home-light .wa-system span {
		background: #d7efe6;
		color: #1f7a5c;
	}

/* Message rows + bubbles */
.home-light .wa-msg {
	display: flex;
	max-width: 100%;
}

	.home-light .wa-msg.wa-in {
		justify-content: flex-start;
	}

	.home-light .wa-msg.wa-out {
		justify-content: flex-end;
	}
	/* WhatsApp groups consecutive messages from the same sender: follow-ups sit
   tighter (thread gap is 8px; -5px nets ~3px) and lose the corner "tail". */
	.home-light .wa-msg.wa-follow {
		margin-top: -5px;
	}

		.home-light .wa-msg.wa-follow.wa-in .wa-bubble {
			border-top-left-radius: 9px;
		}

		.home-light .wa-msg.wa-follow.wa-out .wa-bubble {
			border-top-right-radius: 9px;
		}

.home-light .wa-bubble {
	position: relative;
	max-width: 80%;
	padding: 7px 10px 6px;
	border-radius: 9px;
	font-size: 13px;
	line-height: 1.42;
	color: #111b21;
	box-shadow: 0 1px 1px rgba(0,0,0,.13);
	word-wrap: break-word;
}

.home-light .wa-in .wa-bubble {
	background: #fff;
	border-top-left-radius: 2px;
}

.home-light .wa-out .wa-bubble {
	background: #d9fdd3;
	border-top-right-radius: 2px;
}

.home-light .wa-bubble.wa-has-card {
	padding: 3px;
}

	.home-light .wa-bubble.wa-has-card .wa-meta {
		margin: 2px 6px 3px;
	}

.home-light .wa-bubble b {
	font-weight: 700;
}

.home-light .wa-bubble .wa-sender {
	display: block;
	font-size: 11.5px;
	font-weight: 700;
	color: #00a884;
	margin-bottom: 1px;
}

.home-light .wa-meta {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	float: right;
	margin: 6px 0 -2px 8px;
	font-size: 10px;
	color: #667781;
}

.home-light .wa-ticks {
	display: inline-flex;
	color: #8696a0;
	transition: color .3s ease;
}

	.home-light .wa-ticks.read {
		color: #53bdeb;
	}

/* Typing indicator */
.home-light .wa-typing .wa-bubble {
	display: inline-flex;
	gap: 4px;
	padding: 11px 12px;
}

.home-light .wa-typing i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #9aa5b1;
	display: block;
	animation: home-bounce 1.2s infinite ease-in-out;
}

	.home-light .wa-typing i:nth-child(2) {
		animation-delay: .15s;
	}

	.home-light .wa-typing i:nth-child(3) {
		animation-delay: .3s;
	}

@keyframes home-bounce {
	0%, 60%, 100% {
		transform: translateY(0);
		opacity: .5;
	}

	30% {
		transform: translateY(-4px);
		opacity: 1;
	}
}

/* Voice note */
.home-light .wa-voice {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 168px;
}

.home-light .wa-voice-play {
	width: 26px;
	height: 26px;
	flex-shrink: 0;
	color: #54656f;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.home-light .wa-wave {
	display: flex;
	align-items: center;
	gap: 2.5px;
	height: 22px;
	flex: 1;
}

	.home-light .wa-wave i {
		width: 2.5px;
		border-radius: 2px;
		background: #9bb0a8;
		transform-origin: center;
	}

		.home-light .wa-wave i.on {
			background: #00a884;
		}

.home-light .wa-voice-dur {
	font-size: 10.5px;
	color: #667781;
}

/* Image preview */
.home-light .wa-image {
	width: 200px;
	max-width: 100%;
	border-radius: 8px;
	overflow: hidden;
	background: #d9fdd3;
	padding: 3px;
}

	.home-light .wa-image .wa-photo {
		height: 116px;
		border-radius: 6px;
		background: radial-gradient(120% 90% at 20% 10%, #ffe9c7 0%, transparent 55%), linear-gradient(135deg, #34c4a0 0%, #0c8e74 100%);
		position: relative;
		overflow: hidden;
		display: flex;
		align-items: flex-end;
		justify-content: flex-start;
	}

		.home-light .wa-image .wa-photo::before {
			content: "";
			position: absolute;
			right: -14px;
			top: -14px;
			width: 78px;
			height: 78px;
			border-radius: 18px;
			background: rgba(255,255,255,.22);
			transform: rotate(18deg);
		}

		.home-light .wa-image .wa-photo::after {
			content: "";
			position: absolute;
			left: 14px;
			bottom: 14px;
			width: 60px;
			height: 42px;
			border-radius: 10px;
			background: rgba(255,255,255,.32);
			box-shadow: 22px 8px 0 -4px rgba(255,255,255,.22);
		}

/* Catalog / product card */
.home-light .wa-card {
	width: 220px;
	max-width: 100%;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	border-top-left-radius: 2px;
	box-shadow: 0 1px 2px rgba(0,0,0,.14);
}

.home-light .wa-card-banner {
	height: 84px;
	position: relative;
	background: linear-gradient(135deg, #075e54 0%, #128c7e 60%, #25d366 120%);
	display: flex;
	align-items: center;
	justify-content: center;
}

	.home-light .wa-card-banner span {
		color: #fff;
		font-weight: 700;
		font-size: 12px;
		letter-spacing: .04em;
		opacity: .95;
	}

.home-light .wa-card-body {
	padding: 9px 11px 11px;
}

.home-light .wa-card-title {
	font-size: 12.5px;
	font-weight: 700;
	color: #111b21;
}

.home-light .wa-card-sub {
	font-size: 11px;
	color: #667781;
	margin-top: 1px;
}

.home-light .wa-card-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
}

.home-light .wa-card-price {
	font-size: 13px;
	font-weight: 800;
	color: #00a884;
}

.home-light .wa-card-btn {
	font-size: 10.5px;
	font-weight: 700;
	color: #00a884;
	border: 1px solid rgba(0,168,132,.35);
	border-radius: 6px;
	padding: 4px 9px;
}

/* Location card */
.home-light .wa-loc {
	width: 200px;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

.home-light .wa-loc-map {
	height: 92px;
	position: relative;
	background: linear-gradient(115deg, rgba(255,255,255,.5) 1px, transparent 1px) 0 0 / 22px 22px, linear-gradient(25deg, rgba(255,255,255,.5) 1px, transparent 1px) 0 0 / 22px 22px, linear-gradient(135deg, #cfe9d8, #add6c4);
}

	.home-light .wa-loc-map::after {
		content: "";
		position: absolute;
		left: 50%;
		top: 46%;
		width: 14px;
		height: 14px;
		transform: translate(-50%, -50%);
		border-radius: 50% 50% 50% 0;
		rotate: -45deg;
		background: #ea4335;
		box-shadow: 0 4px 6px rgba(0,0,0,.25);
	}

.home-light .wa-loc-cap {
	padding: 7px 10px;
	font-size: 11px;
	color: #54656f;
	font-weight: 600;
}

/* Payment / order confirmation card */
.home-light .wa-pay {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 200px;
}

.home-light .wa-pay-ic {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	flex-shrink: 0;
	background: #e7f8f1;
	color: #00a884;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.home-light .wa-pay > span {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.home-light .wa-pay-t {
	display: block;
	font-size: 12.5px;
	font-weight: 700;
	color: #111b21;
}

.home-light .wa-pay-s {
	display: block;
	font-size: 11px;
	color: #667781;
}

/* Feedback / stars */
.home-light .wa-stars {
	display: inline-flex;
	gap: 3px;
	margin-top: 6px;
}

	.home-light .wa-stars svg {
		color: #f5b301;
	}

/* ----------------------------------------------------------------------------
   INTERACTIVE DEMO AFFORDANCES
   The demo engine marks tappable elements (catalog button, rating stars) with
   .wa-tap — they get a pointer cursor, hover feedback and a soft pulse hint so
   visitors discover they can drive the conversation themselves.
   -------------------------------------------------------------------------- */
.home-light .wa-tap {
	cursor: pointer;
}

.home-light .wa-card-btn.wa-tap {
	position: relative;
	background: #00a884;
	color: #fff;
	border-color: #00a884;
	transition: transform .15s ease, box-shadow .2s ease;
	animation: waTapHint 1.8s ease-in-out infinite;
}

	.home-light .wa-card-btn.wa-tap:hover {
		transform: scale(1.08);
		box-shadow: 0 4px 12px rgba(0,168,132,.4);
	}

	.home-light .wa-card-btn.wa-tap:active {
		transform: scale(0.94);
	}

@keyframes waTapHint {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(0,168,132,.45);
	}

	55% {
		box-shadow: 0 0 0 7px rgba(0,168,132,0);
	}
}

.home-light .wa-stars.wa-tap svg {
	color: #d8dee3; /* unlit until the visitor rates */
	transition: color .15s ease, transform .15s ease;
}

	.home-light .wa-stars.wa-tap svg:hover {
		transform: scale(1.25);
	}

	.home-light .wa-stars.wa-tap svg.lit {
		color: #f5b301;
	}

@media (prefers-reduced-motion: reduce) {
	.home-light .wa-card-btn.wa-tap {
		animation: none;
	}
}

/* Input bar */
.home-light .wa-inputbar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	background: #f0f2f5;
}

.home-light .wa-input-field {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border-radius: 22px;
	padding: 8px 12px;
	color: #8696a0;
}

.home-light .wa-input-ph {
	flex: 1;
	font-size: 13px;
}

.home-light .wa-mic {
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	border-radius: 50%;
	background: #008069;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Floating proof badges — parked in the gutters beside the phone (they only
   kiss the device's bezel, never overlap the chat screen). */
.home-light .home-float-badge {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 13px;
	padding: 9px 11px;
	box-shadow: var(--h-shadow-lg);
	animation: home-float 4.5s ease-in-out infinite;
	z-index: 4;
}
	/* Anchor to the device edge and push out into the side gutter so the badge body
   sits clear of the screen. */
	.home-light .home-float-badge.b1 {
		left: calc(100% - 12px);
		top: 9%;
	}

	.home-light .home-float-badge.b2 {
		right: calc(100% - 12px);
		bottom: 10%;
		animation-delay: 1.4s;
	}

.home-light .home-float-ic {
	width: 30px;
	height: 30px;
	border-radius: 9px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--h-accent-light);
	color: var(--h-accent-dark);
}

.home-light .home-float-badge .lbl {
	font-size: 10.5px;
	color: var(--h-muted);
	white-space: nowrap;
}

.home-light .home-float-badge .val {
	font-size: 14px;
	font-weight: 700;
	color: var(--h-ink);
	white-space: nowrap;
}

@keyframes home-float {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-9px);
	}
}

/* ----------------------------------------------------------------------------
   TRUST STRIP
   -------------------------------------------------------------------------- */
.home-light .home-trust {
	background: var(--h-eggshell);
	border-top: 1px solid var(--h-border);
	border-bottom: 1px solid var(--h-border);
	padding: 26px 0;
	overflow: hidden;
}

/* Infinite marquee viewport — edges fade out with a mask. */
.home-light .home-marquee {
	position: relative;
	overflow: hidden;
	cursor: grab;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

	.home-light .home-marquee.is-dragging {
		cursor: grabbing;
	}

.home-light .home-marquee-track {
	display: flex;
	align-items: center;
	gap: 14px;
	width: max-content;
	will-change: transform;
	/* nudge onto its own GPU layer for buttery scroll */
	transform: translate3d(0,0,0);
	-webkit-user-select: none;
	user-select: none;
	touch-action: pan-y;
}

.home-light .home-marquee-item {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	flex-shrink: 0;
	white-space: nowrap;
	padding: 11px 18px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--h-border);
	color: var(--h-body);
	font-weight: 600;
	font-size: 14px;
	box-shadow: var(--h-shadow-sm);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;
}

	.home-light .home-marquee-item svg {
		color: var(--h-accent);
		flex-shrink: 0;
	}

	.home-light .home-marquee-item:hover {
		transform: translateY(-3px);
		color: var(--h-ink);
		border-color: rgba(0,200,150,.45);
		box-shadow: 0 10px 24px -8px rgba(0,200,150,.35), var(--h-shadow-sm);
	}

/* ----------------------------------------------------------------------------
   GENERIC GRID + CARDS
   -------------------------------------------------------------------------- */
.home-light .home-grid {
	display: grid;
	gap: 24px;
}

.home-light .home-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.home-light .home-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.home-light .home-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.home-light .home-grid-5 {
	grid-template-columns: repeat(5, 1fr);
}

.home-light .home-grid-6 {
	grid-template-columns: repeat(6, 1fr);
}

.home-light .home-card {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius-lg);
	padding: 30px;
	box-shadow: var(--h-shadow-sm);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	display: block;
	text-decoration: none;
	height: 100%;
}

	.home-light a.home-card:hover,
	.home-light .home-card.is-hover:hover {
		transform: translateY(-4px);
		box-shadow: var(--h-shadow-lg);
		border-color: rgba(0,200,150,.4);
	}

	.home-light .home-card h3 {
		font-size: 20px;
		font-weight: 700;
		margin-bottom: 10px;
	}

	.home-light .home-card p {
		font-size: 15px;
		line-height: 1.6;
		color: var(--h-body);
		margin: 0;
	}

.home-light .home-card-ic {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--h-accent-light);
	color: var(--h-accent-dark);
	margin-bottom: 20px;
}

.home-light .home-card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	font-weight: 600;
	font-size: 14.5px;
	color: var(--h-accent-dark);
}

	.home-light .home-card-link svg {
		transition: transform .2s ease;
	}

.home-light a.home-card:hover .home-card-link svg {
	transform: translateX(4px);
}

/* Industry card — left-aligned, with description + reveal arrow */
.home-light .home-ind {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius-lg);
	padding: 26px 24px;
	text-decoration: none;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	height: 100%;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

	.home-light .home-ind::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, rgba(0,200,150,.07), transparent 58%);
		opacity: 0;
		transition: opacity .25s ease;
		pointer-events: none;
	}

	.home-light .home-ind:hover {
		transform: translateY(-4px);
		box-shadow: var(--h-shadow-lg);
		border-color: rgba(0,200,150,.4);
	}

		.home-light .home-ind:hover::before {
			opacity: 1;
		}

.home-light .home-ind-ic {
	width: 46px;
	height: 46px;
	border-radius: 13px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--h-accent-light);
	color: var(--h-accent-dark);
	transition: transform .25s ease;
	position: relative;
}

.home-light .home-ind:hover .home-ind-ic {
	transform: scale(1.08);
}

.home-light .home-ind-body {
	flex: 1;
	position: relative;
}

.home-light .home-ind h3 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 6px;
}

.home-light .home-ind-body p {
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--h-body);
	margin: 0;
}

.home-light .home-ind-arrow {
	position: relative;
	color: var(--h-accent-dark);
	flex-shrink: 0;
	margin-top: 3px;
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity .25s ease, transform .25s ease;
}

.home-light .home-ind:hover .home-ind-arrow {
	opacity: 1;
	transform: translateX(0);
}

/* ----------------------------------------------------------------------------
   PRODUCT BENTO + FEATURE CARD + CTA BAND
   -------------------------------------------------------------------------- */
.home-light .home-bento {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 24px;
	align-items: stretch;
}

.home-light .home-bento-rest {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.home-light .home-card-feature {
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #ffffff 0%, #f1fbf7 100%);
	border-color: rgba(0,200,150,.28);
}

.home-light .home-card-feature-main {
	position: relative;
	z-index: 1;
}

.home-light .home-card-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--h-accent-dark);
	background: var(--h-accent-light);
	border: 1px solid rgba(0,200,150,.25);
	padding: 5px 11px;
	border-radius: 999px;
	margin-bottom: 18px;
}

.home-light .home-card-feature h3 {
	font-size: 26px;
	margin-bottom: 12px;
}

.home-light .home-card-feature-main > p {
	font-size: 16px;
	max-width: 430px;
	line-height: 1.6;
	color: var(--h-body);
	margin: 0;
}

.home-light .home-card-list {
	list-style: none;
	padding: 0;
	margin: 20px 0 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

	.home-light .home-card-list li {
		display: flex;
		align-items: center;
		gap: 9px;
		font-size: 14.5px;
		font-weight: 600;
		color: var(--h-ink);
	}

	.home-light .home-card-list svg {
		color: var(--h-accent-dark);
		flex-shrink: 0;
	}

.home-light .home-card-feature .home-card-link {
	margin-top: 22px;
}

.home-light .home-card-feature-art {
	position: absolute;
	right: -14px;
	bottom: -16px;
	color: rgba(0,200,150,.14);
	pointer-events: none;
	z-index: 0;
}

.home-light .home-card-feature-glow {
	position: absolute;
	right: -50px;
	top: -60px;
	width: 230px;
	height: 230px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,200,150,.18), transparent 70%);
	pointer-events: none;
}

.home-light .home-cta-band {
	margin-top: 40px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
	background: linear-gradient(120deg, var(--h-ink) 0%, #1d2b44 55%, #0c6b53 135%);
	border-radius: var(--h-radius-lg);
	padding: 34px 40px;
	box-shadow: var(--h-shadow-lg);
}

	.home-light .home-cta-band::after {
		content: "";
		position: absolute;
		right: -60px;
		top: -90px;
		width: 300px;
		height: 300px;
		border-radius: 50%;
		background: radial-gradient(circle, rgba(0,200,150,.32), transparent 70%);
		pointer-events: none;
	}

.home-light .home-cta-band-text {
	position: relative;
	z-index: 1;
}

.home-light .home-cta-band h3 {
	color: #fff;
	font-size: 24px;
}

.home-light .home-cta-band p {
	color: rgba(255,255,255,.75);
	font-size: 15px;
	margin: 6px 0 0;
}

.home-light .home-cta-band .home-btn {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

/* ----------------------------------------------------------------------------
   WHY TEXTO — PERFORMANCE / INSIGHTS CARD
   -------------------------------------------------------------------------- */
.home-light .home-metrics {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius-lg);
	padding: 24px;
	box-shadow: var(--h-shadow-lg);
	position: relative;
}

.home-light .home-metrics-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.home-light .home-metrics-title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--h-ink);
}

.home-light .home-metrics-live {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 0 4px rgba(34,197,94,.15);
	animation: home-pulse 2s ease-in-out infinite;
}

@keyframes home-pulse {
	0%,100% {
		opacity: 1
	}

	50% {
		opacity: .4
	}
}

.home-light .home-metrics-range {
	font-size: 12px;
	font-weight: 600;
	color: var(--h-muted);
	background: var(--h-eggshell);
	border: 1px solid var(--h-border);
	padding: 5px 11px;
	border-radius: 999px;
}

.home-light .home-metrics-hero {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	background: linear-gradient(135deg, #f2fbf7, #e9faf3);
	border: 1px solid rgba(0,200,150,.18);
	border-radius: var(--h-radius);
	padding: 18px 20px;
	margin-bottom: 16px;
}

.home-light .home-metrics-hero-lbl {
	font-size: 13px;
	color: var(--h-muted);
}

.home-light .home-metrics-hero-val {
	font-size: 36px;
	font-weight: 800;
	color: var(--h-ink);
	line-height: 1.1;
	margin-top: 4px;
	letter-spacing: -.02em;
}

.home-light .home-metrics-trend {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 700;
	color: var(--h-accent-dark);
	background: #fff;
	border: 1px solid rgba(0,200,150,.25);
	padding: 5px 9px;
	border-radius: 999px;
}

.home-light .home-metrics-chart {
	background: var(--h-eggshell);
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius);
	padding: 16px 18px;
	margin-bottom: 16px;
}

.home-light .home-metrics-chart-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 600;
	color: var(--h-ink);
}

.home-light .home-metrics-chart-tag {
	color: var(--h-muted);
	font-weight: 500;
	font-size: 12px;
}

.home-light .home-metrics-tiles {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 12px;
}

.home-light .home-metrics-tile {
	background: var(--h-eggshell);
	border: 1px solid var(--h-border);
	border-radius: 12px;
	padding: 14px 12px;
	text-align: center;
}

	.home-light .home-metrics-tile .lbl {
		font-size: 11px;
		color: var(--h-muted);
		margin-bottom: 5px;
	}

	.home-light .home-metrics-tile .val {
		font-size: 20px;
		font-weight: 800;
		color: var(--h-ink);
	}

		.home-light .home-metrics-tile .val span {
			font-size: 12px;
			font-weight: 600;
			color: var(--h-muted);
		}

/* ----------------------------------------------------------------------------
   HOW IT WORKS
   -------------------------------------------------------------------------- */
.home-light .home-steps {
	position: relative;
}

.home-light .home-steps-line {
	display: none;
	position: absolute;
	top: 34px;
	left: 8%;
	right: 8%;
	height: 2px;
	background: linear-gradient(90deg, var(--h-accent), rgba(0,200,150,.15));
}

.home-light .home-step {
	text-align: center;
	position: relative;
	z-index: 1;
}

.home-light .home-step-num {
	width: 64px;
	height: 64px;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--h-accent);
	color: var(--h-accent-dark);
	font-weight: 800;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(0,200,150,.18);
}

.home-light .home-step h3 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 8px;
}

.home-light .home-step p {
	font-size: 14px;
	line-height: 1.55;
	color: var(--h-body);
	margin: 0;
}

/* ----------------------------------------------------------------------------
   WHY TEXTO (split section + dashboard mockup)
   -------------------------------------------------------------------------- */
.home-light .home-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.home-light .home-checks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 28px;
}

.home-light .home-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

	.home-light .home-check svg {
		color: var(--h-accent);
		flex-shrink: 0;
		margin-top: 2px;
	}

	.home-light .home-check span {
		font-weight: 600;
		color: var(--h-ink);
		font-size: 15px;
	}

.home-light .home-dash {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius-lg);
	padding: 22px;
	box-shadow: var(--h-shadow-lg);
	position: relative;
}

.home-light .home-dash-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--h-border);
	margin-bottom: 18px;
}

.home-light .home-dash-dots {
	display: flex;
	gap: 6px;
}

	.home-light .home-dash-dots i {
		width: 11px;
		height: 11px;
		border-radius: 50%;
		display: block;
	}

.home-light .home-dash-url {
	font-size: 12px;
	color: var(--h-muted);
	font-family: ui-monospace, monospace;
}

.home-light .home-dash-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 18px;
}

.home-light .home-dash-stat {
	background: var(--h-eggshell);
	border: 1px solid var(--h-border);
	border-radius: 12px;
	padding: 14px;
}

	.home-light .home-dash-stat .lbl {
		font-size: 11px;
		color: var(--h-muted);
	}

	.home-light .home-dash-stat .val {
		font-size: 20px;
		font-weight: 800;
		color: var(--h-ink);
		margin-top: 4px;
	}

	.home-light .home-dash-stat .up {
		font-size: 12px;
		color: var(--h-accent-dark);
		font-weight: 600;
	}

.home-light .home-chart {
	background: var(--h-eggshell);
	border: 1px solid var(--h-border);
	border-radius: 14px;
	padding: 18px;
	margin-bottom: 16px;
}

.home-light .home-chart-bars {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	height: 120px;
}

	.home-light .home-chart-bars i {
		flex: 1;
		background: rgba(0,200,150,.25);
		border-radius: 6px 6px 0 0;
		display: block;
	}

		.home-light .home-chart-bars i.hot {
			background: var(--h-accent);
		}

.home-light .home-dash-foot {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

	.home-light .home-dash-foot div {
		background: var(--h-eggshell);
		border-radius: 12px;
		padding: 12px;
		text-align: center;
	}

	.home-light .home-dash-foot .lbl {
		font-size: 11px;
		color: var(--h-muted);
		margin-bottom: 4px;
	}

	.home-light .home-dash-foot .val {
		font-size: 18px;
		font-weight: 800;
		color: var(--h-ink);
	}

/* ----------------------------------------------------------------------------
   TESTIMONIALS
   -------------------------------------------------------------------------- */
.home-light .home-quote {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius-lg);
	padding: 32px;
	box-shadow: var(--h-shadow-sm);
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease;
}

	.home-light .home-quote:hover {
		transform: translateY(-4px);
		box-shadow: var(--h-shadow-md);
	}

.home-light .home-quote-mark {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 56px;
	line-height: .6;
	color: var(--h-accent);
	margin-bottom: 8px;
	height: 28px;
}

.home-light .home-quote p {
	font-size: 16px;
	line-height: 1.65;
	color: var(--h-ink);
	font-weight: 500;
	flex: 1;
	margin: 0 0 22px;
}

.home-light .home-quote-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.home-light .home-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	flex-shrink: 0;
	background: var(--h-accent-light);
	color: var(--h-accent-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
}

.home-light .home-quote-author .nm {
	font-weight: 700;
	color: var(--h-ink);
	font-size: 15px;
}

.home-light .home-quote-author .rl {
	font-size: 13px;
	color: var(--h-muted);
}

/* ----------------------------------------------------------------------------
   PRICING TEASER
   -------------------------------------------------------------------------- */
.home-light .home-price-teaser {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius-lg);
	padding: 48px 40px;
	box-shadow: var(--h-shadow-md);
}

/* ----------------------------------------------------------------------------
   FINAL CTA
   -------------------------------------------------------------------------- */
.home-light .home-cta-final {
	background: radial-gradient(60% 80% at 50% 0%, rgba(0,200,150,.16) 0%, transparent 70%), var(--h-accent-light);
	text-align: center;
}

	.home-light .home-cta-final h2 {
		font-size: clamp(32px, 4.4vw, 52px);
		font-weight: 800;
	}

	.home-light .home-cta-final .home-lead {
		max-width: 560px;
		margin: 18px auto 0;
	}

	.home-light .home-cta-final .home-hero-cta {
		justify-content: center;
	}

/* ----------------------------------------------------------------------------
   FORMS  (Contact / lead capture)
   -------------------------------------------------------------------------- */
.home-light .home-form-card {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius-lg);
	padding: 30px;
	box-shadow: var(--h-shadow-lg);
}

	.home-light .home-form-card h3 {
		font-size: 20px;
		font-weight: 700;
		margin-bottom: 20px;
	}

.home-light .home-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.home-light .home-flabel {
	font-size: 13px;
	font-weight: 600;
	color: var(--h-body);
}

.home-light .home-input,
.home-light .texto-select {
	width: 100%;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 14px;
	color: var(--h-ink);
	outline: none;
	font-family: inherit;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.home-light textarea.home-input {
	resize: vertical;
	min-height: 104px;
}

.home-light .home-input::placeholder {
	color: var(--h-muted);
}

.home-light .home-input:focus,
.home-light .texto-select:focus,
.home-light .home-input:hover,
.home-light .texto-select:hover {
	border-color: var(--h-accent);
	box-shadow: 0 0 0 3px rgba(0,200,150,.12);
}

.home-light .texto-select-wrapper {
	position: relative;
	width: 100%;
}

	.home-light .texto-select-wrapper::after {
		content: '';
		position: absolute;
		right: 14px;
		top: 50%;
		transform: translateY(-50%);
		width: 0;
		height: 0;
		pointer-events: none;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-top: 6px solid var(--h-accent-dark);
	}

.home-light .texto-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	padding-right: 40px;
}

	.home-light .texto-select option {
		background: #fff;
		color: var(--h-ink);
	}

.home-light .home-btn-block {
	width: 100%;
}

/* Unified contact panel (info aside + form, equal height, one card) */
.home-light .home-contact-panel {
	display: grid;
	grid-template-columns: 0.82fr 1fr;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius-lg);
	box-shadow: var(--h-shadow-lg);
	overflow: hidden;
}

.home-light .home-contact-aside {
	background: linear-gradient(165deg, var(--h-accent-light) 0%, #ffffff 75%);
	border-right: 1px solid var(--h-border);
	padding: clamp(28px, 3vw, 40px);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

	.home-light .home-contact-aside h3 {
		font-size: 17px;
		font-weight: 700;
		margin-bottom: 14px;
	}

.home-light .home-contact-formcol {
	padding: clamp(28px, 3vw, 40px);
}

	.home-light .home-contact-formcol h3 {
		font-size: 20px;
		font-weight: 700;
		margin-bottom: 20px;
	}

@media (max-width: 820px) {
	.home-light .home-contact-panel {
		grid-template-columns: 1fr;
	}

	.home-light .home-contact-aside {
		border-right: none;
		border-bottom: 1px solid var(--h-border);
	}
}

/* ----------------------------------------------------------------------------
   PRODUCT · ANALYTICS — tenant dashboard recreation (hover-highlight)
   -------------------------------------------------------------------------- */
.home-light .dash2 {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius-lg);
	box-shadow: var(--h-shadow-lg);
	padding: clamp(18px, 2.4vw, 26px);
	max-width: 1060px;
	margin: 0 auto;
}

.home-light .dash2-head {
	text-align: center;
	font-size: 18px;
	font-weight: 800;
	color: var(--h-ink);
	margin-bottom: 20px;
}

.home-light .dash2-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 18px;
}

.home-light .dash2-stat {
	border-radius: 14px;
	padding: 18px;
	border: 1px solid;
	transition: transform .2s ease, box-shadow .2s ease;
}

	.home-light .dash2-stat:hover {
		transform: translateY(-4px);
		box-shadow: var(--h-shadow-md);
	}

	.home-light .dash2-stat.blue {
		background: #eff6ff;
		border-color: #dbeafe;
	}

	.home-light .dash2-stat.green {
		background: var(--h-accent-light);
		border-color: rgba(0,200,150,.22);
	}

	.home-light .dash2-stat .lbl {
		font-size: 10.5px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: .04em;
		display: flex;
		align-items: center;
		gap: 6px;
	}

	.home-light .dash2-stat.blue .lbl {
		color: #2563eb;
	}

	.home-light .dash2-stat.green .lbl {
		color: var(--h-accent-dark);
	}

	.home-light .dash2-stat .num {
		font-size: clamp(24px, 3vw, 32px);
		font-weight: 800;
		margin-top: 8px;
		line-height: 1;
	}

	.home-light .dash2-stat.blue .num {
		color: #1e40af;
	}

	.home-light .dash2-stat.green .num {
		color: #047857;
	}

.home-light .dash2-panels {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
}

.home-light .dash2-panel {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 14px;
	padding: 18px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

	.home-light .dash2-panel:hover {
		transform: translateY(-4px);
		box-shadow: var(--h-shadow-md);
		border-color: rgba(0,200,150,.4);
	}

	.home-light .dash2-panel h4 {
		font-size: 13.5px;
		font-weight: 700;
		text-align: center;
		color: var(--h-ink);
		padding-bottom: 12px;
		border-bottom: 1px solid var(--h-border);
		margin-bottom: 14px;
	}

.home-light .dash2-row {
	display: flex;
	justify-content: space-between;
	font-size: 12.5px;
	color: var(--h-body);
	margin-bottom: 9px;
}

	.home-light .dash2-row .v {
		font-weight: 700;
		color: var(--h-ink);
	}

.home-light .dash2-cost {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 7px 0;
	border-top: 1px solid var(--h-border);
	font-size: 12.5px;
}

	.home-light .dash2-cost .nm {
		color: var(--h-accent-dark);
		font-weight: 700;
	}

	.home-light .dash2-cost .c {
		font-weight: 700;
		color: var(--h-ink);
	}

.home-light .dash2-usage {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.home-light .dash2-use .top {
	display: flex;
	justify-content: space-between;
	font-size: 11.5px;
	color: var(--h-body);
	margin-bottom: 5px;
}

.home-light .dash2-use .badge {
	font-weight: 800;
	color: var(--h-accent-dark);
}

.home-light .dash2-bar {
	height: 6px;
	border-radius: 999px;
	background: var(--h-eggshell);
	overflow: hidden;
}

	.home-light .dash2-bar span {
		display: block;
		height: 100%;
		border-radius: 999px;
		background: linear-gradient(90deg, var(--h-accent), #14b8a6);
		transition: filter .2s ease;
	}

.home-light .dash2-use:hover .dash2-bar span {
	filter: brightness(1.08) saturate(1.1);
}

.home-light .dash2-bar.warn span {
	background: linear-gradient(90deg, #f59e0b, #f97316);
}

@media (max-width: 900px) {
	.home-light .dash2-stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.home-light .dash2-panels {
		grid-template-columns: 1fr;
	}
}

/* ----------------------------------------------------------------------------
   PRODUCT · INTEGRATIONS — Texto Core API hub + satellites
   -------------------------------------------------------------------------- */
.home-light .int-hub {
	position: relative;
	width: min(440px, 94%);
	aspect-ratio: 1;
	margin: 0 auto;
}

.home-light .int-lines {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

	.home-light .int-lines line {
		stroke: rgba(0,200,150,.35);
		stroke-width: 2;
		stroke-dasharray: 5 6;
		animation: int-flow 1.1s linear infinite;
	}

@keyframes int-flow {
	to {
		stroke-dashoffset: -22;
	}
}

.home-light .int-core {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	width: 124px;
	height: 124px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0c8e74, #075e54);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 22px 50px -14px rgba(0,150,110,.65);
}

	.home-light .int-core .b {
		font-size: 19px;
		font-weight: 800;
		letter-spacing: .04em;
	}

	.home-light .int-core .s {
		font-size: 9px;
		letter-spacing: .18em;
		text-transform: uppercase;
		opacity: .85;
		margin-top: 3px;
	}

	.home-light .int-core::before {
		content: "";
		position: absolute;
		inset: -16px;
		border-radius: 50%;
		border: 1px solid rgba(0,200,150,.4);
		animation: int-pulse 2.6s ease-out infinite;
	}

@keyframes int-pulse {
	0% {
		transform: scale(.85);
		opacity: .6;
	}

	100% {
		transform: scale(1.55);
		opacity: 0;
	}
}

.home-light .int-sat {
	position: absolute;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 76px;
	height: 76px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--h-border);
	box-shadow: var(--h-shadow-md);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	animation: home-float 5s ease-in-out infinite;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

	.home-light .int-sat:hover {
		box-shadow: var(--h-shadow-lg);
		border-color: rgba(0,200,150,.45);
	}

	.home-light .int-sat svg {
		color: var(--h-accent-dark);
	}

	.home-light .int-sat .l {
		font-size: 10.5px;
		font-weight: 700;
		color: var(--h-ink);
	}

	.home-light .int-sat.s0 {
		top: 7%;
		left: 50%;
	}

	.home-light .int-sat.s1 {
		top: 28%;
		left: 90%;
		animation-delay: .4s;
	}

	.home-light .int-sat.s2 {
		top: 72%;
		left: 90%;
		animation-delay: .8s;
	}

	.home-light .int-sat.s3 {
		top: 93%;
		left: 50%;
		animation-delay: 1.2s;
	}

	.home-light .int-sat.s4 {
		top: 72%;
		left: 10%;
		animation-delay: 1.6s;
	}

	.home-light .int-sat.s5 {
		top: 28%;
		left: 10%;
		animation-delay: 2s;
	}

/* ----------------------------------------------------------------------------
   PRODUCT · BROADCAST — one template fans out to many recipients
   -------------------------------------------------------------------------- */
.home-light .bc-stage {
	width: min(460px, 96%);
	margin: 0 auto;
}

.home-light .bc-card {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 18px;
	box-shadow: var(--h-shadow-lg);
	padding: 20px;
}

.home-light .bc-template {
	background: var(--h-eggshell);
	border: 1px solid var(--h-border);
	border-radius: 12px;
	padding: 12px 13px;
}

.home-light .bc-template-head {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--h-accent-dark);
	margin-bottom: 9px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.home-light .bc-bubble {
	background: #d9fdd3;
	border-radius: 10px;
	border-top-left-radius: 3px;
	padding: 9px 11px;
	font-size: 13px;
	line-height: 1.45;
	color: #111b21;
}

.home-light .bc-send-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 16px 2px 12px;
	font-size: 12.5px;
	color: var(--h-muted);
}

.home-light .bc-count {
	font-size: 19px;
	font-weight: 800;
	color: var(--h-accent-dark);
}

.home-light .bc-recipients {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.home-light .bc-rcpt {
	display: flex;
	align-items: center;
	gap: 10px;
}

.home-light .bc-av {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	flex-shrink: 0;
	background: var(--h-accent-light);
	color: var(--h-accent-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11.5px;
	font-weight: 700;
}

.home-light .bc-rcpt .nm {
	flex: 1;
	font-size: 13px;
	font-weight: 600;
	color: var(--h-ink);
}

.home-light .bc-tick {
	color: #8696a0;
	font-weight: 700;
	font-size: 13px;
	transition: color .3s ease;
}

	.home-light .bc-tick.read {
		color: #53bdeb;
	}

.home-light .bc-more {
	font-size: 12px;
	color: var(--h-muted);
	padding-left: 40px;
}

.home-light .bc-progress {
	height: 7px;
	background: var(--h-eggshell);
	border-radius: 999px;
	margin-top: 16px;
	overflow: hidden;
}

	.home-light .bc-progress span {
		display: block;
		height: 100%;
		width: 0;
		background: linear-gradient(90deg, var(--h-accent), #14b8a6);
		border-radius: 999px;
	}

/* ----------------------------------------------------------------------------
   PRODUCT · AI CHATBOTS — quick-reply buttons inside the phone demo
   -------------------------------------------------------------------------- */
.home-light .wa-qr-stack {
	align-self: flex-start;
	width: 76%;
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 2px;
}

.home-light .wa-qr {
	background: #fff;
	border: 1px solid #e5e7eb;
	color: #00a884;
	text-align: center;
	font-size: 12.5px;
	font-weight: 600;
	padding: 8px;
	border-radius: 8px;
	box-shadow: 0 1px 1px rgba(0,0,0,.1);
}

/* ----------------------------------------------------------------------------
   PRODUCT · WHATSAPP BUSINESS API — request -> 200 OK -> delivered
   -------------------------------------------------------------------------- */
.home-light .api-stage {
	position: relative;
	width: min(470px, 96%);
	margin: 0 auto;
}

.home-light .api-code {
	background: #0f1729;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--h-shadow-lg);
}

.home-light .api-code-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 15px;
	background: rgba(255,255,255,.04);
	border-bottom: 1px solid rgba(255,255,255,.07);
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 12px;
	color: #9fb0c3;
}

	.home-light .api-code-head .dots {
		display: inline-flex;
		gap: 5px;
	}

		.home-light .api-code-head .dots i {
			width: 9px;
			height: 9px;
			border-radius: 50%;
		}

.home-light .api-method {
	color: #22c55e;
	font-weight: 700;
}

.home-light .api-code-body {
	padding: 16px 18px;
	min-height: 196px;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 12.5px;
	line-height: 1.75;
	color: #cdd6e2;
}

.home-light .api-line {
	white-space: pre;
}

	.home-light .api-line .k {
		color: #79c0ff;
	}

	.home-light .api-line .s {
		color: #ffd479;
	}

.home-light .api-resp {
	margin-top: 12px;
	color: #8aa0b6;
}

	.home-light .api-resp .ok {
		color: #22c55e;
		font-weight: 700;
		border: 1px solid rgba(34,197,94,.35);
		border-radius: 6px;
		padding: 1px 7px;
		margin-right: 6px;
	}

.home-light .api-deliver {
	position: absolute;
	right: -14px;
	bottom: -22px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 14px;
	padding: 10px 14px;
	box-shadow: var(--h-shadow-lg);
	z-index: 2;
}

	.home-light .api-deliver .ic {
		width: 32px;
		height: 32px;
		border-radius: 9px;
		flex-shrink: 0;
		background: var(--h-accent-light);
		color: var(--h-accent-dark);
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.home-light .api-deliver .t {
		font-size: 12.5px;
		font-weight: 700;
		color: var(--h-ink);
		display: block;
	}

	.home-light .api-deliver .m {
		font-size: 11px;
		color: var(--h-muted);
		display: inline-flex;
		align-items: center;
		gap: 5px;
	}

	.home-light .api-deliver .ticks {
		color: #8696a0;
		font-weight: 700;
		transition: color .3s ease;
	}

		.home-light .api-deliver .ticks.read {
			color: #53bdeb;
		}

/* Static badge row (security / compliance) */
.home-light .home-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.home-light .home-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 999px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	color: var(--h-ink);
	box-shadow: var(--h-shadow-sm);
}

	.home-light .home-badge svg {
		color: var(--h-accent-dark);
	}

/* ----------------------------------------------------------------------------
   PARTNERS — deal pipeline hero (Lead -> Qualified -> Won + commission)
   -------------------------------------------------------------------------- */
.home-light .pipe-stage {
	position: relative;
	width: min(470px, 96%);
	margin: 0 auto;
}

.home-light .pipe-board {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 18px;
	padding: 14px;
	box-shadow: var(--h-shadow-lg);
}

.home-light .pipe-col {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.home-light .pipe-col-h {
	font-size: 10.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--h-muted);
	display: flex;
	align-items: center;
	gap: 6px;
}

	.home-light .pipe-col-h::before {
		content: "";
		width: 7px;
		height: 7px;
		border-radius: 50%;
		background: var(--h-border);
	}

.home-light .pipe-col:nth-child(1) .pipe-col-h::before {
	background: #9aa5b1;
}

.home-light .pipe-col:nth-child(2) .pipe-col-h::before {
	background: #f5b301;
}

.home-light .pipe-col:nth-child(3) .pipe-col-h::before {
	background: var(--h-accent);
}

.home-light .pipe-slot {
	min-height: 50px;
	border-radius: 10px;
	border: 1px dashed var(--h-border);
}

.home-light .pipe-card {
	background: var(--h-eggshell);
	border: 1px solid var(--h-border);
	border-radius: 10px;
	padding: 9px 10px;
}

	.home-light .pipe-card .nm {
		font-size: 12px;
		font-weight: 700;
		color: var(--h-ink);
	}

	.home-light .pipe-card .amt {
		font-size: 10.5px;
		color: var(--h-muted);
		margin-top: 2px;
	}

.home-light .pipe-deal {
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	border: 1.5px solid var(--h-accent);
	border-radius: 10px;
	padding: 9px 10px;
	box-shadow: 0 12px 26px -8px rgba(0,200,150,.5);
	z-index: 3;
	will-change: transform;
}

	.home-light .pipe-deal .nm {
		font-size: 12px;
		font-weight: 700;
		color: var(--h-ink);
	}

	.home-light .pipe-deal .amt {
		font-size: 10.5px;
		color: var(--h-accent-dark);
		font-weight: 600;
		margin-top: 2px;
	}

.home-light .pipe-commission {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(120deg, var(--h-accent-light) 0%, #ffffff 70%);
	border: 1px solid rgba(0,200,150,.25);
	border-radius: 12px;
	padding: 13px 18px;
	font-size: 13px;
	font-weight: 600;
	color: var(--h-body);
}

	.home-light .pipe-commission b {
		font-size: 19px;
		font-weight: 800;
		color: var(--h-accent-dark);
	}

/* ----------------------------------------------------------------------------
   PRICING / OFFER CARDS  (Partner models, plans)
   -------------------------------------------------------------------------- */
.home-light .home-price-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius-lg);
	padding: 32px;
	box-shadow: var(--h-shadow-sm);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

	.home-light .home-price-card:hover {
		transform: translateY(-4px);
		box-shadow: var(--h-shadow-lg);
	}

	.home-light .home-price-card.featured {
		border-color: var(--h-accent);
		box-shadow: 0 22px 50px -18px rgba(0,200,150,.45);
	}

	.home-light .home-price-card h3 {
		font-size: 22px;
		font-weight: 700;
		margin-bottom: 10px;
	}

	.home-light .home-price-card .desc {
		font-size: 14px;
		color: var(--h-body);
		line-height: 1.6;
		flex: 1;
		margin: 0 0 22px;
	}

.home-light .home-price-list {
	list-style: none;
	padding: 0;
	margin: 0 0 26px;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

	.home-light .home-price-list li {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 14px;
		color: var(--h-ink);
	}

		.home-light .home-price-list li::before {
			content: "";
			width: 6px;
			height: 6px;
			border-radius: 50%;
			background: var(--h-accent);
			flex-shrink: 0;
		}

.home-light .home-price-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--h-accent);
	color: #fff;
	white-space: nowrap;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 999px;
}

/* ----------------------------------------------------------------------------
   CAREERS — "you're hired" chat hero
   -------------------------------------------------------------------------- */
.home-light .hire-stage {
	position: relative;
	width: min(400px, 94%);
	margin: 0 auto;
}

.home-light .hire-chat {
	position: relative;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 22px;
	box-shadow: var(--h-shadow-lg);
	overflow: hidden;
	z-index: 1;
}

.home-light .hire-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 16px;
	background: #008069;
	color: #fff;
}

	.home-light .hire-head .av {
		width: 38px;
		height: 38px;
		border-radius: 50%;
		background: linear-gradient(135deg, #25d366, #128c7e);
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.home-light .hire-head .nm {
		font-size: 15px;
		font-weight: 700;
		line-height: 1.1;
	}

	.home-light .hire-head .st {
		font-size: 11.5px;
		color: rgba(255,255,255,.8);
	}

.home-light .hire-body {
	min-height: 310px;
	padding: 16px 14px;
	display: flex;
	flex-direction: column;
	gap: 9px;
	justify-content: flex-end;
	background-color: #efe7de;
	background-image: radial-gradient(rgba(0,0,0,.04) 1px, transparent 1px);
	background-size: 22px 22px;
}

.home-light .hire-msg {
	display: flex;
	max-width: 100%;
}

	.home-light .hire-msg.in {
		justify-content: flex-start;
	}

	.home-light .hire-msg.out {
		justify-content: flex-end;
	}

.home-light .hire-bubble {
	max-width: 84%;
	padding: 8px 12px;
	border-radius: 12px;
	font-size: 13.5px;
	line-height: 1.42;
	color: #111b21;
	box-shadow: 0 1px 1px rgba(0,0,0,.12);
}

.home-light .hire-msg.in .hire-bubble {
	background: #fff;
	border-top-left-radius: 3px;
}

.home-light .hire-msg.out .hire-bubble {
	background: #d9fdd3;
	border-top-right-radius: 3px;
}

.home-light .hire-bubble.big {
	font-size: 16px;
	font-weight: 800;
	color: #075e54;
}

.home-light .hire-typing .hire-bubble {
	display: inline-flex;
	gap: 4px;
	padding: 11px 12px;
}

.home-light .hire-typing i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #9aa5b1;
	display: block;
	animation: home-bounce 1.2s infinite ease-in-out;
}

	.home-light .hire-typing i:nth-child(2) {
		animation-delay: .15s;
	}

	.home-light .hire-typing i:nth-child(3) {
		animation-delay: .3s;
	}

.home-light .hire-confetti {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 3;
}

	.home-light .hire-confetti i {
		position: absolute;
		width: 9px;
		height: 9px;
		border-radius: 2px;
		will-change: transform;
	}

.home-light .hire-chip {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 999px;
	padding: 7px 13px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--h-ink);
	box-shadow: var(--h-shadow-lg);
	animation: home-float 5s ease-in-out infinite;
}

	.home-light .hire-chip .d {
		width: 7px;
		height: 7px;
		border-radius: 50%;
		background: var(--h-accent);
	}

	.home-light .hire-chip.h1 {
		top: -16px;
		left: -10px;
	}

	.home-light .hire-chip.h2 {
		top: 38%;
		right: -22px;
		animation-delay: 1s;
	}

	.home-light .hire-chip.h3 {
		bottom: 10%;
		left: -18px;
		animation-delay: 2s;
	}

/* ----------------------------------------------------------------------------
   CAREERS  (role rows + numbered values)
   -------------------------------------------------------------------------- */
.home-light .home-role {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius);
	padding: 20px 24px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

	.home-light .home-role:hover {
		transform: translateY(-2px);
		box-shadow: var(--h-shadow-md);
		border-color: rgba(0,200,150,.45);
	}

	.home-light .home-role h3 {
		font-size: 18px;
		font-weight: 700;
		margin-bottom: 6px;
	}

.home-light .home-role-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 13px;
	color: var(--h-muted);
}

	.home-light .home-role-meta span {
		display: inline-flex;
		align-items: center;
		gap: 6px;
	}

	.home-light .home-role-meta svg {
		color: var(--h-accent-dark);
	}

.home-light .home-vnum {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	height: 100%;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius);
	padding: 22px;
	transition: box-shadow .2s ease, border-color .2s ease;
}

	.home-light .home-vnum:hover {
		box-shadow: var(--h-shadow-sm);
		border-color: rgba(0,200,150,.4);
	}

.home-light .home-vnum-n {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--h-accent-light);
	color: var(--h-accent-dark);
	font-weight: 800;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-light .home-vnum h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 4px;
}

.home-light .home-vnum p {
	font-size: 14px;
	color: var(--h-body);
	margin: 0;
	line-height: 1.55;
}

/* ----------------------------------------------------------------------------
   ABOUT PAGE
   -------------------------------------------------------------------------- */
/* Hero — rotating world globe: dotted continents + country-to-country arcs
   with message pulses. Land/arcs/cities are built by texto-home.js; the
   sphere and meridian grid double as the no-JS fallback. */
.home-light .about-globe-wrap {
	position: relative;
	width: min(460px, 96%);
	margin: 0 auto;
	perspective: 1100px;
	cursor: grab;
}

	.home-light .about-globe-wrap.is-dragging {
		cursor: grabbing;
	}

.home-light .ag-svg {
	width: 100%;
	height: auto;
	overflow: visible;
	display: block;
	will-change: transform;
}

.home-light .ag-sphere {
	fill: url(#agSphere);
	stroke: rgba(0,200,150,.22);
	stroke-width: 1;
}

.home-light .ag-grid {
	fill: none;
	stroke: rgba(16,24,40,.09);
	stroke-width: 1;
}
/* Dense land dots render as 3 depth-bucketed paths of zero-length round-cap
   strokes — far dots smaller/fainter, near dots bigger/darker for depth. */
.home-light #ag-land path {
	fill: none;
	stroke: #12463a;
	stroke-linecap: round;
}

.home-light .ag-land-b0 {
	stroke-width: 1.7;
	opacity: .22;
}

.home-light .ag-land-b1 {
	stroke-width: 2.2;
	opacity: .38;
}

.home-light .ag-land-b2 {
	stroke-width: 2.7;
	opacity: .55;
}

.home-light .ag-arc {
	fill: none;
	stroke: var(--h-accent);
	stroke-width: 1.8;
	stroke-linecap: round;
	filter: drop-shadow(0 0 3px rgba(0,200,150,.5));
}

.home-light .ag-pulse {
	fill: var(--h-accent);
	filter: drop-shadow(0 0 4px rgba(0,200,150,.85));
}

.home-light .ag-ping {
	fill: none;
	stroke: var(--h-accent);
	stroke-width: 1.5;
	opacity: 0;
}

.home-light .about-globe-badge {
	position: absolute;
	left: 4%;
	bottom: 6%;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 12px;
	padding: 10px 14px;
	box-shadow: var(--h-shadow-lg);
	font-size: 13px;
	font-weight: 600;
	color: var(--h-body);
}

	.home-light .about-globe-badge .dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: #22c55e;
		box-shadow: 0 0 0 4px rgba(34,197,94,.15);
	}

	.home-light .about-globe-badge b {
		color: var(--h-ink);
		font-weight: 800;
	}

/* Hero — global network orbit visual (legacy; still used by some pages) */
.home-light .about-orbit {
	position: relative;
	width: min(440px, 92%);
	aspect-ratio: 1;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.home-light .about-orbit::before,
	.home-light .about-orbit::after {
		content: "";
		position: absolute;
		border-radius: 50%;
	}

	.home-light .about-orbit::before {
		inset: 4%;
		border: 1px dashed rgba(0,200,150,.35);
	}

	.home-light .about-orbit::after {
		inset: 24%;
		border: 1px solid var(--h-border);
	}

.home-light .about-glow {
	position: absolute;
	width: 56%;
	height: 56%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,200,150,.20), transparent 70%);
}

.home-light .about-core {
	position: relative;
	z-index: 2;
	width: 108px;
	height: 108px;
	border-radius: 30px;
	background: linear-gradient(135deg, #25d366, #0c8e74);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 26px 55px -14px rgba(0,200,150,.55);
}

.home-light .about-node {
	position: absolute;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--h-accent);
	box-shadow: 0 4px 10px rgba(16,24,40,.12);
}

	.home-light .about-node.n1 {
		top: 9%;
		left: 68%;
	}

	.home-light .about-node.n2 {
		top: 30%;
		left: 91%;
	}

	.home-light .about-node.n3 {
		top: 73%;
		left: 82%;
	}

	.home-light .about-node.n4 {
		top: 82%;
		left: 24%;
	}

	.home-light .about-node.n5 {
		top: 33%;
		left: 7%;
	}

.home-light .about-chip {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 12px;
	padding: 9px 12px;
	box-shadow: var(--h-shadow-lg);
	font-size: 12.5px;
	font-weight: 600;
	color: var(--h-ink);
	white-space: nowrap;
	animation: home-float 5s ease-in-out infinite;
}

	.home-light .about-chip .dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: #22c55e;
	}

	.home-light .about-chip.c1 {
		top: 2%;
		left: 0;
	}

	.home-light .about-chip.c2 {
		top: 45%;
		left: 62%;
		animation-delay: 1s;
	}

	.home-light .about-chip.c3 {
		bottom: 4%;
		left: 8%;
		animation-delay: 2s;
	}

/* Who-we-are value cards */
.home-light .about-value {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius-lg);
	padding: 28px 20px;
	text-align: center;
	box-shadow: var(--h-shadow-sm);
	height: 100%;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

	.home-light .about-value:hover {
		transform: translateY(-4px);
		box-shadow: var(--h-shadow-md);
		border-color: rgba(0,200,150,.4);
	}

	.home-light .about-value .home-card-ic {
		margin: 0 auto 14px;
	}

	.home-light .about-value h3 {
		font-size: 16px;
		font-weight: 700;
	}

	.home-light .about-value p {
		font-size: 13px;
		line-height: 1.5;
		color: var(--h-body);
		margin: 6px 0 0;
	}

/* Soft accent panel + headline stat (Contact "why talk to us") */
.home-light .home-soft-panel {
	background: linear-gradient(120deg, var(--h-accent-light) 0%, #ffffff 70%);
	border: 1px solid rgba(0,200,150,.22);
	border-radius: var(--h-radius-lg);
	padding: clamp(28px, 4vw, 48px);
}

	.home-light .home-soft-panel .home-checks {
		margin-top: 0;
	}

.home-light .home-bigstat {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius-lg);
	padding: 36px;
	text-align: center;
	box-shadow: var(--h-shadow-md);
}

	.home-light .home-bigstat .num {
		font-size: 48px;
		font-weight: 800;
		color: var(--h-accent-dark);
		line-height: 1;
		letter-spacing: -.02em;
	}

	.home-light .home-bigstat .cap {
		font-size: 14px;
		color: var(--h-body);
		margin-top: 10px;
	}

/* Inline icon-row contact list */
.home-light .home-contact-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

	.home-light .home-contact-row .ic {
		width: 42px;
		height: 42px;
		border-radius: 12px;
		flex-shrink: 0;
		background: var(--h-accent-light);
		color: var(--h-accent-dark);
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.home-light .home-contact-row .lbl {
		font-size: 12.5px;
		color: var(--h-muted);
	}

	.home-light .home-contact-row .val {
		font-size: 15px;
		font-weight: 700;
		color: var(--h-ink);
	}

/* Vision / mission cards */
.home-light .about-vm {
	position: relative;
	overflow: hidden;
}

	.home-light .about-vm h3 {
		font-size: 22px;
		margin-bottom: 10px;
	}

	.home-light .about-vm p {
		font-size: 15.5px;
		line-height: 1.65;
		color: var(--h-body);
		margin: 0;
	}

.home-light .about-vm-art {
	position: absolute;
	top: -8px;
	right: -8px;
	color: rgba(0,200,150,.10);
	pointer-events: none;
}

/* Leadership */
.home-light .about-leaders {
	display: flex;
	justify-content: center;
	gap: 36px;
	flex-wrap: wrap;
}

.home-light .about-leader {
	text-align: center;
}

.home-light .about-leader-av {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 18px;
	background: var(--h-accent-light);
	color: var(--h-accent-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 38px;
	font-weight: 800;
	border: 1px solid rgba(0,200,150,.25);
}

.home-light .about-leader-nm {
	font-size: 18px;
	font-weight: 700;
	color: var(--h-ink);
}

.home-light .about-leader-rl {
	font-size: 14px;
	color: var(--h-accent-dark);
	font-weight: 600;
	margin-top: 4px;
}

/* Industry tiles */
.home-light .about-industry {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius);
	padding: 24px 14px;
	height: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

	.home-light .about-industry svg {
		color: var(--h-muted);
		transition: color .25s ease, transform .25s ease;
	}

	.home-light .about-industry span {
		font-weight: 600;
		font-size: 14px;
		color: var(--h-ink);
	}

	.home-light .about-industry:hover {
		transform: translateY(-4px);
		box-shadow: var(--h-shadow-md);
		border-color: rgba(0,200,150,.4);
	}

		.home-light .about-industry:hover svg {
			color: var(--h-accent-dark);
			transform: scale(1.1);
		}

/* Commitment cards */
.home-light .about-commit {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: var(--h-radius-lg);
	padding: 30px;
	text-align: center;
	height: 100%;
	box-shadow: var(--h-shadow-sm);
}

.home-light .about-commit-bar {
	display: block;
	width: 44px;
	height: 4px;
	border-radius: 99px;
	background: var(--h-accent);
	margin: 0 auto 18px;
}

.home-light .about-commit h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

.home-light .about-commit p {
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--h-body);
	margin: 0;
}

/* ----------------------------------------------------------------------------
   SCROLL REVEAL  (only hidden when JS is active → no FOUC if JS disabled)
   -------------------------------------------------------------------------- */
.home-js .home-light [data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	will-change: transform, opacity;
}

.home-js .home-light [data-reveal="left"] {
	transform: translateX(-32px);
}

.home-js .home-light [data-reveal="right"] {
	transform: translateX(32px);
}

.home-js .home-light [data-reveal="fade"] {
	transform: none;
}

/* Hero pieces are driven by the intro timeline (not the scroll batch); pre-hide
   them too so there's no flash before the deferred script boots. */
.home-js .home-light #hero .home-pill,
.home-js .home-light #hero-title,
.home-js .home-light #hero-sub,
.home-js .home-light #hero-cta,
.home-js .home-light #hero-trust,
.home-js .home-light #hero-stats,
.home-js .home-light #hero .home-hero-visual {
	opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
	.home-js .home-light [data-reveal] {
		opacity: 1 !important;
		transform: none !important;
	}

	.home-js .home-light #hero .home-pill,
	.home-js .home-light #hero-title,
	.home-js .home-light #hero-sub,
	.home-js .home-light #hero-cta,
	.home-js .home-light #hero-trust,
	.home-js .home-light #hero-stats,
	.home-js .home-light .home-hero-visual {
		opacity: 1 !important;
		transform: none !important;
	}

	.home-light .home-float-badge,
	.home-light .about-chip,
	.home-light .int-sat,
	.home-light .int-lines line,
	.home-light .int-core::before,
	.home-light .wa-typing i,
	.home-light .wa-wave i {
		animation: none !important;
	}

	.home-light .home-phone-glare {
		display: none;
	}
}

/* ----------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
	.home-light .home-steps-line {
		display: block;
	}
}

@media (max-width: 1024px) {
	.home-light .home-grid-5 {
		grid-template-columns: repeat(3, 1fr);
	}

	.home-light .home-grid-6 {
		grid-template-columns: repeat(3, 1fr);
	}

	.home-light .home-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.home-light .home-bento {
		grid-template-columns: 1fr;
	}

	.home-light .home-card-feature-main > p {
		max-width: none;
	}
}

@media (max-width: 900px) {
	.home-light .home-hero-grid,
	.home-light .home-split {
		grid-template-columns: 1fr;
	}

	.home-light .home-hero {
		padding-top: 130px;
	}

	.home-light .home-hero-visual {
		order: -1;
	}

	.home-light .home-float-badge {
		display: none;
	}

	.home-light .home-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.home-light .home-steps {
		gap: 36px;
	}

	.home-light .home-steps-line {
		display: none;
	}
}

@media (max-width: 640px) {
	.home-light .home-section {
		padding: 64px 0;
	}

	.home-light .home-grid-2,
	.home-light .home-grid-3,
	.home-light .home-grid-4,
	.home-light .home-grid-5,
	.home-light .home-grid-6,
	.home-light .home-bento,
	.home-light .home-bento-rest,
	.home-light .home-checks {
		grid-template-columns: 1fr;
	}

	.home-light .home-cta-band {
		padding: 26px 24px;
	}

	.home-light .home-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}

	.home-light .home-stat {
		padding: 14px 10px;
	}

	.home-light .home-stat-num {
		font-size: 22px;
	}

	.home-light .home-container {
		padding: 0 18px;
	}

	.home-light .home-marquee-item {
		font-size: 13px;
		padding: 10px 15px;
	}
}

/* ============================================================
   SOLUTIONS · E-commerce interactive template switcher
   ============================================================ */
.home-light .ecom-stage {
	display: flex;
	align-items: center;
	gap: 22px;
	justify-content: center;
}

	.home-light .ecom-stage .home-phone-stage {
		flex: 0 0 auto;
	}

.home-light .ecom-templates {
	display: flex;
	flex-direction: column;
	gap: 13px;
	width: 216px;
	flex: 0 0 auto;
}

.home-light .ecom-tpl-h {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--h-muted);
	margin-bottom: 2px;
}

.home-light .ecom-tpl {
	text-align: left;
	cursor: pointer;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 16px;
	padding: 13px 14px;
	display: flex;
	gap: 11px;
	align-items: flex-start;
	box-shadow: var(--h-shadow-sm);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
	font-family: inherit;
	color: var(--h-ink);
	width: 100%;
}

	.home-light .ecom-tpl:hover {
		transform: translateY(-2px);
		box-shadow: var(--h-shadow-md);
	}

	.home-light .ecom-tpl.is-active {
		border-color: var(--h-accent);
		box-shadow: 0 0 0 2px rgba(0,200,150,.22), var(--h-shadow-md);
	}

.home-light .ecom-tpl-ic {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	background: var(--h-accent-light);
	color: var(--h-accent-dark);
	flex: 0 0 auto;
}

.home-light .ecom-tpl.is-active .ecom-tpl-ic {
	background: var(--h-accent);
	color: #fff;
}

.home-light .ecom-tpl-t {
	display: block;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.2;
}

.home-light .ecom-tpl-d {
	display: block;
	font-size: 12px;
	color: var(--h-muted);
	margin-top: 3px;
	line-height: 1.35;
}
/* product-card bubble inside the phone */
.home-light .wa-bubble-card {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 7px !important;
	width: 150px;
}

.home-light .wa-card-img {
	display: block;
	height: 82px;
	border-radius: 9px;
	background: linear-gradient(135deg, #e6efe9, #cdeede);
	position: relative;
}

	.home-light .wa-card-img::after {
		content: "";
		position: absolute;
		inset: 0;
		margin: auto;
		width: 30px;
		height: 30px;
		background: var(--h-accent-dark);
		opacity: .35;
		-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z'/%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E") center/contain no-repeat;
		mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z'/%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E") center/contain no-repeat;
	}

.home-light .wa-card-n {
	font-weight: 700;
	font-size: 13px;
	color: #111b21;
}

.home-light .wa-card-p {
	font-size: 12px;
	color: var(--h-accent-dark);
	font-weight: 700;
}

@media (max-width: 1100px) {
	.home-light .ecom-templates {
		width: 184px;
	}
}

@media (max-width: 900px) {
	.home-light .ecom-stage {
		flex-direction: column;
	}

	.home-light .ecom-templates {
		flex-direction: row;
		width: 100%;
		max-width: 420px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.home-light .ecom-tpl {
		width: calc(50% - 7px);
	}

	.home-light .ecom-tpl-h {
		display: none;
	}
}

/* ============================================================
   SOLUTIONS · Logistics live-tracking card (light)
   ============================================================ */
.home-light .trk-card {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 22px;
	padding: 20px;
	box-shadow: var(--h-shadow-lg);
	width: min(430px, 100%);
	margin: 0 auto;
}

.home-light .trk-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--h-border);
	margin-bottom: 16px;
}

	.home-light .trk-head .lbl {
		font-size: 12px;
		color: var(--h-muted);
	}

	.home-light .trk-head .big {
		font-size: 24px;
		font-weight: 800;
		color: var(--h-ink);
	}

.home-light .trk-live {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--h-accent-dark);
	background: var(--h-accent-light);
	padding: 6px 11px;
	border-radius: 999px;
}

	.home-light .trk-live i {
		width: 7px;
		height: 7px;
		border-radius: 50%;
		background: var(--h-accent);
		animation: trk-pulse 1.6s ease-in-out infinite;
	}

@keyframes trk-pulse {
	0%,100% {
		opacity: 1;
	}

	50% {
		opacity: .25;
	}
}

.home-light .trk-map {
	position: relative;
	height: 150px;
	border-radius: 14px;
	background: radial-gradient(circle at 20% 30%, rgba(0,200,150,.10), transparent 45%), linear-gradient(135deg, #eef5f1, #e3f6ee);
	border: 1px solid var(--h-border);
	overflow: hidden;
	margin-bottom: 16px;
}

	.home-light .trk-map svg.route {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
	}

.home-light .trk-note {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 12px;
	padding: 10px 12px;
	display: flex;
	gap: 10px;
	align-items: flex-start;
	box-shadow: var(--h-shadow-md);
}

.home-light .trk-note-ic {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
}

.home-light .trk-note .wa {
	font-size: 11px;
	font-weight: 700;
	color: #128c7e;
	margin-bottom: 2px;
}

.home-light .trk-note .msg {
	font-size: 12px;
	color: var(--h-ink-2);
	line-height: 1.35;
}

.home-light .trk-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 12px;
	border-radius: 12px;
	background: var(--h-eggshell);
	border: 1px solid var(--h-border);
	margin-bottom: 8px;
}

	.home-light .trk-row:last-child {
		margin-bottom: 0;
	}

	.home-light .trk-row .l {
		display: flex;
		align-items: center;
		gap: 11px;
	}

.home-light .trk-badge {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	display: grid;
	place-items: center;
	font-size: 10px;
	font-weight: 800;
}

.home-light .trk-id {
	font-size: 13px;
	font-weight: 700;
	color: var(--h-ink);
}

.home-light .trk-st {
	font-size: 12px;
	font-weight: 600;
}

.home-light .trk-time {
	font-size: 11px;
	color: var(--h-muted);
}

/* File attachment bubble (Healthcare lab report, etc.) */
.home-light .wa-bubble-file {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 9px 11px !important;
}

.home-light .wa-file-ic {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: #fde8e8;
	color: #dc2626;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
}

.home-light .wa-file-n {
	display: block;
	font-weight: 700;
	font-size: 12px;
	color: #111b21;
}

.home-light .wa-file-m {
	display: block;
	font-size: 11px;
	color: #667781;
}

/* ============================================================
   AUTH PAGES · signup / login (light)
   ============================================================ */
.home-light .su-page {
	min-height: 100vh;
	overflow-x: hidden;
}

.home-light .su-card {
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 22px;
	box-shadow: var(--h-shadow-lg);
	padding: 26px;
}

@media (min-width: 768px) {
	.home-light .su-card {
		padding: 40px;
	}
}

.home-light .su-ink {
	color: var(--h-ink) !important;
}

.home-light .su-ink2 {
	color: var(--h-ink-2) !important;
}

.home-light .su-muted {
	color: var(--h-muted) !important;
}

.home-light .su-faint {
	color: #9aa3af !important;
}

.home-light .su-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--h-ink-2);
	margin-bottom: 8px;
}

.home-light .su-heading {
	font-size: 20px;
	font-weight: 800;
	color: var(--h-ink);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.home-light .su-divider {
	border-top: 1px solid var(--h-border) !important;
}

.home-light .su-border {
	border-color: var(--h-border) !important;
}

.home-light .su-input {
	width: 100%;
	padding: 12px 15px;
	background: #fff;
	border: 1px solid var(--h-border);
	border-radius: 12px;
	color: var(--h-ink);
	font-size: 14.5px;
	font-family: inherit;
	transition: border-color .15s ease, box-shadow .15s ease;
}

	.home-light .su-input::placeholder {
		color: #9aa3af;
	}

	.home-light .su-input:focus {
		outline: none;
		border-color: var(--h-accent);
		box-shadow: 0 0 0 3px rgba(0,200,150,.15);
	}

.home-light textarea.su-input {
	resize: none;
}

.home-light select.su-input {
	appearance: auto;
}

.home-light .su-input-auto {
	width: auto;
	flex: 0 0 auto;
}

.home-light .su-check {
	width: 18px;
	height: 18px;
	accent-color: var(--h-accent);
	cursor: pointer;
	margin-top: 2px;
}

.home-light .su-btn-primary {
	padding: 13px 22px;
	background: var(--h-accent);
	color: #fff !important;
	border: none;
	border-radius: 12px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0,200,150,.28);
	transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}

	.home-light .su-btn-primary:hover:not(:disabled) {
		background: var(--h-accent-dark);
		transform: translateY(-1px);
	}

	.home-light .su-btn-primary:disabled {
		opacity: .5;
		cursor: not-allowed;
		box-shadow: none;
	}

.home-light .su-btn-ghost {
	padding: 13px 22px;
	background: #fff;
	color: var(--h-ink) !important;
	border: 1px solid var(--h-border);
	border-radius: 12px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	text-align: center;
	transition: background .15s ease, border-color .15s ease;
}

	.home-light .su-btn-ghost:hover {
		background: var(--h-eggshell);
		border-color: #d0d5dd;
	}

.home-light .su-btn-wa {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	background: #25D366;
	color: #fff !important;
	border: none;
	border-radius: 12px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: background .15s ease;
}

	.home-light .su-btn-wa:hover:not(:disabled) {
		background: #1da851;
	}

	.home-light .su-btn-wa:disabled {
		opacity: .6;
		cursor: not-allowed;
	}

.home-light .su-connect-box {
	background: var(--h-accent-light);
	border: 1px solid rgba(0,200,150,.22);
	border-radius: 16px;
}

.home-light .su-input-ic {
	padding-left: 42px;
}

.home-light .su-inwrap {
	position: relative;
}

	.home-light .su-inwrap .su-in-icon {
		position: absolute;
		left: 14px;
		top: 50%;
		transform: translateY(-50%);
		color: #9aa3af;
		pointer-events: none;
		display: grid;
		place-items: center;
	}
