/**
 * A2P Communications Theme Core Design System & Styling
 * Inspired by Twilio & Infobip
 */

/* ==========================================================================
   CSS Custom Properties & Reset
   ========================================================================== */
:root {
	/* Light Mode (Default Theme) - Logo Color Based */
	--bg-dark: #f8fafc;       /* Slate 50 */
	--bg-darker: #f1f5f9;     /* Slate 100 */
	--bg-card: #ffffff;       /* Pure White */
	--text-primary: #0f172a;  /* Slate 900 */
	--text-secondary: #475569;/* Slate 600 */
	--text-muted: #94a3b8;    /* Slate 400 */
	
	/* Branding accents (Air Spider colors) */
	--primary: #ec307c;       /* Logo Pink (AIR) */
	--primary-hover: #d6256b;
	--secondary: #5433e1;     /* Logo Purple/Blue (SPIDER) */
	--secondary-hover: #4526cc;
	--accent-purple: #8b5cf6;
	--accent-green: #10b981;
	--accent-pink: #ec4899;
	--accent-teal: #14b8a6;
	
	/* Borders and Glass */
	--border-color: rgba(15, 23, 42, 0.08);
	--border-glow: rgba(233, 32, 112, 0.06);
	--glass-bg: rgba(255, 255, 255, 0.85);
	--glass-border: rgba(15, 23, 42, 0.06);
	--glass-blur: blur(16px);
	
	/* Typography */
	--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-title: 'Outfit', sans-serif;
	
	/* Layout & Shadows */
	--container-width: 1280px;
	--radius-sm: 10px;
	--radius-md: 20px;
	--radius-lg: 32px;
	--shadow-glow: 0 15px 50px rgba(84, 51, 225, 0.05), 0 0 25px rgba(236, 48, 124, 0.02);
	--shadow-card: 0 12px 40px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.02);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark-theme {
	/* Dark Mode Overrides */
	--bg-dark: #070913;       /* Deep Navy Black */
	--bg-darker: #030408;     /* Rich Black */
	--bg-card: #0d0f1c;       /* Slate Navy Card */
	--text-primary: #f8fafc;  /* Slate 50 */
	--text-secondary: #94a3b8;/* Slate 300 */
	--text-muted: #64748b;    /* Slate 500 */
	
	/* Borders and Glass */
	--border-color: rgba(255, 255, 255, 0.08);
	--border-glow: rgba(233, 32, 112, 0.12);
	--glass-bg: rgba(13, 15, 28, 0.75);
	--glass-border: rgba(255, 255, 255, 0.06);
	
	/* Shadows */
	--shadow-glow: 0 0 40px rgba(233, 32, 112, 0.12);
	--shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

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

/* Global playing waves background */
.site-waves-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
	opacity: 0.95;
}

.site-wave {
	position: absolute;
	border-radius: 40%;
	width: 800px;
	height: 800px;
	filter: blur(100px);
	transform-origin: center center;
}

.site-wave-1 {
	top: 5%;
	left: -200px;
	background: radial-gradient(circle, rgba(236, 48, 124, 0.14) 0%, transparent 70%);
	animation: globalWaveFloat1 24s infinite linear;
}

.site-wave-2 {
	bottom: 5%;
	right: -200px;
	background: radial-gradient(circle, rgba(84, 51, 225, 0.14) 0%, transparent 70%);
	animation: globalWaveFloat2 32s infinite linear;
}

.site-wave-3 {
	top: 35%;
	right: 10%;
	background: radial-gradient(circle, rgba(236, 48, 124, 0.08) 0%, transparent 70%);
	animation: globalWaveFloat1 40s infinite linear reverse;
}

/* Dark Theme Ambient Glow & Wave Adjustments */
.dark-theme .site-wave-1 {
	background: radial-gradient(circle, rgba(236, 48, 124, 0.28) 0%, transparent 70%);
}

.dark-theme .site-wave-2 {
	background: radial-gradient(circle, rgba(84, 51, 225, 0.28) 0%, transparent 70%);
}

.dark-theme .site-wave-3 {
	background: radial-gradient(circle, rgba(236, 48, 124, 0.18) 0%, transparent 70%);
}

.dark-theme .site-svg-waves {
	opacity: 0.75;
}

.dark-theme .ambient-wave {
	stroke-width: 2.2px;
	filter: drop-shadow(0 0 5px rgba(236, 48, 124, 0.45)) drop-shadow(0 0 10px rgba(84, 51, 225, 0.3));
}

/* Animated linear stroke waves that drift across the page */
.site-svg-waves {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.35;
	pointer-events: none;
}

.ambient-wave {
	fill: none;
	stroke-width: 1.5px;
	stroke-linecap: round;
	transform-origin: center;
}

