﻿
#newpage-button-80 {
	display: none;
}
#cms_root {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-grow: 1;
}
#cont-1103 {
	align-items: var(--col-align-items,inherit);
	padding-top: var(--section-padding-top);
	padding-bottom: var(--section-padding-bottom);
}
#cont-1108 {
	align-items: var(--col-align-items,inherit);
	padding-top: var(--section-padding-top);
	padding-bottom: var(--section-padding-bottom);
}
#cont-1114 {
	align-items: var(--col-align-items,inherit);
	padding-top: var(--section-padding-top);
	padding-bottom: var(--section-padding-bottom);
}
#cont-1120 {
	align-items: var(--col-align-items,inherit);
	padding-top: var(--section-padding-top);
	padding-bottom: var(--section-padding-bottom);
}
#cont-1132 {
	align-items: var(--col-align-items,inherit);
	padding-top: var(--section-padding-top);
	padding-bottom: var(--section-padding-bottom);
}
#html-1136 {
	margin: 0;
}
#html-1136 .call-flow-section {
	position: relative;
	background: var(--bgcolor);
	color: var(--color);
	padding: 100px 0;
	overflow: hidden;
}
#html-1136 .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
#html-1136 .section-header {
	text-align: center;
	margin-bottom: 80px;
}
#html-1136 .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	background: var(--hicolor);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
#html-1136 .section-subtitle {
	font-size: 1.1rem;
	color: var(--color-neutral-500);
	max-width: 600px;
	margin: 0 auto 40px;
	line-height: 1.6;
}
#html-1136 .play-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-700));
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(166, 85, 247, 0.3);
}
#html-1136 .play-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(166, 85, 247, 0.4);
}
#html-1136 .play-button.playing {
	background: linear-gradient(135deg, var(--color-secondary-600), var(--color-secondary-700));
}
#html-1136 .flow-container {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 800px;
	margin: 0 auto;
}
#html-1136 .flow-step {
	display: flex;
	align-items: center;
	gap: 30px;
	position: relative;
}
#html-1136 .flow-step.active {
	opacity: 1;
	transform: translateX(0);
}
#html-1136 .flow-step.completed :is(.step-icon , #html-1136 .step-content) {
	opacity: 0.8;
}
#html-1136 .flow-step.animation-mode :is(.step-icon , #html-1136 .step-content) {
	opacity: 0.3;
}
#html-1136 .flow-step.animation-mode.active :is(.step-icon , #html-1136 .step-content) {
	opacity: 1;
	transform: translateX(0);
}
#html-1136 .flow-step.animation-mode.completed :is(.step-icon , #html-1136 .step-content) {
	opacity: 0.7;
}
#html-1136 .step-number {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--bgcolor);
	border: 2px solid var(--color-primary-500);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--color);
	position: relative;
	z-index: 2;
}
#html-1136 .step-number.active {
	background: var(--color-primary-600);
	box-shadow: 0 0 20px rgba(166, 85, 247, 0.6);
	animation: pulse 2s infinite;
}
#html-1136 .step-icon {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: 12px;
	background: var(--color-bg-card);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	transition: all 0.3s ease;
}
#html-1136 .step-icon.active {
	background: rgba(166, 85, 247, 0.2);
	border-color: var(--color-primary-500);
	transform: scale(1.1);
}
#html-1136 .step-content {
	flex: 1;
}
#html-1136 .step-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--color);
}
#html-1136 .step-description {
	color: var(--color-neutral-500);
	line-height: 1.5;
	margin-bottom: 10px;
}
#html-1136 .step-details {
	display: flex;
	gap: 15px;
	margin-top: 10px;
}
#html-1136 .detail-badge {
	background: rgba(60, 131, 246, 0.1);
	border: 1px solid rgba(60, 131, 246, 0.3);
	color: var(--color-secondary-300);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 500;
}
#html-1136 .flow-line {
	position: absolute;
	left: 30px;
	transform: translateX(-50%);
	top: 60px;
	bottom: 60px;
	width: 2px;
	background: linear-gradient(180deg, var(--color-primary-500), var(--color-secondary-500));
	opacity: 0.3;
}
#html-1136 .flow-line.active {
	opacity: 1;
}
#html-1136 .progress-indicator {
	position: absolute;
	left: 30px;
	transform: translateX(-50%);
	top: 60px;
	width: 4px;
	height: 0;
	background: var(--color-primary-500);
	border-radius: 2px;
	box-shadow: 0 0 10px var(--color-primary-500);
	transition: height 0.8s ease;
}
#html-1136 /* Data flow animation */ .data-flow {
	position: absolute;
	right: -100px;
	top: 50%;
	transform: translateY(-50%);
	width: 80px;
	height: 200px;
	opacity: 0;
	pointer-events: none;
}
#html-1136 .data-flow.active {
	opacity: 1;
	animation: dataFlow 2s ease-in-out;
}
#html-1136 .data-particle {
	position: absolute;
	width: 6px;
	height: 6px;
	background: var(--color-secondary-500);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--color-secondary-500);
}
#html-1136 /* Background elements */ .bg-element {
	position: absolute;
	border-radius: 50%;
	opacity: 0.05;
	filter: blur(60px);
	pointer-events: none;
}
#html-1136 .bg-element-1 {
	top: 10%;
	left: -10%;
	width: 300px;
	height: 300px;
	background: var(--color-primary-700);
	animation: float 20s infinite alternate ease-in-out;
}
#html-1136 .bg-element-2 {
	bottom: 10%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: var(--color-secondary-700);
	animation: float 25s infinite alternate-reverse ease-in-out;
}
#html-1118 .try-live-section {
	padding: 0px 0px 80px;
	min-height: 100vh;
	color: var(--color-text-primary);
	position: relative;
}
#html-1118 .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
#html-1118 .section-header {
	text-align: center;
	margin-bottom: 60px;
}
#html-1118 .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 16px;
	background: var(--gradient-text-light);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
#html-1118 .section-subtitle {
	font-size: 1.1rem;
	color: var(--color-text-secondary);
	max-width: 600px;
	margin: 0 auto;
}
#html-1118 /* Scenario Selection */ .scenario-grid {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
#html-1118 .scenario-card {
	background: var(--color-bg-card);
	border: 2px solid transparent;
	border-radius: 8px;
	padding: 12px 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	font-size: 0.9rem;
	font-weight: 500;
	white-space: nowrap;
}
#html-1118 .scenario-card:hover {
	border-color: var(--color-primary-600);
	background: var(--color-primary-900);
}
#html-1118 .scenario-card.active {
	border-color: var(--color-primary-600);
	background: var(--color-primary-800);
	color: var(--color-primary-300);
}
#html-1118 /* Demo Player */ .demo-player {
	background: var(--color-bg-card);
	border-radius: 16px;
	padding: 0;
	backdrop-filter: blur(20px);
	border: 1px solid var(--color-bg-card);
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
}
#html-1118 .demo-player.active {
	opacity: 1;
	transform: translateY(0);
}
#html-1118 .player-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 400px;
}
#html-1118 /* Audio Player Side */ .audio-section {
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-right: 1px solid var(--color-bg-card);
}
#html-1118 .audio-player {
	text-align: center;
	width: 100%;
}
#html-1118 .scenario-info {
	margin-bottom: 32px;
}
#html-1118 .scenario-info h3 {
	font-size: 1.4rem;
	margin-bottom: 8px;
}
#html-1118 .scenario-info p {
	color: var(--color-text-secondary);
}
#html-1118 .play-button {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-700));
	border: none;
	color: var(--color-text-primary);
	font-size: 32px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	box-shadow: 0 8px 24px var(--color-primary-900);
}
#html-1118 .play-button span {
	line-height: 1px;
}
#html-1118 .play-button:hover {
	transform: scale(1.05);
	box-shadow: 0 12px 32px var(--color-primary-800);
}
#html-1118 .play-button.playing {
	animation: pulse 2s infinite;
}
#html-1118 .audio-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 16px;
	font-size: 0.9rem;
	color: var(--color-text-muted);
}
#html-1118 .progress-bar {
	width: 100%;
	height: 4px;
	background: var(--color-neutral-800);
	border-radius: 2px;
	margin: 16px 0;
	cursor: pointer;
}
#html-1118 .progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--color-primary-600), var(--color-primary-700));
	border-radius: 2px;
	width: 0%;
	transition: width 0.1s ease;
}
#html-1118 .transcript-section {
	padding: 40px;
	overflow: hidden;
	max-height: 400px;
}
#html-1118 .transcript-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--color-bg-card);
}
#html-1118 .transcript-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0;
}
#html-1118 .auto-scroll-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	color: var(--color-text-secondary);
}
#html-1118 .toggle-switch {
	width: 40px;
	height: 20px;
	background: var(--color-neutral-700);
	border-radius: 10px;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}