.ambient-wave-1 {
	stroke: url(#wave-grad-primary);
	animation: driftWave1 22s ease-in-out infinite alternate;
}

.ambient-wave-2 {
	stroke: url(#wave-grad-secondary);
	animation: driftWave2 30s ease-in-out infinite alternate;
}

.ambient-wave-3 {
	stroke: url(#wave-grad-primary);
	animation: driftWave3 40s ease-in-out infinite alternate;
}

@keyframes driftWave1 {
	0% { transform: translateY(-40px) scaleY(0.85) rotate(0deg); }
	100% { transform: translateY(40px) scaleY(1.15) rotate(2deg); }
}

@keyframes driftWave2 {
	0% { transform: translateY(30px) scaleY(1.1) rotate(0deg); }
	100% { transform: translateY(-50px) scaleY(0.9) rotate(-2deg); }
}

@keyframes driftWave3 {
	0% { transform: translateY(-20px) scaleY(0.95) rotate(0deg); }
	100% { transform: translateY(60px) scaleY(1.05) rotate(1deg); }
}

@keyframes globalWaveFloat1 {
	0% { transform: rotate(0deg) translate(0, 0) scale(1); }
	50% { transform: rotate(180deg) translate(40px, -60px) scale(1.08); }
	100% { transform: rotate(360deg) translate(0, 0) scale(1); }
}

@keyframes globalWaveFloat2 {
	0% { transform: rotate(0deg) translate(0, 0) scale(1); }
	50% { transform: rotate(-180deg) translate(-50px, 30px) scale(1.04); }
	100% { transform: rotate(-360deg) translate(0, 0) scale(1); }
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}

/* Utilities */
.theme-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

.gradient-text {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	border-radius: var(--radius-sm);
	padding: 10px 20px;
	font-size: 14px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: var(--transition);
	font-family: var(--font-primary);
}

.btn-primary {
	background: var(--primary) !important;
	color: #ffffff !important;
	box-shadow: 0 4px 15px rgba(236, 48, 124, 0.3) !important;
}

.btn-primary:hover {
	background: var(--primary-hover) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(236, 48, 124, 0.5) !important;
}

.btn-secondary {
	background-color: rgba(255, 255, 255, 0.06);
	color: var(--text-primary);
	border: 1px solid var(--border-color);
}

.btn-secondary:hover {
	background-color: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.btn-link {
	background: none;
	color: var(--text-secondary);
}

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

.btn-large {
	padding: 14px 28px;
	font-size: 16px;
	border-radius: var(--radius-md);
}

.btn-full-width {
	width: 100%;
	padding: 14px;
	font-size: 15px;
}

/* ==========================================================================
   Header & Megamenu
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background-color: var(--glass-bg);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-color);
	transition: var(--transition);
}

.header-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-link {
	display: flex;
	align-items: center;
	height: 52px;
}

.site-logo {
	height: 46px;
	width: auto;
	display: block;
	transition: var(--transition);
}

.footer-brand-section .logo-link {
	height: 60px;
	margin-bottom: 16px;
	display: inline-flex;
}

.footer-brand-section .site-logo {
	height: 52px;
}

.logo-link:hover .site-logo {
	transform: scale(1.03);
}

.theme-toggle-btn {
	background-color: rgba(15, 23, 42, 0.05);
	border: 2px solid var(--border-color);
	color: var(--text-primary);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 18px;
	transition: var(--transition);
	margin-right: 8px;
	box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
	position: relative;
	z-index: 10;
}

.theme-toggle-btn:hover {
	color: var(--primary);
	border-color: var(--primary);
	background-color: rgba(236, 48, 124, 0.06);
	transform: scale(1.08) translateY(-1px);
	box-shadow: 0 6px 15px rgba(236, 48, 124, 0.12);
}

.dark-theme .theme-toggle-btn {
	background-color: rgba(255, 255, 255, 0.06);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.15);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 15px rgba(236, 48, 124, 0.15);
}

.dark-theme .theme-toggle-btn:hover {
	background-color: rgba(236, 48, 124, 0.12);
	border-color: var(--primary);
	color: var(--primary);
	box-shadow: 0 6px 20px rgba(236, 48, 124, 0.3);
}

.main-navigation {
	display: flex;
	align-items: center;
}

.nav-menu {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 32px;
}

.nav-menu > li {
	position: relative;
	padding: 10px 0;
}

.nav-menu > li > a {
	color: var(--text-secondary);
	font-weight: 500;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.nav-menu > li > a i {
	font-size: 10px;
	transition: var(--transition);
}

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

.nav-menu > li:hover > a i {
	transform: rotate(180deg);
}

/* Mega Menu Setup */
.nav-menu > li:hover .mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mega-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-card);
	border-radius: var(--radius-md);
	width: 800px;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 10;
}

.mega-menu-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 0.8fr;
	gap: 24px;
}

.mega-menu-column h4 {
	color: var(--text-muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
	font-weight: 600;
}

.mega-menu-item {
	display: flex;
	gap: 16px;
	padding: 12px;
	border-radius: var(--radius-sm);
	margin-bottom: 8px;
}

.mega-menu-item:hover {
	background-color: rgba(255, 255, 255, 0.03);
}

.item-icon {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}

.item-icon.orange { background-color: rgba(255, 94, 58, 0.1); color: var(--primary); }
.item-icon.blue { background-color: rgba(0, 139, 248, 0.1); color: var(--secondary); }
.item-icon.green { background-color: rgba(16, 185, 129, 0.1); color: var(--accent-green); }
.item-icon.purple { background-color: rgba(139, 92, 246, 0.1); color: var(--accent-purple); }
.item-icon.pink { background-color: rgba(236, 72, 153, 0.1); color: var(--accent-pink); }

.item-details h5 {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 2px;
}

.item-details p {
	font-size: 12px;
	color: var(--text-secondary);
	line-height: 1.4;
}

.promo-column {
	border-left: 1px solid var(--border-color);
	padding-left: 24px;
}

.promo-box {
	background: linear-gradient(135deg, rgba(255, 94, 58, 0.08), rgba(139, 92, 246, 0.08));
	border: 1px solid rgba(255, 94, 58, 0.15);
	border-radius: var(--radius-sm);
	padding: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.promo-box .badge {
	align-self: flex-start;
	background: var(--primary);
	color: #ffffff;
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 20px;
	margin-bottom: 12px;
}

.promo-box h4 {
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 8px;
	text-transform: none;
	letter-spacing: 0;
}

.promo-box p {
	font-size: 12px;
	color: var(--text-secondary);
	line-height: 1.5;
	margin-bottom: 16px;
}

.promo-link {
	font-size: 12px;
	color: var(--primary);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
}

.promo-link:hover {
	color: #ff8838;
}

/* Submenu dropdown (fallback) */
.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	list-style: none;
	width: 220px;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--transition);
}

.nav-menu > li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu a {
	display: block;
	padding: 10px 20px;
	color: var(--text-secondary);
	font-size: 14px;
}

.sub-menu a:hover {
	color: var(--text-primary);
	background-color: rgba(255, 255, 255, 0.03);
}

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

.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 20px;
	cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
	position: relative;
	padding: 160px 0 100px 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-bg-gradients {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.gradient-sphere {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.25;
}

.blob-1 {
	top: -10%;
	right: 10%;
	width: 500px;
	height: 500px;
	background: var(--primary);
	animation: pulse 12s infinite alternate;
}

.blob-2 {
	bottom: -10%;
	left: 10%;
	width: 600px;
	height: 600px;
	background: var(--secondary);
	animation: pulse 18s infinite alternate-reverse;
}

.gradient-grid-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.dark-theme .gradient-grid-pattern {
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* Hero section playing waves */
.hero-waves-container {
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 120px;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
}

.hero-waves-svg {
	width: 100%;
	height: 100%;
}

.hero-wave {
	animation: heroWavePlay 12s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
	transform-origin: center bottom;
}

.hero-wave-1 {
	fill: var(--primary); /* #ec307c */
	opacity: 0.08;
	animation-duration: 12s;
}

.hero-wave-2 {
	fill: var(--secondary); /* #5433e1 */
	opacity: 0.12;
	animation-duration: 18s;
	animation-delay: -3s;
}

.hero-wave-3 {
	fill: var(--primary); /* #ec307c */
	opacity: 0.06;
	animation-duration: 24s;
	animation-delay: -6s;
}

@keyframes heroWavePlay {
	0% { transform: scaleY(1) scaleX(1) translateY(0); }
	50% { transform: scaleY(1.18) scaleX(1.03) translateY(-12px); }
	100% { transform: scaleY(1) scaleX(1) translateY(0); }
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	gap: 100px;
	align-items: center;
}

.hero-badge {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 30px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.hero-badge .status-dot {
	width: 6px;
	height: 6px;
	background-color: #10b981; /* Premium Emerald Green */
	border-radius: 50%;
	display: inline-block;
	position: relative;
	animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
		box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
	}
	50% {
		transform: scale(1.15);
		opacity: 0.8;
		box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
	}
}

.hero-title {
	font-family: var(--font-title);
	font-size: 56px;
	line-height: 1.15;
	font-weight: 800;
	margin-bottom: 20px;
	color: var(--text-primary);
	letter-spacing: -1px;
}

.hero-description {
	font-size: 18px;
	color: var(--text-secondary);
	margin-bottom: 40px;
	max-width: 540px;
	line-height: 1.6;
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 60px;
}

.hero-stats {
	display: flex;
	gap: 40px;
	border-top: 1px solid var(--border-color);
	padding-top: 32px;
}

.stat-item {
	display: flex;
	flex-direction: column;
}

.stat-number {
	font-family: var(--font-title);
	font-size: 28px;
	font-weight: 700;
	color: #000000;
}

.stat-label {
	font-size: 12px;
	color: #000000;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0.65; /* Lighter black / soft black look */
}

.dark-theme .stat-number {
	color: #ffffff;
}

.dark-theme .stat-label {
	color: #ffffff;
	opacity: 0.60; /* 60% white colour */
}

/* Phone Simulator */
.hero-visual {
	display: flex;
	justify-content: flex-end; /* Align the card perfectly to the right side */
	position: relative;
}

.hero-usecase-box {
	background-color: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	box-shadow: none !important;
	width: 100% !important;
	max-width: 520px !important; /* Cap width for perfect proportions */
	margin-left: auto !important; /* Force push to the right edge */
	position: relative; /* relative for wave Y positioning */
}

.dark-theme .hero-usecase-box {
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
}

/* Tabs inside hero box */
.hero-usecase-box .usecase-tabs-container {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.hero-usecase-box .usecase-tabs {
	display: flex;
	background-color: #ffffff !important;
	border: 1px solid rgba(15, 23, 42, 0.06) !important;
	padding: 4px;
	border-radius: 30px;
	gap: 4px;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.dark-theme .hero-usecase-box .usecase-tabs {
	background-color: #1e293b !important;
	border-color: rgba(255, 255, 255, 0.05) !important;
}

.hero-usecase-box .usecase-tab-btn {
	background: none !important;
	border: none !important;
	padding: 8px 18px;
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #475569 !important;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dark-theme .hero-usecase-box .usecase-tab-btn {
	color: #94a3b8 !important;
}

.hero-usecase-box .usecase-tab-btn:hover {
	color: #0f172a !important;
}

.dark-theme .hero-usecase-box .usecase-tab-btn:hover {
	color: #ffffff !important;
}

.hero-usecase-box .usecase-tab-btn.active {
	background-color: #ec307c !important; /* Logo Pink (AIR) */
	color: #ffffff !important;
	font-weight: 600;
}

/* Grid layout under tabs */
.hero-usecase-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 16px;
	align-items: start;
}

/* Shrink phone container slightly inside hero grid */
.hero-usecase-grid .usecase-phone-column {
	display: flex;
	justify-content: center;
}

.hero-usecase-grid .phone-simulator-container {
	width: 100%;
	max-width: 250px; /* Reduced max-width for side-by-side fit */
}

/* Custom pills vertical list styling inside hero */
.hero-usecase-box .usecase-pills-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}

.hero-usecase-box .usecase-pill {
	background: none !important;
	border: none !important;
	text-align: left;
	padding: 10px 16px;
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #475569 !important;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: none !important;
}

.dark-theme .hero-usecase-box .usecase-pill {
	color: #94a3b8 !important;
}

.hero-usecase-box .usecase-pill:hover {
	color: #0f172a !important;
	background-color: rgba(255, 255, 255, 0.4) !important;
}

.dark-theme .hero-usecase-box .usecase-pill:hover {
	color: #ffffff !important;
	background-color: rgba(255, 255, 255, 0.05) !important;
}

.hero-usecase-box .usecase-pill.active {
	background-color: #ffffff !important;
	color: #0f172a !important;
	box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05) !important;
	border: 1px solid rgba(15, 23, 42, 0.04) !important;
	font-weight: 600;
}

.dark-theme .hero-usecase-box .usecase-pill.active {
	background-color: rgba(255, 255, 255, 0.08) !important;
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.hero-usecase-box .usecase-pill span {
	color: inherit !important;
}

.hero-usecase-box .usecase-pill i {
	display: none !important;
}

/* Phone Simulator mockup specific light theme styles nested under hero-usecase-box */
.hero-usecase-box .phone-simulator-mockup {
	background-color: #d6e0f5 !important;
	border: 10px solid #ffffff !important; /* White bezel */
	border-radius: 32px !important;
	box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1) !important;
	overflow: hidden;
	position: relative;
	aspect-ratio: 9 / 16.5; /* Slightly taller to ensure bottom input bar is fully visible and not cut off */
	display: flex;
	flex-direction: column;
	width: 100% !important;
	height: auto !important;
}

.hero-usecase-box .phone-camera-notch {
	background-color: #ffffff !important;
	height: 20px;
	width: 100px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	z-index: 10;
}

.hero-usecase-box .phone-screen-display {
	background-color: #d6e0f5 !important;
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	padding-top: 20px;
}

.hero-usecase-box .phone-status-bar {
	display: flex;
	justify-content: space-between;
	padding: 4px 12px;
	font-size: 10px;
	color: #475569 !important;
	font-weight: 500;
	z-index: 5;
}

.hero-usecase-box .phone-status-icons {
	display: flex;
	gap: 4px;
	color: #475569 !important;
}

.hero-usecase-box .phone-chat-header {
	display: flex;
	align-items: center;
	padding: 8px 12px;
	background-color: #d6e0f5 !important;
	border-bottom: 1px solid rgba(15, 23, 42, 0.05) !important;
	color: #0f172a !important;
}

.hero-usecase-box .phone-chat-header .chat-back {
	font-size: 12px;
	margin-right: 8px;
	cursor: pointer;
	color: #475569 !important;
}

.hero-usecase-box .phone-chat-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: #ffefe5 !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	font-size: 12px;
	color: #ff5e3a !important;
}

.hero-usecase-box .phone-chat-user-info {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hero-usecase-box .phone-chat-username {
	font-size: 12px;
	font-weight: 700;
	color: #0f172a !important;
}

.hero-usecase-box .phone-verified-badge {
	color: #10b981 !important;
	font-size: 10px;
	display: flex;
	align-items: center;
}

.hero-usecase-box .phone-chat-status {
	font-size: 9px;
	color: #475569 !important;
}

.hero-usecase-box .phone-chat-header .chat-menu {
	font-size: 12px;
	color: #475569 !important;
}

.hero-usecase-box .phone-chat-body {
	flex: 1;
	padding: 10px !important;
	display: flex;
	flex-direction: column;
	gap: 8px !important;
	overflow-y: auto;
	background-color: #d6e0f5 !important;
	min-height: 0 !important; /* Critical fix to allow shrinking and prevent pushing footer out */
}

.hero-usecase-box .phone-chat-time {
	text-align: center;
	font-size: 8px;
	color: #64748b !important;
}

.hero-usecase-box .phone-message-card {
	background-color: #ffffff !important;
	border-radius: 12px !important;
	border-top-left-radius: 4px !important;
	padding: 10px;
	box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04) !important;
	max-width: 92%;
}

.hero-usecase-box .phone-message-card p {
	font-size: 11px;
	line-height: 1.4;
	color: #0f172a !important;
}

.hero-usecase-box .phone-message-card .expire-text {
	color: #2563eb !important;
	font-size: 10px;
	margin-top: 4px;
}

.hero-usecase-box .phone-message-divider {
	height: 1px;
	background-color: #e2e8f0 !important;
	margin: 8px 0 6px 0;
}

.hero-usecase-box .phone-autofill-btn {
	color: #2563eb !important;
	font-size: 11px;
}

.hero-usecase-box .phone-opt-out-text {
	font-size: 8px;
	color: #64748b !important;
}

.hero-usecase-box .phone-response-buttons {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.hero-usecase-box .phone-btn-primary {
	background-color: #ec307c !important; /* Logo Pink (AIR) */
	color: #ffffff !important;
	padding: 8px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	transition: background-color 0.2s;
}

.hero-usecase-box .phone-btn-primary:hover {
	background-color: #d6256b !important;
}

.hero-usecase-box .phone-btn-secondary {
	background-color: #ffffff !important;
	border: 1px solid #cbd5e1 !important;
	color: #475569 !important;
	padding: 8px;
	border-radius: 20px;
	font-size: 11px;
}

.hero-usecase-box .phone-chat-input-bar {
	padding: 8px 12px;
	background-color: #d6e0f5 !important;
	border-top: 1px solid rgba(15, 23, 42, 0.05) !important;
	gap: 8px !important;
	color: #475569 !important;
	font-size: 12px;
	display: flex;
	align-items: center;
}

.hero-usecase-box .phone-chat-input-bar i {
	flex-shrink: 0 !important;
}

.hero-usecase-box .phone-mock-input {
	background-color: #ffffff !important;
	border: 1px solid #cbd5e1 !important;
	border-radius: 16px;
	padding: 5px 10px;
	font-size: 10px;
	flex: 1 !important;
	min-width: 0 !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.phone-mock-input {
	min-width: 0 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

/* ==========================================================================
   Mobile Simulator Responsive Layout Stack & Vertical Wave Keyframes
   ========================================================================== */
@media (max-width: 768px) {
	.hero-usecase-grid {
		grid-template-columns: 1fr !important; /* Stack simulator phone and pills vertically */
		gap: 24px !important;
		justify-items: center;
	}

	.hero-usecase-grid .usecase-phone-column {
		width: 100%;
		display: flex;
		justify-content: center;
		order: 1; /* Place phone simulator above the pills */
	}

	.hero-usecase-grid .phone-simulator-container {
		max-width: 270px !important; /* Enlarge phone simulator for mobile reading */
	}
	
	.hero-usecase-box .phone-simulator-mockup {
		aspect-ratio: 9 / 16 !important; /* Well proportioned bezel ratio */
	}

	.hero-usecase-box .usecase-pills-list {
		order: 2; /* Place pills list below the phone simulator */
		margin-top: 0 !important;
		width: 100%;
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important; /* Compact 2-column pill layout */
		gap: 8px !important;
	}

	.hero-usecase-box .usecase-pill {
		font-size: 11px !important;
		padding: 8px 10px !important;
		justify-content: center !important;
		text-align: center !important;
	}
}

@keyframes waveFlowUp {
	0% {
		height: 0;
		opacity: 0;
		transform: translateY(0);
	}
	20% {
		height: 40px;
		opacity: 1;
	}
	80% {
		height: 40px;
		opacity: 0.9;
	}
	100% {
		height: 0;
		opacity: 0;
		transform: translateY(var(--travel-distance-y));
	}
}


.phone-simulator {
	background-color: #03050e;
	border: 10px solid #1e293b;
	border-radius: 40px;
	width: 100%;
	height: 100%;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), var(--shadow-glow);
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
}

.phone-header {
	height: 30px;
	background-color: #1e293b;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.speaker {
	width: 50px;
	height: 4px;
	background-color: #0f172a;
	border-radius: 2px;
}

.camera {
	width: 8px;
	height: 8px;
	background-color: #0f172a;
	border-radius: 50%;
	position: absolute;
	right: 30%;
}

.phone-screen {
	flex-grow: 1;
	background-color: #0c0f1d;
	display: flex;
	flex-direction: column;
	position: relative;
}

.status-bar {
	height: 24px;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 11px;
	color: #64748b !important;
}

.status-icons {
	display: flex;
	gap: 6px;
}

.chat-header {
	padding: 12px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
	display: flex;
	align-items: center;
	gap: 10px;
}

.chat-back {
	color: var(--primary);
	font-size: 14px;
}

.chat-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 94, 58, 0.1);
	border: 1px solid rgba(255, 94, 58, 0.25);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.chat-user-info {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.chat-username {
	font-size: 13px;
	font-weight: 600;
	color: #ffffff !important;
}

.chat-status {
	font-size: 10px;
	color: #10b981 !important;
}

.chat-call {
	color: #94a3b8 !important;
	font-size: 12px;
}

.chat-body {
	flex-grow: 1;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	overflow-y: auto;
}

.chat-time {
	align-self: center;
	font-size: 10px;
	color: #64748b !important;
	margin-bottom: 8px;
}

.chat-bubble {
	max-width: 85%;
	padding: 12px;
	border-radius: 16px;
	font-size: 12px;
	line-height: 1.4;
	position: relative;
}

.chat-bubble.received {
	background-color: #1e293b !important;
	color: #ffffff !important;
	align-self: flex-start;
	border-bottom-left-radius: 4px;
}

.chat-bubble.received p, 
.chat-bubble.received strong {
	color: #ffffff !important;
}

.bubble-time {
	display: block;
	text-align: right;
	font-size: 9px;
	color: #64748b !important;
	margin-top: 6px;
}

.success-icon {
	color: #10b981 !important;
	margin-right: 4px;
}

.chat-input-bar {
	padding: 12px 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
	display: flex;
	align-items: center;
	gap: 12px;
	color: #64748b !important;
}

.mock-input {
	flex-grow: 1;
	background-color: #1e293b !important;
	border-radius: 20px;
	padding: 8px 16px;
	font-size: 12px;
	color: #94a3b8 !important;
}

.send-btn-icon {
	color: var(--primary);
}

/* Floating Cards */
.floating-badge-card {
	position: absolute;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
	border: 1px solid rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 14px 18px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
	width: 240px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 15;
}

.dark-theme .floating-badge-card {
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.3) 100%);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.floating-badge-card:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: var(--primary);
}

.card-api {
	top: 18%;
	left: -28%;
}

.card-delivery {
	bottom: 28%;
	right: -28%;
}

.badge-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(236, 48, 124, 0.2) 0%, rgba(84, 51, 225, 0.2) 100%);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
	box-shadow: 0 4px 10px rgba(236, 48, 124, 0.15);
}