#html-1118 .toggle-switch.active {
	background: var(--color-primary-600);
}
#html-1118 .toggle-knob {
	width: 16px;
	height: 16px;
	background: var(--color-text-primary);
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 2px;
	transition: all 0.3s ease;
}
#html-1118 .toggle-switch.active .toggle-knob {
	left: 22px;
}
#html-1118 .transcript-content {
	line-height: 1.6;
	overflow-y: auto;
	height: 90%;
}
#html-1118 .transcript-line {
	margin-bottom: 16px;
	opacity: 0.5;
	transition: all 0.3s ease;
	padding: 8px 0;
}
#html-1118 .transcript-line.active {
	opacity: 1;
	background: var(--color-primary-900);
	border-left: 3px solid var(--color-primary-600);
	padding-left: 12px;
	margin-left: -12px;
}
#html-1118 .speaker {
	font-weight: 600;
	color: var(--color-primary-600);
	margin-bottom: 4px;
	display: block;
}
#html-1118 .speaker.elvira {
	color: var(--color-primary-300);
}
#html-1118 .transcript-content::-webkit-scrollbar {
	width: 6px;
}
#html-1118 .transcript-content::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
}
#html-1118 .transcript-content::-webkit-scrollbar-thumb {
	background: rgba(144, 97, 249, 0.5);
	border-radius: 3px;
}
#html-1118 .transcript-content::-webkit-scrollbar-thumb:hover {
	background: rgba(144, 97, 249, 0.7);
}
#html-1112 {
	overflow: hidden;
	margin: 0;
	position: relative;
}
#html-1112 ul {
	margin: 0;
}
#html-1112 .features-section {
	padding: 20px;
	max-width: 1200px;
	margin: 0 auto;
}
#html-1112 .section-header {
	text-align: left;
	margin-bottom: 80px;
	opacity: 0;
	animation: fadeInUp 0.8s ease-out forwards;
	max-width: 800px;
}
#html-1112 .section-title {
	font-size: 2.5rem;
	margin-bottom: 20px;
	background: var(--gradient-text-light);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
#html-1112 .section-subtitle {
	font-size: 1.1rem;
	color: var(--color-text-secondary);
	line-height: 1.6;
}
#html-1112 .features-grid {
	display: flex;
	x-xxgrid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	position: relative;
	padding-block-end: 50px;
}
#html-1112 .feature-card {
	background: var(--color-bg-card);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 1rem 1rem 3rem;
	position: relative;
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
	display: block;
	flex: 0 0 28%;
	min-width: 270px;
}
#html-1112 .feature-card:nth-child(1) {
	animation-delay: 0.1s;
}
#html-1112 .feature-card:nth-child(2) {
	animation-delay: 0.2s;
}
#html-1112 .feature-card:nth-child(3) {
	animation-delay: 0.3s;
}
#html-1112 .feature-card:nth-child(4) {
	animation-delay: 0.4s;
}
#html-1112 .feature-card:hover {
	border-color: rgba(148, 98, 249, 0.3);
	background: rgba(255, 255, 255, 0.08);
}
#html-1112 .feature-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-700));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	position: relative;
}
#html-1112 .feature-icon svg {
	width: 26px;
	height: 26px;
	stroke: var(--color-text-primary);
	stroke-width: 2;
	fill: none;
}
#html-1112 .feature-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--color-text-primary);
}
#html-1112 .feature-description {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--color-text-secondary);
	margin-bottom: 20px;
}
#html-1112 .feature-list {
	list-style: none;
}
#html-1112 .feature-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 10px;
	font-size: 0.9rem;
	color: var(--color-text-muted);
}
#html-1112 .feature-list li:before {
	content: "✓";
	color: var(--color-primary-600);
	font-weight: bold;
	margin-right: 10px;
	margin-top: 2px;
}
#html-1112 .card-btn {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-text-primary);
	color: var(--color-bg-dark);
	margin-block-start: auto;
	position: absolute;
	bottom: 0%;
	left: 50%;
	border-radius: 50%;
	transform: rotate(-45deg) translate(-50%);
	transform-origin: center;
	border: 10px solid var(--color-bg-dark);
	box-shadow: 1px -1px 0px 1px rgba(255, 255, 255, 0.1);
}
#html-1112 .more-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(135deg, rgba(148, 98, 249, 0.1), rgba(102, 0, 204, 0.05));
	border: 1px solid rgba(148, 98, 249, 0.2);
}
#html-1112 .more-card:hover {
	border-color: var(--color-primary-600);
	background: linear-gradient(135deg, rgba(148, 98, 249, 0.15), rgba(102, 0, 204, 0.08));
}
#html-1112 .more-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-700));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}
#html-1112 .more-icon svg {
	width: 32px;
	height: 32px;
	stroke: var(--color-text-primary);
	stroke-width: 2.5;
}
#html-1112 .more-title {
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--color-text-primary);
}
#html-1112 .more-description {
	font-size: 1rem;
	color: var(--color-text-secondary);
	max-width: 250px;
}
#html-1112 .gradient-orb {
	position: absolute;
	width: 60%;
	height: 60%;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0.2;
	filter: blur(100px);
	background: var(--gradient-glow-indigo);
	animation: float 30s infinite alternate-reverse ease-in-out;
}
#html-1112 .gradient-orb-1 {
	top: -22%;
	right: -15%;
}
#html-1112 .gradient-orb-2 {
	bottom: -200px;
	left: -200px;
}
#cont-1209 {
	align-items: var(--col-align-items,inherit);
	padding-top: var(--section-padding-top);
	padding-bottom: var(--section-padding-bottom);
}
#html-1216 {
	margin: 0;
}
#html-1216 .dashboard-section {
	padding: 100px 20px;
	position: relative;
	overflow: hidden;
}
#html-1216 .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	border-radius: 20px;
}
#html-1216 .section-header {
	text-align: center;
	margin-bottom: 60px;
}
#html-1216 .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	background: linear-gradient(90deg, var(--color-primary-700), var(--color-secondary-700));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
#html-1216 .section-subtitle {
	font-size: 1.1rem;
	color: var(--color-neutral-600);
	max-width: 700px;
	margin: 0 auto 40px;
	line-height: 1.6;
}
#html-1216 .dashboard-preview {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
	border: 1px solid var(--color-neutral-200);
	backdrop-filter: blur(10px);
}
#html-1216 .dashboard-image {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
}
#html-1216 .image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(166, 85, 247, 0.05) 0%, rgba(60, 131, 246, 0.05) 50%, rgba(166, 85, 247, 0.05) 100%);
	pointer-events: none;
	z-index: 3;
}
#html-1216 .preview-badge {
	position: absolute;
	top: 75px;
	right: 20px;
	background: rgba(166, 85, 247, 0.95);
	backdrop-filter: blur(10px);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 6px;
	animation: pulse-badge 3s infinite;
	box-shadow: 0 4px 15px rgba(166, 85, 247, 0.3);
}
#html-1216 .live-dot {
	width: 8px;
	height: 8px;
	background: var(--color-success);
	border-radius: 50%;
	animation: pulse-live 2s infinite;
}
#col-1212 {
	position: relative;
	overflow-x: hidden;
}
#col-1212 .bg-element {
	position: absolute;
	border-radius: 50%;
	opacity: 0.2;
	filter: blur(100px);
	pointer-events: none;
}
#col-1212 .bg-element-1 {
	top: 10%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: var(--color-primary-400);
	animation: float-2 2s infinite alternate ease-in-out;
}
#col-1212 .bg-element-2 {
	bottom: 29%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: var(--color-primary-400);
	animation: float 2s infinite alternate-reverse ease-in-out;
}
#col-1123 {
	x-xxposition: relative;
	overflow-x: hidden;
}
#col-1123 .bg-element {
	position: absolute;
	border-radius: 50%;
	opacity: 0.2;
	filter: blur(100px);
	pointer-events: none;
}
#col-1123 .bg-element-1 {
	top: 10%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: var(--color-primary-400);
	animation: float-2 2s infinite alternate ease-in-out;
}
#col-1123 .bg-element-2 {
	bottom: 29%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: var(--color-primary-400);
	animation: float 2s infinite alternate-reverse ease-in-out;
}
#html-1124 /* Animations */ @keyframes float-slow {
	transform: translate(0, 0);
}
#html-1124 100% {
	transform: translate(5%, 5%);
}
#html-1124 .connection-section {
	position: relative;
	width: 100%;
	padding: 100px 0;
	background: var(--color-bg-dark);
	color: var(--color-text-primary);
	overflow: hidden;
}
#html-1124 .connection-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
#html-1124 .section-title {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
	z-index: 10;
}
#html-1124 .section-title h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	background: var(--gradient-text-light);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
#html-1124 .section-title p {
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
	color: var(--color-text-secondary);
	line-height: 1.6;
}
#html-1124 /* Connection visualization styles */ .connection-visualization {
	position: relative;
	height: 600px;
	margin: 0 auto;
	max-width: 1000px;
}
#html-1124 /* Nodes */ .node {
	position: absolute;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	background: var(--color-primary-600);
	font-weight: 600;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	z-index: 2;
	cursor: pointer;
}
#html-1124 .node:hover {
	transform: scale(1.05);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}