.badge-icon.green {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
	color: #10b981;
	box-shadow: 0 4px 10px rgba(16, 185, 129, 0.15);
}

.badge-info h6 {
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: var(--text-color);
	margin: 0 0 2px 0;
	letter-spacing: 0.3px;
}

.badge-info p {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	color: var(--text-muted);
	margin: 0;
	font-weight: 500;
}

/* Animations */
@keyframes pulse {
	0% { transform: scale(1) translate(0, 0); opacity: 0.2; }
	50% { transform: scale(1.1) translate(20px, -20px); opacity: 0.3; }
	100% { transform: scale(1) translate(0, 0); opacity: 0.2; }
}

.animate-float-slow {
	animation: float 6s ease-in-out infinite;
}

.animate-float-fast {
	animation: float 4s ease-in-out infinite alternate;
}

@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
	100% { transform: translateY(0px); }
}

.animate-bubble-1 {
	opacity: 0;
	transform: translateY(10px);
	animation: showBubble 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards 1s;
}

.animate-bubble-2 {
	opacity: 0;
	transform: translateY(10px);
	animation: showBubble 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards 3.5s;
}

@keyframes showBubble {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================================
   Trust Section
   ========================================================================== */
.trust-section {
	padding: 40px 0;
	background-color: transparent;
}

.trust-section .theme-container {
	background: linear-gradient(135deg, rgba(236, 48, 124, 0.02) 0%, rgba(84, 51, 225, 0.03) 50%, rgba(236, 48, 124, 0.02) 100%), var(--glass-bg);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 36px 48px;
	backdrop-filter: var(--glass-blur);
	-webkit-backdrop-filter: var(--glass-blur);
	box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
	.trust-section .theme-container {
		padding: 24px 20px;
	}
}

.trust-label {
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	color: var(--text-secondary); /* Darker slate/grey, looks like soft black */
	letter-spacing: 1.5px;
	margin-bottom: 24px;
}

.logo-slider-container {
	overflow: hidden;
	width: 100%;
	position: relative;
	padding: 10px 0;
	/* Soft linear gradient fade masks on left and right bounds */
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-slider-track {
	display: flex;
	align-items: center;
	gap: 48px; /* Balanced spacing between sliding logo items */
	width: max-content;
	animation: logoScroll 40s linear infinite; /* Smooth slow-paced infinite loop translation */
}

/* Pause scroll animation on hover for professional developer touch */
.logo-slider-container:hover .logo-slider-track {
	animation-play-state: paused;
}

.logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 38px; /* Force identical container heights */
	width: 120px; /* Force identical container widths for balanced visual flow */
	transition: var(--transition);
	flex-shrink: 0; /* Prevent flexbox from shrinking logos */
}

.logo-item img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain; /* Scale down proportionally to fit container bounds exactly */
	filter: brightness(0); /* Clean monochrome black color style */
	opacity: 0.6; /* Muted soft grey-black tone matching the previous text logo styling */
	transition: var(--transition);
}