#html-1124 .node-center {
	width: 140px;
	height: 140px;
}
#html-1124 .node-customer {
	width: 110px;
	height: 110px;
}
#html-1124 .node-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 10px;
}
#html-1124 .node-icon {
	font-size: 2rem;
	margin-bottom: 5px;
}
#html-1124 .node-center .node-icon {
	font-size: 2.5rem;
}
#html-1124 .node-label {
	font-size: 1rem;
}
#html-1124 .node-center .node-label {
	font-size: 1.2rem;
}
#html-1124 /* Data source nodes */ .node-data {
	width: 100px;
	height: 100px;
	background: radial-gradient(circle, var(--color-secondary-500), var(--color-secondary-700));
}
#html-1124 /* Connection lines */ .connections {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
#html-1124 .connection-line {
	position: absolute;
	height: 2px;
	background: transparent;
	transform-origin: left center !important;
	z-index: 1;
	overflow: visible;
}
#html-1124 .connection-line::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, var(--color-primary-500), var(--color-secondary-500));
	opacity: 0.6;
	border-radius: 2px;
	box-shadow: 0 0 8px rgba(166, 85, 247, 0.6);
}
#html-1124 .connection-animation {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-primary-500);
	transform: translateY(-4px);
	box-shadow: 0 0 10px var(--color-primary-500);
	animation: move-dot 3s linear infinite;
}
#html-1124 .connection-reverse .connection-animation {
	animation: move-dot-reverse 3s linear infinite;
	background: var(--color-secondary-500);
	box-shadow: 0 0 10px var(--color-secondary-500);
	animation-delay: 1.5s;
}
#html-1124 /* Floating elements */ .floating-element {
	position: absolute;
	opacity: 0.1;
	filter: blur(40px);
	border-radius: 50%;
	z-index: 0;
}
#html-1124 .float-1 {
	width: 300px;
	height: 300px;
	background: var(--color-primary-700);
	top: -50px;
	right: 10%;
	animation: float-slow 15s infinite alternate ease-in-out;
}
#html-1124 .float-2 {
	width: 250px;
	height: 250px;
	background: var(--color-secondary-700);
	bottom: -30px;
	left: 5%;
	animation: float-slow 12s infinite alternate-reverse ease-in-out;
}
#html-1124 /* Info boxes */ .info-box {
	position: absolute;
	background: rgba(22, 22, 39, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(166, 85, 247, 0.3);
	border-radius: 8px;
	padding: 15px;
	color: var(--color-text-primary);
	width: 220px;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	z-index: 10;
	pointer-events: none;
	transform: translateY(10px);
	box-shadow: 0 0 0 rgba(166, 85, 247, 0);
}
#html-1124 .info-box[style*='opacity: 1'] {
	box-shadow: 0 0 15px rgba(166, 85, 247, 0.5);
}
#html-1124 .info-title {
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--color-primary-300);
}
#html-1124 .info-text {
	font-size: 0.9rem;
	line-height: 1.4;
	color: var(--color-text-secondary);
}
#html-1124 /* Responsive styles */ @media (max-width: 992px) {
	height: 500px;
}
#html-1124 .node-data {
	width: 90px;
	height: 90px;
}
#cont-1244 {
	align-items: var(--col-align-items,inherit);
	padding-top: var(--section-padding-top);
	padding-bottom: var(--section-padding-bottom);
	--section-padding-bottom: 100px;
}
#html-1040 {
	position: relative;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--color-text-primary);
	overflow: hidden;
	margin: 0;
}
#html-1040 p {
	color: var(--color);
}
#html-1040 .bg-element {
	position: absolute;
	border-radius: 50%;
	opacity: 0.2;
	filter: blur(100px);
}
#html-1040 .bg-element-1 {
	top: -10%;
	left: -10%;
	width: 40%;
	height: 40%;
	background: var(--gradient-glow-purple);
	animation: float 25s infinite alternate ease-in-out;
}
#html-1040 .bg-element-2 {
	bottom: -15%;
	right: -10%;
	width: 60%;
	height: 60%;
	background: var(--gradient-glow-indigo);
	animation: float 30s infinite alternate-reverse ease-in-out;
}
#html-1040 .shape-container {
	position: relative;
	width: 300px;
	height: 300px;
	display: inline-block;
	margin-bottom: var(--space-2);
	-webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: cover;
	mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 90%);
	mask-repeat: no-repeat;
	mask-size: cover;
}
#html-1040 .shape-placeholder {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform: translateZ(0);
	will-change: transform;
	backface-visibility: hidden;
}
#html-1040 .hero-content {
	text-align: center;
	max-width: 700px;
	padding: 0 var(--space-5);
	animation: fade-in 1.5s ease-out forwards;
}
#html-1040 .hero-title {
	font-size: 2.5rem;
	margin-block-end: var(--space-2);
	background: var(--gradient-text-light);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
}
#html-1040 .hero-subtitle {
	font-size: 1rem;
	margin-block-end: var(--space-7);
}
#html-1040 .cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-3) var(--space-7);
	background: var(--gradient-primary);
	color: var(--color-text-primary);
	border: none;
	border-radius: var(--radius-md);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-semibold);
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
#html-1040 .cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(102, 0, 204, 0.4);
}
#html-1040 .elvira-dialog {
	background: var(--color-bg-dark-2);
	border-radius: var(--space-6);
	border: 1px solid rgba(148, 98, 249, 0.2);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
	padding: var(--space-6);
	width: 90%;
	max-width: 550px;
	margin: auto;
}
#html-1040 .elvira-dialog::backdrop {
	background-color: rgba(15, 15, 21, 0.75);
	backdrop-filter: blur(4px);
}
#html-1040 .elvira-dialog-content {
	position: relative;
}
#html-1040 .elvira-dialog-close {
	position: absolute;
	top: -10px;
	right: -10px;
	font-size: 1.5rem;
	background: none;
	border: none;
	color: var(--color-text-secondary);
	cursor: pointer;
	transition: all 0.2s ease;
}
#html-1040 .elvira-dialog-close:hover {
	color: var(--color-text-primary);
	transform: scale(1.1);
}
#html-1040 .elvira-dialog h3 {
	font-size: 1.5rem;
	margin-bottom: var(--space-4);
	background: var(--gradient-text-light);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
}
#html-1040 .elvira-test-options {
	display: flex;
	gap: var(--space-5);
	margin: var(--space-5) 0;
}
#html-1040 .elvira-test-option {
	flex: 1;
	background: var(--color-bg-card);
	border-radius: var(--radius-md);
	padding: var(--space-4);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
}
#html-1040 .elvira-test-option:hover {
	transform: translateY(-5px);
	border-color: rgba(148, 98, 249, 0.3);
	box-shadow: 0 10px 25px rgba(148, 98, 249, 0.1);
}
#html-1040 .option-icon {
	font-size: 2rem;
	margin-bottom: var(--space-3);
}
#html-1040 .elvira-test-option h4 {
	font-size: 1.1rem;
	margin-bottom: var(--space-2);
	color: var(--color-text-primary);
}
#html-1040 .elvira-test-option p {
	font-size: 0.9rem;
	color: var(--color-text-secondary);
	margin-bottom: var(--space-4);
	flex-grow: 1;
}
#html-1040 .elvira-option-button {
	display: inline-block;
	padding: var(--space-2) var(--space-4);
	background: var(--gradient-primary);
	color: var(--color-text-primary);
	border: none;
	border-radius: var(--radius-md);
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
}
#html-1040 .elvira-option-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 0, 204, 0.3);
}
#html-1040 .elvira-beta-note {
	font-size: 0.8rem;
	color: var(--color-text-muted);
	text-align: center;
	margin-top: var(--space-4);
}
#text-1466 p {
	font-size: 0.85rem !important;
	color: var(--color-neutral-600) !important;
	line-height: 1.4 !important;
	max-width: 600px;
	margin: 0 auto !important;
	text-align: center !important;
}
#text-1466 p strong {
	color: var(--color-neutral-800) !important;
}
#html-1178 .hero-cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
#html-1178 .hero-cta-container {
	text-align: center;
	position: relative;
	width: 1200px;
}
#html-1178 .content-box {
	padding: 20px 60px;
}
#html-1178 /* Large animated number */ .hero-number {
	font-size: 12rem;
	font-weight: 900;
	background: linear-gradient(45deg, var(--color-primary-500), var(--color-secondary-500), var(--color-primary-300));
	background-size: 300% 300%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 0.8;
	margin-bottom: 40px;
	animation: gradient-shift 4s ease-in-out infinite;
	opacity: 0.9;
}
#html-1178 .hero-main-text {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 30px;
	color: var(--color-text-dark);
	line-height: 1.1;
}
#html-1178 .hero-sub-text {
	font-size: 1.4rem;
	color: var(--color-neutral-600);
	margin-bottom: 60px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
}
#html-1178 /* Statistics row */ .stats-row {
	display: flex;
	justify-content: center;
	gap: 80px;
	margin-bottom: 80px;
	flex-wrap: wrap;
}
#html-1178 .stat-item {
	text-align: center;
	position: relative;
}
#html-1178 .stat-number {
	font-size: 3rem;
	font-weight: 800;
	color: var(--color-primary-400);
	display: block;
	margin-bottom: 8px;
}
#html-1178 .stat-label {
	font-size: 1rem;
	color: var(--color-neutral-500);
	text-transform: uppercase;
	letter-spacing: 1px;
}
#html-1178 /* Single large CTA button */ .mega-cta-button {
	display: inline-block;
	padding: 20px 30px;
	background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-700), var(--color-secondary-600));
	background-size: 300% 300%;
	color: var(--color-text-primary);
	text-decoration: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(166, 85, 247, 0.4);
	transition: all 0.4s ease;
	animation: gradient-shift 4s ease-in-out infinite;
	transform-origin: center;
}
#html-1178 .mega-cta-button:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 30px 80px rgba(166, 85, 247, 0.6);
}
#html-1178 .mega-cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}
#html-1178 .mega-cta-button:hover::before {
	left: 100%;
}
#html-1178 /* Floating particles */ .particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--color-primary-500);
	border-radius: 50%;
	opacity: 0.6;
	animation: float-particle 6s linear infinite;
}
#html-1178 .particle:nth-child(2n) {
	background: var(--color-secondary-500);
	animation-duration: 8s;
}
#html-1178 .particle:nth-child(3n) {
	background: var(--color-primary-300);
	animation-duration: 10s;
}
#html-1178 /* Geometric background shapes */ .geo-shape {
	position: absolute;
	opacity: 0.03;
	z-index: 1;
}
#html-1178 .geo-1 {
	width: 200px;
	height: 200px;
	background: var(--color-primary-600);
	top: 10%;
	left: 5%;
	transform: rotate(45deg);
	animation: slow-rotate 20s linear infinite;
}
#html-1178 .geo-2 {
	width: 150px;
	height: 150px;
	background: var(--color-secondary-600);
	bottom: 15%;
	right: 8%;
	border-radius: 50%;
	animation: pulse-scale 8s ease-in-out infinite;
}
#html-1178 .geo-3 {
	width: 0;
	height: 0;
	border-left: 75px solid transparent;
	border-right: 75px solid transparent;
	border-bottom: 120px solid var(--color-primary-500);
	top: 20%;
	right: 15%;
	animation: slow-rotate -15s linear infinite;
}
#col-1177 {
	background: var(--color-bg-light);
	border-radius: 24px;
	padding: 80px 60px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.8);
	width: 1200px;
	margin: 50px auto;
}
#cont-1174 {
	align-items: var(--col-align-items,inherit);
	padding-top: var(--section-padding-top);
	padding-bottom: var(--section-padding-bottom);
	padding-inline: 10px;
}
#form-1463 {
	max-width: 500px;
	margin: 0 auto;
}
#form-1463 > form {
	align-items: center;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-areas: "email send";
	gap: 12px;
	background: var(--color-neutral-100);
	border: 1px solid var(--color-neutral-300);
	border-radius: 50px;
	padding: 6px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}
#form-1463 > form:focus-within {
	border-color: var(--color-primary-500);
	box-shadow: 0 0 0 3px rgba(166, 85, 247, 0.1);
}
#form-1463 .input-text {
	grid-area: email;
	position: relative;
}
#form-1463 .input-text .label {
	display: none;
}
#form-1463 .input-text .bottom {
	display: none;
}
#form-1463 #email {
	width: 100%;
	background: transparent;
	border: none;
	border-radius: 50px;
	padding: 16px 20px;
	color: var(--color-neutral-800);
	font-size: 1rem;
	outline: none;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#form-1463 #email::placeholder {
	color: var(--color-neutral-500);
}
#form-1463 .input-submit {
	grid-area: send;
	position: relative;
}
#form-1463 .input-submit .label {
	display: none;
}
#form-1463 .input-submit .bottom {
	display: none;
}
#form-1463 #send {
	background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-700));
	color: var(--color-text-primary);
	border: none;
	line-height: 1;
	border-radius: 50px;
	padding: 16px 32px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	box-shadow: 0 4px 15px rgba(166, 85, 247, 0.3);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	text-transform: none;
}
#form-1463 #send:hover {
	box-shadow: 0 8px 25px rgba(166, 85, 247, 0.4);
	background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-600));
}
#form-1463 #send:active {
	transform: translateY(0);
}
#form-1463 /* Note Text */ #text-1478.note-text {
	margin-top: 0;
}
#form-1463 .confirmation-message {
	max-width: 400px;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