.logo-item img:hover {
	opacity: 0.95;
	filter: brightness(0) drop-shadow(0 0 3px rgba(0,0,0,0.1));
}

.dark-theme .logo-item img {
	filter: brightness(0) invert(1);
	opacity: 0.55;
}

.dark-theme .logo-item img:hover {
	opacity: 0.95;
	filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(255, 255, 255, 0.15));
}

@keyframes logoScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%); /* Loop exactly half track width of duplicated items */
	}
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
	padding: 100px 0;
}

.section-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 60px auto;
}

.section-subtitle {
	color: var(--primary);
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
	display: block;
}

.section-title {
	font-family: var(--font-title);
	font-size: 38px;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}

.section-description {
	color: var(--text-secondary);
	font-size: 16px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	gap: 30px;
}

.feature-card {
	background-color: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 40px;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(255, 94, 58, 0.08), transparent 40%);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.feature-card:hover::before {
	opacity: 1;
}

.feature-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 94, 58, 0.3);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 94, 58, 0.05);
}

.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 24px;
}

.feature-icon.orange { background-color: rgba(255, 94, 58, 0.1); color: var(--primary); }
.feature-icon.blue { background-color: rgba(0, 139, 248, 0.1); color: var(--secondary); }
.feature-icon.green { background-color: rgba(16, 185, 129, 0.1); color: var(--accent-green); }
.feature-icon.purple { background-color: rgba(139, 92, 246, 0.1); color: var(--accent-purple); }
.feature-icon.pink { background-color: rgba(236, 72, 153, 0.1); color: var(--accent-pink); }
.feature-icon.teal { background-color: rgba(20, 184, 166, 0.1); color: var(--accent-teal); }

.feature-card h3 {
	font-family: var(--font-title);
	font-size: 22px;
	color: var(--text-primary);
	margin-bottom: 12px;
	font-weight: 700;
}

.feature-card p {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 24px;
	line-height: 1.5;
}

.feature-checklist {
	list-style: none;
	margin-bottom: 30px;
}

.feature-checklist li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.feature-checklist li i {
	color: var(--accent-green);
	font-size: 12px;
}