#form-1463 .confirmation-message .success-icon {
	font-size: 32px;
	margin-bottom: 12px;
}
#form-1463 .confirmation-message .title {
	font-size: 18px;
	font-weight: 600;
	color: #10b77f;
	margin-bottom: 8px;
}
#form-1463 .confirmation-message .message {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.5;
	margin: 0;
}
@media (max-width: 768px) {
	#html-1136 .section-title {
		font-size: 2rem;
	}
	#html-1136 .flow-step {
		gap: 20px;
	}
	#html-1136 .step-number {
		width: 50px;
		height: 50px;
		font-size: 1rem;
	}
	#html-1136 .step-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
	#html-1136 .data-flow {
		display: none;
	}
	#html-1118 .section-title {
		font-size: 2rem;
	}
	#html-1118 .scenario-grid {
		gap: 8px;
	}
	#html-1118 .scenario-card {
		padding: 10px 16px;
		font-size: 0.85rem;
	}
	#html-1118 .player-layout {
		grid-template-columns: 1fr;
	}
	#html-1118 .audio-section {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding: 32px 24px;
	}
	#html-1118 .transcript-section {
		padding: 32px 24px;
		max-height: 300px;
	}
	#html-1118 .play-button {
		width: 60px;
		height: 60px;
		font-size: 24px;
	}
	#html-1112 .features-section {
		padding: 80px 20px;
	}
	#html-1112 .section-title {
		font-size: 2rem;
	}
	#html-1112 .features-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	#html-1112 .feature-card {
		padding: 28px;
	}
	#html-1112 .more-card {
		padding: 40px 28px;
	}
	#html-1216 .section-title {
		font-size: 2rem;
	}
	#html-1216 .dashboard-preview {
		border-radius: 12px;
	}
	#html-1216 .preview-badge {
		top: 15px;
		right: 15px;
		font-size: 0.8rem;
		padding: 6px 12px;
	}
	#html-1124 .section-title h2 {
		font-size: 2rem;
	}
	#html-1124 .connection-visualization {
		height: 450px;
	}
	#html-1124 .node-center {
		width: 120px;
		height: 120px;
	}
	#html-1124 .node-customer {
		width: 100px;
		height: 100px;
	}
	#html-1124 .node-data {
		width: 80px;
		height: 80px;
	}
	#html-1040 .shape-container {
		width: 250px;
		height: 250px;
	}
	#html-1040 .hero-title {
		font-size: 2.5rem;
	}
	#html-1040 .hero-subtitle {
		font-size: 1rem;
	}
	#html-1040 .elvira-test-options {
		flex-direction: column;
	}
	#html-1040 .elvira-dialog {
		padding: var(--space-4);
	}
	#html-1178 .content-box {
		padding: 60px 40px;
	}
	#html-1178 .hero-number {
		font-size: 8rem;
	}
	#html-1178 .hero-main-text {
		font-size: 2.5rem;
	}
	#html-1178 .hero-sub-text {
		font-size: 1.1rem;
		margin-bottom: 40px;
	}
	#html-1178 .stats-row {
		gap: 40px;
		margin-bottom: 60px;
	}
	#html-1178 .stat-number {
		font-size: 2.2rem;
	}
	#html-1178 .mega-cta-button {
		padding: 20px 20px;
		font-size: 1.1rem;
	}
	#form-1463 > form {
		grid-template-columns: 1fr;
		grid-template-areas: "email" "send";
		border-radius: 16px;
		padding: 8px;
	}
	#form-1463 #email {
		padding: 16px 20px;
		border-radius: 12px;
		background: var(--color-neutral-50);
		border: 1px solid var(--color-neutral-200);
	}
	#form-1463 #send {
		border-radius: 12px;
		padding: 16px 24px;
		width: 100%;
	}
}

@media (max-width: 480px) {
	#html-1136 .flow-step {
		flex-direction: column;
		align-items: center;
		gap: 15px;
		text-align: center;
	}
	#html-1136 .flow-line {
		display: none;
	}
	#html-1136 .progress-indicator {
		display: none;
	}
	#html-1216 .dashboard-section {
		padding: 60px 20px;
	}
	#html-1216 .container {
		padding: 20px 15px;
	}
	#html-1040 .shape-container {
		width: 200px;
		height: 200px;
	}
	#html-1040 .hero-title {
		font-size: 2rem;
	}
	#html-1178 .content-box {
		padding: 40px 16px;
	}
	#html-1178 .hero-number {
		font-size: 6rem;
	}
	#html-1178 .hero-main-text {
		font-size: 2rem;
	}
	#html-1178 .stats-row {
		flex-direction: column;
		gap: 30px;
		align-items: center;
	}
	#html-1178 .mega-cta-button {
		padding: 18px 16px;
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	#html-1124 .connection-visualization {
		height: 700px;
		padding: 0 20px;
		margin-top: -25px;
	}
	#html-1124 /* Keep nodes positioned absolute on mobile but adjust their positions */ .node-customer {
		left: 25% !important;
		top: 15% !important;
	}
	#html-1124 .node-center {
		left: 50% !important;
		top: 40% !important;
	}
	#html-1124 .node-data-1 {
		left: 20% !important;
		top: 70% !important;
	}
	#html-1124 .node-data-2 {
		left: 50% !important;
		top: 70% !important;
	}
	#html-1124 .node-data-3 {
		left: 80% !important;
		top: 70% !important;
	}
	#html-1124 /* Adjust info boxes on mobile */ .info-box {
		z-index: 20;
		background: rgba(22, 22, 39, 0.95);
	}
}

@media (max-width:800px) /* responsive */ {
	#col-1177 {
		padding-inline: 20px;
	}
}