.feature-link {
	font-size: 13px;
	color: var(--primary);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.feature-link:hover {
	color: #ff8838;
}

/* ==========================================================================
   Playground Console Section
   ========================================================================== */
.playground-section {
	padding: 100px 0;
	background-color: var(--bg-darker);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.playground-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 60px;
	align-items: center;
}

.developer-features {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.dev-feature-item {
	display: flex;
	gap: 16px;
}

.dev-icon {
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-color);
	color: var(--primary);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}

.dev-feature-item h4 {
	font-size: 15px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 4px;
}

.dev-feature-item p {
	font-size: 13px;
	color: var(--text-secondary);
}

.playground-console {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.console-card {
	background-color: #03050e;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

.console-header {
	background-color: rgba(255, 255, 255, 0.02);
	border-bottom: 1px solid var(--border-color);
	padding: 10px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.console-tabs {
	display: flex;
	gap: 8px;
}

.tab-btn {
	background: none;
	border: none;
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 600;
	padding: 6px 12px;
	cursor: pointer;
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
	color: #ffffff;
	background-color: rgba(255, 255, 255, 0.05);
}

.file-label {
	font-size: 11px;
	color: var(--text-muted);
	font-family: monospace;
}

.copy-btn {
	background: none;
	border: none;
	color: var(--text-muted);
	cursor: pointer;
	padding: 4px;
	transition: var(--transition);
}

.copy-btn:hover {
	color: #ffffff;
}

.console-body {
	padding: 20px;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	font-size: 13px;
	line-height: 1.5;
	overflow-x: auto;
}

.code-block {
	display: none;
}

.code-block.active {
	display: block;
}

/* Code Highlighting */
.keyword { color: #f43f5e; }
.string { color: #10b981; }
.method { color: #3b82f6; }
.variable { color: #f59e0b; }
.comment { color: #64748b; }

.response-card {
	border-color: rgba(16, 185, 129, 0.2);
}

.response-header {
	border-bottom-color: rgba(16, 185, 129, 0.15);
	font-size: 12px;
	color: var(--text-secondary);
}

.status-badge {
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 20px;
}

.status-badge.green {
	background-color: rgba(16, 185, 129, 0.1);
	color: var(--accent-green);
}

.response-body {
	background-color: #02040b;
}

/* ==========================================================================
   Pricing Estimator Section
   ========================================================================== */
.pricing-section {
	padding: 100px 0;
}

.pricing-card {
	background-color: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	max-width: 1000px;
	margin: 0 auto;
}

.calculator-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
}

.calculator-controls {
	padding: 48px;
}

.control-group {
	margin-bottom: 36px;
}

.control-group:last-child {
	margin-bottom: 0;
}

.control-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 12px;
}

.channel-selector {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.channel-btn {
	background-color: var(--bg-dark);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	padding: 16px;
	color: var(--text-secondary);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	transition: var(--transition);
}

.channel-btn i {
	font-size: 18px;
}

.channel-btn span {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.channel-btn.active {
	border-color: var(--primary);
	background-color: rgba(233, 32, 112, 0.08);
	color: var(--text-primary);
}

.select-input {
	width: 100%;
	background-color: var(--bg-dark);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	padding: 12px 16px;
	color: var(--text-primary);
	font-size: 14px;
	outline: none;
	cursor: pointer;
	transition: var(--transition);
}

.select-input:focus {
	border-color: var(--primary);
}

.control-help-text {
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
	line-height: 1.4;
}

.control-help-text i {
	color: var(--primary);
	font-size: 12px;
}

.slider-label-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.volume-display {
	font-family: var(--font-title);
	font-size: 18px;
	font-weight: 700;
	color: var(--primary);
}

.range-slider {
	-webkit-appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: var(--bg-darker);
	outline: none;
}

.range-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--primary);
	cursor: pointer;
	box-shadow: 0 0 10px rgba(255, 94, 58, 0.5);
	transition: var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
	transform: scale(1.1);
}

.slider-ticks {
	display: flex;
	justify-content: space-between;
	padding: 8px 4px 0 4px;
	font-size: 11px;
	color: var(--text-muted);
}

/* Result Box */
.calculator-result-box {
	background-color: var(--bg-darker);
	border-left: 1px solid var(--border-color);
	padding: 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.result-header h4 {
	font-size: 15px;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 4px;
}

.result-header p {
	font-size: 12px;
	color: var(--text-muted);
}

.result-price {
	margin: 24px 0;
	display: flex;
	align-items: baseline;
}

.result-price .currency {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-primary);
}

.result-price .price-val {
	font-family: var(--font-title);
	font-size: 56px;
	font-weight: 800;
	color: var(--text-primary);
	line-height: 1;
}

.result-price .period {
	font-size: 16px;
	color: var(--text-muted);
	margin-left: 4px;
}

.price-breakdown {
	border-top: 1px solid var(--border-color);
	padding-top: 24px;
	margin-bottom: 32px;
}

.breakdown-row {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	margin-bottom: 12px;
}

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

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

.volume-discount-notice {
	background-color: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.2);
	color: var(--accent-green);
	font-size: 11px;
	font-weight: 600;
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	opacity: 0;
	transform: translateY(5px);
	transition: var(--transition);
}

.volume-discount-notice.active {
	opacity: 1;
	transform: translateY(0);
}

.card-footer-note {
	font-size: 11px;
	color: var(--text-muted);
	text-align: center;
	margin-top: 16px;
	line-height: 1.4;
}

/* ==========================================================================
   Bottom CTA Section
   ========================================================================== */
.bottom-cta-section {
	padding: 80px 0 120px 0;
}

.cta-card {
	background: linear-gradient(to right, 
		rgba(236, 48, 124, 0.15) 0%, 
		rgba(236, 48, 124, 0.02) 8%, 
		#ffffff 12%, 
		#ffffff 88%, 
		rgba(84, 51, 225, 0.02) 92%, 
		rgba(84, 51, 225, 0.15) 100%
	) !important;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: var(--radius-lg);
	padding: 60px;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 60px;
	align-items: center;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

.cta-content h2 {
	font-family: var(--font-title);
	font-size: 38px;
	font-weight: 800;
	color: #0f172a !important; /* Always dark Slate 900 */
	margin-bottom: 16px;
	position: relative;
	z-index: 3;
}

.cta-content p {
	font-size: 15px;
	color: #334155 !important; /* Always dark Slate 700 */
	margin-bottom: 32px;
	max-width: 500px;
	position: relative;
	z-index: 3;
}

.cta-card .btn-secondary {
	background-color: #f1f5f9 !important; /* Always light Slate 100 */
	color: #0f172a !important; /* Always dark Slate 900 */
	border: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.cta-card .btn-secondary:hover {
	background-color: #e2e8f0 !important; /* Always Slate 200 */
	border-color: rgba(15, 23, 42, 0.15) !important;
	color: #0f172a !important;
}

/* Dark Theme overrides for CTA Card */
.dark-theme .cta-card {
	background: linear-gradient(to right, 
		rgba(236, 48, 124, 0.25) 0%, 
		rgba(236, 48, 124, 0.05) 8%, 
		#0f172a 12%, 
		#0f172a 88%, 
		rgba(84, 51, 225, 0.05) 92%, 
		rgba(84, 51, 225, 0.25) 100%
	) !important;
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.dark-theme .cta-content h2 {
	color: #ffffff !important;
}

.dark-theme .cta-content p {
	color: #94a3b8 !important;
}

.dark-theme .cta-card .btn-secondary {
	background-color: rgba(255, 255, 255, 0.06) !important;
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dark-theme .cta-card .btn-secondary:hover {
	background-color: rgba(255, 255, 255, 0.12) !important;
	border-color: rgba(255, 255, 255, 0.2) !important;
	color: #ffffff !important;
}


/* Wave Graphics Styling inside CTA Card */
.cta-waves-container {
	position: absolute;
	bottom: -10px;
	height: 110%;
	pointer-events: none;
	overflow: hidden;
	z-index: 1;
}

.cta-waves-left {
	left: -20px;
	width: 280px;
}

.cta-waves-right {
	right: -20px;
	width: 340px;
}

.cta-waves-container svg {
	width: 100%;
	height: 100%;
}

.cta-wave {
	transform-origin: bottom center;
}

.left-wave-1 { fill: #ec307c; opacity: 0.22; animation: wavePlayLeft 7s ease-in-out infinite alternate; }
.left-wave-2 { fill: #5433e1; opacity: 0.16; animation: wavePlayLeft 11s ease-in-out infinite alternate-reverse; }
.left-wave-3 { fill: #ec307c; opacity: 0.12; animation: wavePlayLeft 14s ease-in-out infinite alternate; }
.left-wave-4 { fill: #5433e1; opacity: 0.10; animation: wavePlayLeft 18s ease-in-out infinite alternate-reverse; }

.right-wave-1 { fill: #5433e1; opacity: 0.24; animation: wavePlayRight 9s ease-in-out infinite alternate; }
.right-wave-2 { fill: #ec307c; opacity: 0.18; animation: wavePlayRight 13s ease-in-out infinite alternate-reverse; }
.right-wave-3 { fill: #5433e1; opacity: 0.12; animation: wavePlayRight 16s ease-in-out infinite alternate; }
.right-wave-4 { fill: #ec307c; opacity: 0.08; animation: wavePlayRight 20s ease-in-out infinite alternate-reverse; }

@keyframes wavePlayLeft {
	0% { transform: translate(0, 0) scale(1) rotate(0deg); }
	50% { transform: translate(10px, -6px) scale(1.05) rotate(1.5deg); }
	100% { transform: translate(-5px, 3px) scale(0.98) rotate(-1deg); }
}

@keyframes wavePlayRight {
	0% { transform: translate(0, 0) scale(1) rotate(0deg); }
	50% { transform: translate(-12px, -8px) scale(1.06) rotate(-2deg); }
	100% { transform: translate(6px, 4px) scale(0.97) rotate(1deg); }
}

.cta-actions {
	display: flex;
	gap: 16px;
	position: relative;
	z-index: 3;
}

.cta-graphic {
	position: relative;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.graphic-element {
	position: absolute;
	border-radius: 50%;
}

.circle-1 {
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(255, 94, 58, 0.1) 0%, transparent 70%);
}

.circle-2 {
	width: 150px;
	height: 150px;
	background: radial-gradient(circle, rgba(0, 139, 248, 0.1) 0%, transparent 70%);
}

.code-console {
	width: 260px;
	background-color: #03050e;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	position: relative;
	z-index: 4;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: inline-block;
}

.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #f59e0b; }
.dot.green { background-color: #10b981; }

.console-title {
	color: var(--text-muted);
	font-size: 10px;
	margin-left: 8px;
	font-family: monospace;
}

.console-body {
	padding: 16px;
	font-family: monospace;
	font-size: 11px;
	color: var(--text-secondary);
	line-height: 1.6;
}

.prompt { color: var(--primary); }
.success { color: var(--accent-green); }
.info { color: var(--secondary); }

/* ==========================================================================
   Footer Styling
   ========================================================================== */
.site-footer {
	background-color: var(--bg-darker);
	border-top: 1px solid var(--border-color);
}

.footer-top {
	padding: 80px 0;
}

.footer-top .footer-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 60px;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

.footer-brand-section {
	max-width: 340px;
}

.brand-tagline {
	font-size: 13px;
	color: var(--text-secondary);
	margin-top: 16px;
	margin-bottom: 24px;
}

.social-links {
	display: flex;
	gap: 12px;
}

.social-link {
	width: 36px;
	height: 36px;
	background-color: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	transition: var(--transition);
}

.social-link:hover {
	background-color: var(--primary);
	border-color: var(--primary);
	color: #ffffff;
	transform: translateY(-2px);
}

/* Footer Trust & Certification Badges */
.footer-cert-badges {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	flex-wrap: wrap;
}

/* Badge pill: frosted semi-transparent — barely there, blends with footer */
/* Shows original logo colors without jarring white box */
.cert-badge-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 68px;            /* Same height both badges — pixel perfect */
	padding: 8px 16px;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.10);   /* Very subtle — NOT white */
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 10px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.cert-badge-item:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.22);
	transform: translateY(-2px);
}

/* Original logo colors — NO filter, NO color change */
.cert-logo {
	display: block;
	object-fit: contain;
	filter: none;
	max-height: 100%;
}

/* D&B: circular badge — fits inside 68px pill */
.cert-logo-dnb {
	height: 50px;
	width: auto;
}

/* Dubai Chamber: wide horizontal wordmark — same visual weight */
.cert-logo-dubai {
	height: 34px;
	width: auto;
	filter: none;
}

/* Thin vertical separator between the two badges */
.cert-badges-divider {
	width: 1px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.12);
	flex-shrink: 0;
}


.footer-links-grid {
	display: flex;
	gap: 60px;
}

.footer-column h4 {
	color: var(--text-primary);
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer-menu {
	list-style: none;
}

.footer-menu li {
	margin-bottom: 12px;
}

.footer-menu a {
	color: var(--text-secondary);
	font-size: 13px;
}

.footer-menu a:hover {
	color: #ffffff;
}

.footer-bottom {
	border-top: 1px solid var(--border-color);
	padding: 30px 0;
	background-color: #020309;
}

.footer-bottom .footer-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

.footer-meta-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 12px;
	color: var(--text-muted);
}

.footer-policy-menu {
	display: flex;
	list-style: none;
	gap: 24px;
}

.footer-policy-menu a:hover {
	color: var(--text-primary);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
	.hero-title {
		font-size: 44px;
	}
	
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 60px;
		text-align: center;
	}
	
	.hero-description {
		margin-left: auto;
		margin-right: auto;
	}
	
	.hero-actions {
		justify-content: center;
	}
	
	.hero-stats {
		justify-content: center;
	}
	
	.hero-visual {
		display: flex;
		justify-content: center;
	}
	
	.card-api {
		left: -20px;
	}
	
	.card-delivery {
		right: -20px;
	}
	
	.mega-menu {
		width: 100%;
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		display: none;
		box-shadow: none;
		border: none;
		padding: 10px 0;
	}
	
	.mega-menu-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.promo-column {
		border-left: none;
		padding-left: 0;
	}
	
	.calculator-grid {
		grid-template-columns: 1fr;
	}
	
	.calculator-result-box {
		border-left: none;
		border-top: 1px solid var(--border-color);
		padding: 48px;
	}
	
	.cta-card {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	
	.cta-content p {
		margin-left: auto;
		margin-right: auto;
	}
	
	.cta-actions {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}
	
	.main-navigation {
		position: fixed;
		top: 73px;
		left: -100%;
		width: 300px;
		height: calc(100vh - 73px);
		background-color: var(--bg-darker);
		border-right: 1px solid var(--border-color);
		z-index: 99;
		transition: var(--transition);
		display: block;
		padding: 24px;
		overflow-y: auto;
	}
	
	.main-navigation.active {
		left: 0;
	}
	
	.menu-backdrop {
		display: none;
		position: fixed;
		top: 73px;
		left: 0;
		width: 100vw;
		height: calc(100vh - 73px);
		background-color: rgba(0, 0, 0, 0.6);
		backdrop-filter: blur(4px);
		z-index: 98;
	}
	
	.menu-backdrop.active {
		display: block;
	}
	
	.nav-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	
	.nav-menu > li {
		width: 100%;
	}
	
	.header-actions .btn-primary {
		display: none; /* Hide Start Free button on small screens or display smaller */
	}
	
	.features-grid {
		grid-template-columns: 1fr;
	}
	
	.playground-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-links-grid {
		flex-wrap: wrap;
		gap: 40px;
	}
	
	.hero-title {
		font-size: 34px !important;
	}
	
	.section-title, .cta-content h2 {
		font-size: 26px !important;
	}
	
	.hero-actions {
		flex-direction: column;
		gap: 12px;
	}
	
	.hero-stats {
		flex-direction: column;
		gap: 24px;
		text-align: center;
	}
	
	.cta-actions {
		flex-direction: column;
		gap: 12px;
	}
	
	.calculator-controls {
		padding: 24px !important;
	}
	
	.calculator-result-box {
		padding: 32px 24px !important;
	}
}

/* ==========================================================================
   Subpage Base & Visuals
   ========================================================================== */
.subpage-hero {
	padding: 180px 0 80px 0;
	background: linear-gradient(135deg, rgba(236, 48, 124, 0.04) 0%, rgba(84, 51, 225, 0.04) 100%);
	position: relative;
	overflow: hidden;
	text-align: center;
	border-bottom: 1px solid var(--border-color);
}

.subpage-hero h1 {
	font-family: var(--font-title);
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 16px;
	color: var(--text-primary);
}

.subpage-hero p {
	font-size: 18px;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto 30px auto;
}

.product-features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	padding: 80px 0;
}

.product-features-grid.reversed {
	direction: rtl;
}

.product-features-grid.reversed .feature-text {
	direction: ltr;
}

.feature-text h2 {
	font-family: var(--font-title);
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--text-primary);
}

.feature-text p {
	color: var(--text-secondary);
	font-size: 15px;
	margin-bottom: 24px;
	line-height: 1.7;
}

.product-stats-bar {
	display: flex;
	justify-content: space-around;
	background-color: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 40px;
	margin: 40px 0;
	box-shadow: var(--shadow-card);
}

.product-stat-box {
	text-align: center;
}

.product-stat-box h3 {
	font-family: var(--font-title);
	font-size: 36px;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 8px;
}

.product-stat-box p {
	font-size: 11px;
	color: var(--text-secondary);
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.mock-dashboard-wrapper {
	background-color: #03050e;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card), var(--shadow-glow);
	overflow: hidden;
	width: 100%;
}

.dashboard-header {
	background-color: #0d0f1c;
	padding: 12px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dashboard-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: inline-block;
	margin-right: 6px;
}

.dashboard-dot.red { background-color: #ef4444; }
.dashboard-dot.yellow { background-color: #f59e0b; }
.dashboard-dot.green { background-color: #10b981; }

.dashboard-tabs {
	display: flex;
	gap: 12px;
	font-size: 11px;
	color: #64748b;
}

.dashboard-body {
	padding: 30px;
	color: #f8fafc;
	min-height: 200px;
}

.chart-bar-container {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	height: 180px;
	padding-top: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: 16px;
	gap: 12px;
}

.chart-bar {
	flex-grow: 1;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	background: linear-gradient(to top, var(--secondary), var(--primary));
	animation: barGrow 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	transform-origin: bottom;
	position: relative;
}

.chart-bar-label {
	font-size: 10px;
	color: #64748b;
	text-align: center;
	margin-top: 8px;
}

.chart-bar::after {
	content: attr(data-val);
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 9px;
	color: #ffffff;
	font-weight: 600;
}

@keyframes barGrow {
	from { transform: scaleY(0); }
	to { transform: scaleY(1); }
}

@media (max-width: 768px) {
	.product-features-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}
	.product-features-grid.reversed {
		direction: ltr;
	}
	.product-stats-bar {
		flex-direction: column;
		gap: 32px;
		padding: 20px;
	}
}

/* ==========================================================================
   Split-Screen Authentication System Styles (Login, Signup, OTP)
   ========================================================================== */
/* Hide standard header/footer on authentication pages */
.page-template-page-login .site-header,
.page-template-page-login .site-footer,
.page-template-page-signup .site-header,
.page-template-page-signup .site-footer,
.page-template-page-verify-otp .site-header,
.page-template-page-verify-otp .site-footer,
body[class*="login"] .site-header,
body[class*="login"] .site-footer,
body[class*="signup"] .site-header,
body[class*="signup"] .site-footer {
	display: none !important;
}
.auth-split-layout {
	display: flex;
	min-height: 100vh;
	width: 100%;
	background-color: var(--bg-color);
	color: var(--text-color);
	transition: background-color var(--transition-speed), color var(--transition-speed);
	overflow-x: hidden;
}

/* Left Panel: Branding & Value Proposition */
.auth-left-panel {
	flex: 0 0 42%;
	background-color: #0c0f1d;
	color: #ffffff;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 60px;
	overflow: hidden;
	z-index: 2;
}

.auth-left-panel .site-waves-bg {
	opacity: 0.45;
}

.auth-left-header .logo-link img {
	height: 40px;
	width: auto;
}

.auth-left-content {
	margin-top: auto;
	margin-bottom: auto;
	position: relative;
	z-index: 3;
}

.auth-left-content h1 {
	font-family: var(--font-title);
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 24px;
	background: linear-gradient(135deg, #ffffff 30%, #ec307c 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.auth-left-content p {
	font-size: 16px;
	color: #94a3b8;
	line-height: 1.6;
	margin-bottom: 40px;
	max-width: 440px;
}

/* Value Props Checklist */
.auth-val-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.auth-val-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 500;
	color: #e2e8f0;
}

.auth-val-item i {
	color: #10b981;
	font-size: 16px;
}

.auth-left-footer {
	font-size: 12px;
	color: #64748b;
	position: relative;
	z-index: 3;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Right Panel: Clean form layout cards */
.auth-right-panel {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 40px;
	position: relative;
	background-color: var(--bg-color);
	transition: background-color var(--transition-speed);
}

.auth-right-panel .theme-toggle-btn {
	position: absolute;
	top: 30px;
	right: 40px;
}

.auth-form-card {
	width: 100%;
	max-width: 460px;
	background-color: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
	transition: background-color var(--transition-speed), border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.dark-theme .auth-form-card {
	background-color: #0f172a;
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}

.auth-form-header {
	margin-bottom: 32px;
}

.auth-form-header h2 {
	font-family: var(--font-title);
	font-size: 28px;
	font-weight: 800;
	color: var(--heading-color);
	margin-bottom: 8px;
}

.auth-form-header p {
	font-size: 14px;
	color: var(--text-muted);
}

.auth-form-header p a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
}

.auth-form-header p a:hover {
	text-decoration: underline;
}

/* Form Styles */
.auth-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--heading-color);
}

.input-icon-wrapper {
	position: relative;
	width: 100%;
}

.input-icon-wrapper i.field-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-muted);
	font-size: 15px;
	pointer-events: none;
	transition: color 0.2s;
}

.form-input {
	width: 100%;
	height: 48px;
	background-color: #f8fafc;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: var(--radius-md);
	padding: 0 16px 0 46px;
	font-size: 14px;
	color: var(--text-color);
	outline: none;
	transition: all 0.2s;
}

.dark-theme .form-input {
	background-color: #1e293b;
	border-color: rgba(255, 255, 255, 0.1);
}

.form-input:focus {
	border-color: var(--primary);
	background-color: #ffffff;
	box-shadow: 0 0 0 4px rgba(236, 48, 124, 0.12);
}

.dark-theme .form-input:focus {
	background-color: #0f172a;
	box-shadow: 0 0 0 4px rgba(236, 48, 124, 0.2);
}

/* Password Eye Button */
.password-toggle-btn {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--text-muted);
	cursor: pointer;
	padding: 0;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.password-toggle-btn:hover {
	color: var(--text-color);
}

/* Forgot Password Link */
.forgot-password-link {
	align-self: flex-end;
	font-size: 12px;
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
}

.forgot-password-link:hover {
	text-decoration: underline;
}

/* OAuth Divider */
.oauth-divider {
	display: flex;
	align-items: center;
	text-align: center;
	margin: 24px 0;
	font-size: 12px;
	color: var(--text-muted);
}

.oauth-divider::before,
.oauth-divider::after {
	content: '';
	flex: 1;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.dark-theme .oauth-divider::before,
.dark-theme .oauth-divider::after {
	border-color: rgba(255, 255, 255, 0.08);
}

.oauth-divider::before {
	margin-right: 12px;
}

.oauth-divider::after {
	margin-left: 12px;
}

/* Social buttons */
.social-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.social-btn {
	height: 44px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	background-color: #ffffff;
	border-radius: var(--radius-md);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-color);
	cursor: pointer;
	transition: all 0.2s;
}

.dark-theme .social-btn {
	background-color: #1e293b;
	border-color: rgba(255, 255, 255, 0.08);
}

.social-btn:hover {
	background-color: #f8fafc;
	border-color: rgba(15, 23, 42, 0.18);
}

.dark-theme .social-btn:hover {
	background-color: #334155;
	border-color: rgba(255, 255, 255, 0.15);
}

.social-btn i {
	font-size: 16px;
}

.social-btn.google i { color: #ea4335; }
.social-btn.github i { color: var(--text-color); }

/* OTP Digits Form Grid */
.otp-input-container {
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin: 12px 0 24px 0;
}

.otp-digit-input {
	width: 52px;
	height: 60px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	background-color: #f8fafc;
	border-radius: var(--radius-md);
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	color: var(--text-color);
	outline: none;
	transition: all 0.2s;
}

.dark-theme .otp-digit-input {
	background-color: #1e293b;
	border-color: rgba(255, 255, 255, 0.1);
}

.otp-digit-input:focus {
	border-color: var(--primary);
	background-color: #ffffff;
	box-shadow: 0 0 0 4px rgba(236, 48, 124, 0.12);
}

.dark-theme .otp-digit-input:focus {
	background-color: #0f172a;
	box-shadow: 0 0 0 4px rgba(236, 48, 124, 0.2);
}

.alert-message {
	padding: 12px 16px;
	border-radius: var(--radius-md);
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.alert-message.error {
	background-color: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.2);
	color: #ef4444;
}

.alert-message.success {
	background-color: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.2);
	color: #10b981;
}

/* Responsive auth layouts */
@media (max-width: 1024px) {
	.auth-split-layout {
		flex-direction: column;
	}
	.auth-left-panel {
		flex: none;
		padding: 40px;
	}
	.auth-left-panel p {
		margin-bottom: 24px;
	}
	.auth-right-panel {
		padding: 40px 20px;
	}
}

/* Curve dividers between sections */
.section-divider-curve {
	position: relative;
	width: 100%;
	height: 80px;
	overflow: hidden;
	line-height: 0;
	z-index: 5;
	pointer-events: none;
}

.section-divider-curve svg {
	display: block;
	width: 100%;
	height: 80px;
}

.section-divider-curve.curve-inverted {
	transform: rotate(180deg);
}

.section-divider-curve path {
	transition: fill 0.3s ease;
}

.dark-theme .section-divider-curve [fill="var(--bg-card)"] {
	fill: var(--bg-card);
}

.dark-theme .section-divider-curve [fill="var(--bg-darker)"] {
	fill: var(--bg-darker);
}

.dark-theme .section-divider-curve [fill="var(--bg-dark)"] {
	fill: var(--bg-dark);
}

/* ==========================================================================
   Omnichannel Usecase Section & Interactive Simulator
   ========================================================================== */
.usecase-section {
	padding: 100px 0;
	background-color: #dbe4f4 !important; /* Force light blue-gray background */
	position: relative;
	overflow: hidden;
	color: #0f172a !important; /* Force dark text color */
}

/* Ensure the section header text is always dark */
.usecase-section .section-subtitle {
	color: #5433e1 !important; /* Premium brand purple */
}

.usecase-section .section-title {
	color: #0f172a !important;
}

.usecase-section .section-description {
	color: #475569 !important;
}

/* Tabs container: Clean flat white bar */
.usecase-tabs-container {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 50px;
}

.usecase-tabs {
	display: flex;
	background-color: #ffffff !important;
	border: 1px solid rgba(15, 23, 42, 0.06) !important;
	padding: 6px;
	border-radius: 30px;
	gap: 4px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.usecase-tab-btn {
	background: none !important;
	border: none !important;
	padding: 10px 24px;
	font-family: 'Outfit', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #475569 !important;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.usecase-tab-btn:hover {
	color: #0f172a !important;
}

.usecase-tab-btn.active {
	background-color: #d1e1f8 !important; /* Light blue-gray active state tab */
	color: #0f172a !important;
	font-weight: 600;
}

.usecase-widget-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 50px;
	align-items: center;
}

@media (max-width: 991px) {
	.usecase-widget-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

.usecase-nav-column {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.usecase-pills-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

@media (max-width: 576px) {
	.usecase-pills-list {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
}

.usecase-pill {
	background: none !important;
	border: none !important;
	text-align: left;
	padding: 14px 24px;
	font-family: 'Outfit', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #475569 !important;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: none !important;
}

.usecase-pill:hover {
	color: #0f172a !important;
	background-color: rgba(255, 255, 255, 0.4) !important;
}

.usecase-pill.active {
	background-color: #ffffff !important;
	color: #0f172a !important;
	box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06) !important;
	border: 1px solid rgba(15, 23, 42, 0.04) !important;
	font-weight: 600;
}

.usecase-pill span {
	color: inherit !important;
}

/* Hide chevron icons in vertical list to match mockup */
.usecase-pill i {
	display: none !important;
}

.usecase-details-card {
	background-color: rgba(255, 255, 255, 0.5) !important;
	border: 1px solid rgba(15, 23, 42, 0.05) !important;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02) !important;
}

.usecase-details-card h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #0f172a !important;
}

.usecase-details-card p {
	font-size: 15px;
	line-height: 1.6;
	color: #475569 !important;
	margin-bottom: 24px;
}

.usecase-details-card .btn-primary {
	background: linear-gradient(135deg, #5433e1, #ec307c) !important;
	color: #ffffff !important;
	box-shadow: 0 4px 15px rgba(84, 51, 225, 0.2) !important;
}

/* Phone Simulator styling for Usecases */
.usecase-phone-column {
	display: flex;
	justify-content: center;
	align-items: center;
}

.phone-simulator-container {
	position: relative;
	width: 100%;
	max-width: 320px;
}

.usecase-section .phone-simulator-mockup {
	background-color: #d6e0f5 !important;
	border: 12px solid #ffffff !important; /* White bezel */
	border-radius: 36px !important;
	box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.15) !important;
	overflow: hidden;
	position: relative;
	aspect-ratio: 9 / 19.5;
	display: flex;
	flex-direction: column;
}

.usecase-section .phone-camera-notch {
	background-color: #ffffff !important; /* White camera notch */
	height: 24px;
	width: 130px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	border-bottom-left-radius: 14px;
	border-bottom-right-radius: 14px;
	z-index: 10;
}

.usecase-section .phone-screen-display {
	background-color: #d6e0f5 !important;
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	padding-top: 24px;
}

/* Status Bar */
.usecase-section .phone-status-bar {
	display: flex;
	justify-content: space-between;
	padding: 6px 16px;
	font-size: 11px;
	color: #475569 !important;
	font-weight: 500;
	z-index: 5;
}

.usecase-section .phone-status-icons {
	display: flex;
	gap: 5px;
	color: #475569 !important;
}

/* Chat Header */
.usecase-section .phone-chat-header {
	display: flex;
	align-items: center;
	padding: 10px 16px;
	background-color: #d6e0f5 !important;
	border-bottom: 1px solid rgba(15, 23, 42, 0.05) !important;
	color: #0f172a !important;
}

.usecase-section .phone-chat-header .chat-back {
	font-size: 14px;
	margin-right: 12px;
	cursor: pointer;
	color: #475569 !important;
}

.usecase-section .phone-chat-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #ffefe5 !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	font-size: 14px;
	color: #ff5e3a !important;
}

.usecase-section .phone-chat-user-info {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.usecase-section .phone-chat-username-row {
	display: flex;
	align-items: center;
	gap: 6px;
}

.usecase-section .phone-chat-username {
	font-size: 13px;
	font-weight: 700;
	font-family: 'Outfit', sans-serif;
	color: #0f172a !important;
}

.usecase-section .phone-verified-badge {
	color: #10b981 !important;
	font-size: 11px;
	display: flex;
	align-items: center;
}

.usecase-section .phone-chat-status {
	font-size: 10px;
	color: #475569 !important;
}

.usecase-section .phone-chat-header .chat-menu {
	font-size: 14px;
	color: #475569 !important;
	cursor: pointer;
}

/* Chat Body */
.usecase-section .phone-chat-body {
	flex: 1;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	overflow-y: auto;
	background-color: #d6e0f5 !important;
}

.usecase-section .phone-chat-time {
	text-align: center;
	font-size: 9px;
	color: #64748b !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}

/* Message Card (RCS Style) */
.usecase-section .phone-message-card {
	background-color: #ffffff !important;
	border-radius: 16px !important;
	border-top-left-radius: 4px !important;
	padding: 14px;
	box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05) !important;
	max-width: 90%;
	align-self: flex-start;
}

.usecase-section .phone-message-card p {
	font-size: 12px;
	line-height: 1.5;
	color: #0f172a !important;
	margin: 0;
	font-weight: 500;
}

.usecase-section .phone-message-card strong {
	color: #0f172a !important;
	font-weight: 700;
}

/* Expiration notification text in blue */
.usecase-section .phone-message-card .expire-text {
	color: #2563eb !important;
	font-size: 11px;
	margin-top: 6px;
	font-weight: 500;
}

.usecase-section .phone-message-divider {
	height: 1px;
	background-color: #e2e8f0 !important;
	margin: 12px 0 10px 0;
}

.usecase-section .phone-message-action {
	text-align: center;
}

.usecase-section .phone-autofill-btn {
	color: #2563eb !important;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: color 0.2s;
}

.usecase-section .phone-autofill-btn:hover {
	color: #1d4ed8 !important;
}

.usecase-section .phone-opt-out-text {
	text-align: center;
	font-size: 9px;
	color: #64748b !important;
	margin: 8px 0;
}

/* Response Buttons */
.usecase-section .phone-response-buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: auto;
}

.usecase-section .phone-btn-primary {
	background-color: #c6eb89 !important; /* Soft lime green */
	border: none !important;
	color: #0f172a !important;
	padding: 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	transition: background-color 0.2s;
	text-align: center;
}

.usecase-section .phone-btn-primary:hover {
	background-color: #b8e274 !important;
}

.usecase-section .phone-btn-secondary {
	background-color: #ffffff !important;
	border: 1px solid #cbd5e1 !important;
	color: #475569 !important;
	padding: 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	width: 100%;
	transition: all 0.2s;
	text-align: center;
}

.usecase-section .phone-btn-secondary:hover {
	background-color: #f8fafc !important;
	border-color: #94a3b8 !important;
	color: #0f172a !important;
}

/* Chat Footer Input */
.usecase-section .phone-chat-input-bar {
	display: flex;
	align-items: center;
	padding: 10px 14px;
	background-color: #d6e0f5 !important;
	border-top: 1px solid rgba(15, 23, 42, 0.05) !important;
	gap: 12px;
	color: #475569 !important;
	font-size: 14px;
}

.usecase-section .phone-chat-input-bar i {
	cursor: pointer;
	transition: color 0.2s;
	color: #475569 !important;
}

.usecase-section .phone-chat-input-bar i:hover {
	color: #0f172a !important;
}

.usecase-section .phone-mock-input {
	background-color: #ffffff !important;
	border: 1px solid #cbd5e1 !important;
	border-radius: 18px;
	padding: 6px 14px;
	font-size: 11px;
	color: #64748b !important;
	flex: 1;
}.hero-phone-simulator {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
}

/* Global Phone Simulator Mockup Styles (for Hero and generic mockups) */
.phone-simulator-mockup {
	background-color: #0c0f1d;
	border: 12px solid #1e293b;
	border-radius: 36px;
	box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	position: relative;
	aspect-ratio: 9 / 19.5;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.dark-theme .phone-simulator-mockup {
	border-color: #334155;
	background-color: #0f172a;
}

.phone-camera-notch {
	background-color: #1e293b;
	height: 24px;
	width: 130px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	border-bottom-left-radius: 14px;
	border-bottom-right-radius: 14px;
	z-index: 10;
}

.dark-theme .phone-camera-notch {
	background-color: #334155;
}

.phone-screen-display {
	background-color: #0c0f1d;
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	padding-top: 24px;
}

.phone-status-bar {
	display: flex;
	justify-content: space-between;
	padding: 6px 16px;
	font-size: 11px;
	color: #94a3b8;
	font-weight: 500;
	z-index: 5;
}

.phone-status-icons {
	display: flex;
	gap: 5px;
}

.phone-chat-header {
	display: flex;
	align-items: center;
	padding: 10px 16px;
	background-color: #1e293b;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	color: #ffffff;
}

.phone-chat-header .chat-back {
	font-size: 14px;
	margin-right: 12px;
	cursor: pointer;
	color: #94a3b8;
}

.phone-chat-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	font-size: 14px;
	color: #ffffff;
}

.phone-chat-user-info {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.phone-chat-username-row {
	display: flex;
	align-items: center;
	gap: 6px;
}

.phone-chat-username {
	font-size: 13px;
	font-weight: 600;
	font-family: 'Outfit', sans-serif;
}

.phone-verified-badge {
	color: #10b981;
	font-size: 11px;
	display: flex;
	align-items: center;
}

.phone-chat-status {
	font-size: 10px;
	color: #94a3b8;
}

.phone-chat-header .chat-menu {
	font-size: 14px;
	color: #94a3b8;
	cursor: pointer;
}

.phone-chat-body {
	flex: 1;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	overflow-y: auto;
}

.phone-chat-time {
	text-align: center;
	font-size: 9px;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}

.phone-message-card {
	background-color: #ffffff;
	border-radius: 16px;
	border-top-left-radius: 4px;
	padding: 14px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	max-width: 90%;
	align-self: flex-start;
}

.phone-message-card p {
	font-size: 12px;
	line-height: 1.5;
	color: #0f172a !important;
	margin: 0;
}

.phone-message-divider {
	height: 1px;
	background-color: #e2e8f0;
	margin: 12px 0 10px 0;
}

.phone-message-action {
	text-align: center;
}

.phone-autofill-btn {
	color: #2563eb;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: color 0.2s;
}

.phone-autofill-btn:hover {
	color: #1d4ed8;
}

.phone-opt-out-text {
	text-align: center;
	font-size: 9px;
	color: #64748b;
	margin: 8px 0;
}

.phone-response-buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: auto;
}

.phone-btn-primary {
	background-color: #bde285;
	border: none;
	color: #0f172a;
	padding: 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	transition: background-color 0.2s;
}

.phone-btn-primary:hover {
	background-color: #a8d56a;
}

.phone-btn-secondary {
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	padding: 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	width: 100%;
	transition: all 0.2s;
}

.phone-btn-secondary:hover {
	background-color: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.3);
}

.phone-chat-input-bar {
	display: flex;
	align-items: center;
	padding: 10px 14px;
	background-color: #1e293b;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	gap: 12px;
	color: #94a3b8;
	font-size: 14px;
}

.phone-chat-input-bar i {
	cursor: pointer;
	transition: color 0.2s;
}

.phone-chat-input-bar i:hover {
	color: #ffffff;
}

.phone-mock-input {
	background-color: #0f172a;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	padding: 6px 14px;
	font-size: 11px;
	color: #64748b;
	flex: 1;
}

/* ==========================================================================
   Wave Signal flow animations
   ========================================================================== */
.wave-signal-pulse {
	position: absolute;
	height: 3px;
	background: linear-gradient(270deg, #ec307c, #5433e1, transparent);
	border-radius: 2px;
	z-index: 15;
	pointer-events: none;
	box-shadow: 0 0 12px #ec307c, 0 0 4px #5433e1;
	animation: waveFlowLeft 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes waveFlowLeft {
	0% {
		width: 0;
		opacity: 0;
		transform: translateX(0);
	}
	20% {
		width: 80px;
		opacity: 1;
	}
	80% {
		width: 80px;
		opacity: 0.9;
	}
	100% {
		width: 0;
		opacity: 0;
		transform: translateX(var(--travel-distance));
	}
}

.hero-usecase-box .phone-screen-display {
	position: relative;
	transition: box-shadow 0.3s ease;
}

.hero-usecase-box .phone-screen-display.phone-received-flash::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(236, 48, 124, 0.15); /* Soft pink receiver glow */
	pointer-events: none;
	z-index: 20;
	animation: phoneScreenGlow 0.4s ease-out forwards;
}

@keyframes phoneScreenGlow {
	0% { opacity: 0; }
	30% { opacity: 1; }
	100% { opacity: 0; }
}

.hero-usecase-box .phone-screen-display.phone-received-flash .phone-message-card {
	animation: messagePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes messagePop {
	0% { transform: scale(1); }
	50% { transform: scale(1.04); box-shadow: 0 10px 25px rgba(236, 48, 124, 0.15); }
	100% { transform: scale(1); }
}

/* ==========================================================================
   Hero Background Logo Watermark Style
   ========================================================================== */
.hero-bg-logo-watermark {
	position: absolute;
	top: 50%;
	right: 0px; /* Aligned exactly on the right edge (not cut off) */
	transform: translateY(-50%);
	width: 360px; /* Resized to 360px */
	height: 360px; /* Resized to 360px */
	opacity: 0.15; /* Subtle watermark opacity */
	pointer-events: none;
	z-index: 0;
	transition: opacity 0.3s ease;
}

.dark-theme .hero-bg-logo-watermark {
	opacity: 0.06; /* Softer in dark theme */
}

.hero-bg-logo-watermark img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 1024px) {
	.hero-bg-logo-watermark {
		width: 320px; /* Scaled down for tablets */
		height: 320px;
		right: 0px;
		opacity: 0.12;
	}
}

@media (max-width: 768px) {
	.hero-bg-logo-watermark {
		width: 260px; /* Scaled down for mobile */
		height: 260px;
		right: 0px;
		top: 45%;
		opacity: 0.08;
	}
}

@media (max-width: 480px) {
	.hero-bg-logo-watermark {
		width: 200px; /* Scaled down for small screens */
		height: 200px;
		right: 0px;
		top: 40%;
		opacity: 0.06;
	}
}

/* Global phone simulator input layout safety protection */
.phone-chat-input-bar i {
	flex-shrink: 0 !important;
}

.phone-mock-input {
	min-width: 0 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

/* Pricing Currency Switch Toggle Styling */
.currency-toggle-container {
	margin-top: 15px;
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
}

.currency-toggle {
	display: inline-flex;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	padding: 3px;
	gap: 2px;
}

body.light-theme .currency-toggle {
	background-color: rgba(0, 0, 0, 0.03);
}

.currency-toggle-btn {
	background: none;
	border: none;
	border-radius: 4px;
	padding: 6px 16px;
	font-size: 11px;
	font-weight: 700;
	color: var(--text-secondary);
	cursor: pointer;
	transition: var(--transition);
	outline: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.currency-toggle-btn:hover {
	color: var(--text-primary);
}

.currency-toggle-btn.active {
	background-color: var(--primary);
	color: #ffffff !important;
}

/* Interactive Usecase Simulator Component Floating Animations */
@keyframes floatPhoneMockup {
	0% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-14px) rotate(1deg);
	}
	100% {
		transform: translateY(0) rotate(0deg);
	}
}

@keyframes floatPillsList {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes floatTabsContainer {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-6px);
	}
	100% {
		transform: translateY(0);
	}
}

/* Applying floats to the interactive simulator elements */
.hero-usecase-grid .phone-simulator-mockup {
	animation: floatPhoneMockup 4.5s ease-in-out infinite;
	will-change: transform;
	transition: box-shadow 0.3s ease;
}

/* Pause float on hover for precise user clicks */
.hero-usecase-grid .phone-simulator-mockup:hover {
	animation-play-state: paused;
}

.hero-usecase-box .usecase-pills-list {
	animation: floatPillsList 5.5s ease-in-out infinite;
	will-change: transform;
}

.hero-usecase-box .usecase-pills-list:hover {
	animation-play-state: paused;
}

.hero-usecase-box .usecase-tabs-container {
	animation: floatTabsContainer 5s ease-in-out infinite;
	will-change: transform;
}

.hero-usecase-box .usecase-tabs-container:hover {
	animation-play-state: paused;
}

/* Site Logo visibility toggle logic for light/dark theme modes */
.site-logo.white-logo {
	display: none !important;
}

.dark-theme .site-logo.default-logo {
	display: none !important;
}

.dark-theme .site-logo.white-logo {
	display: inline-block !important;
}

/* Typewriter typing animation cursor and entrance slide-up styling */
.hero-content h1.hero-title {
	animation: heroTitleSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	opacity: 0; /* Starts hidden and slides up */
}

@keyframes heroTitleSlideUp {
	0% {
		opacity: 0;
		transform: translateY(22px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.typewriter-cursor {
	display: inline-block;
	color: var(--primary);
	font-weight: 500;
	margin-left: 3px;
	animation: cursorBlink 0.8s infinite;
}

.typewriter-cursor.blink {
	animation: cursorBlink 0.8s infinite;
}

.typewriter-cursor.fade-out {
	opacity: 0;
	transition: opacity 1s ease;
}

@keyframes cursorBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}
