html {
  scroll-behavior: smooth;
}
:root {
  --bg-dark: #050508;
  --bg-blue: #0a0f1c;
  --neon-accent: #00f0ff;
  --text-main: #ffffff;
  --text-muted: #a0aabf;
  --ll-color-primary: #2659dc;
  --ll-color-secondary: #00AC81;
  --ll-color-background: #ffffff;
  --ll-color-text-primary: #181822;
  --ll-color-text-secondary: #8b8b9e;
  --ll-font-heading: Arial;
  --ll-font-body: Arial;
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}
.dark-blue-bg {
  background-color: var(--bg-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.vantablack-bg {
  background-color: var(--bg-dark);
}
.smart-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 8, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bg-light {
  background-color: var(--bg-light);
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}
.bg-offwhite {
  background-color: var(--bg-offwhite);
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}
.bg-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 124, 199, 0.05);
  z-index: -1;
  pointer-events: none;
  undefined: undefined;
}
.bg-offwhite::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 249, 250, 0.75);
  z-index: -1;
  pointer-events: none;
  undefined: undefined;
}
.roi-table-container.saas-card {
  background-color: #ffffff !important;
  padding: 0 !important;
}
.roi-row-light {
  display: flex;
  padding: 25px 30px;
  border-bottom: 1px solid #eaeaea;
  align-items: center;
  undefined: undefined;
  transition: background 0.3s ease;
}
.roi-row-light:last-child {
  border-bottom: none;
}
.roi-header-row-light {
  background-color: #c8def3;
  border-bottom: 2px solid rgba(38, 89, 220, 0.2);
  font-size: 1.1rem;
  undefined: undefined;
  background: #f1f5f9;
}
.roi-footer-row-light {
  background-color: rgba(38, 89, 220, 0.04);
  border-top: 1px solid rgba(38, 89, 220, 0.1);
  background: rgba(38, 89, 220, 0.04);
  undefined: undefined;
}
.roi-row-light .text-dark, .roi-row-light .text-dark span {
  color: #111827 !important;
  undefined: undefined;
}
.roi-row-light .text-gray, .roi-row-light .text-gray span, .roi-row-light .table-micro-text {
  color: #4b5563 !important;
  undefined: undefined;
}
.roi-row-light .highlight-blue, .roi-row-light .highlight-blue span {
  color: #2659dc !important;
  undefined: undefined;
}
.roi-row-light .roi-col {
  display: block !important;
}
.roi-row-light .text-center {
  text-align: center !important;
}
.roi-row-light .table-micro-text {
  display: block !important;
  margin-top: 4px !important;
  font-size: 0.85rem !important;
  line-height: 1.3 !important;
}
.roi-row-light .roi-col div {
  display: block !important;
  text-align: center !important;
  margin-top: 10px !important;
}
.nav-logo {
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--neon-accent);
}
.nav-cta {
  transition: transform 0.3s ease;
}
.nav-btn {
  padding: 6px 14px !important;
  font-size: 0.8rem !important;
  border-width: 1px !important;
  display: inline-block;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: 0.5px;
}
.smart-nav.nav-hidden {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none;
  pointer-events: none;
}
.smart-nav.nav-hidden .nav-logo, .smart-nav.nav-hidden .nav-links, .smart-nav.nav-hidden .hamburger {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.smart-nav.nav-hidden .nav-cta {
  pointer-events: auto;
  position: relative;
}
.smart-nav.nav-hidden .nav-btn {
  background: var(--neon-accent) !important;
  color: var(--bg-dark) !important;
  border-color: transparent !important;
  font-size: 0.75rem !important;
  padding: 4px 10px !important;
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.4);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.highlight-text {
  color: var(--neon-accent);
}
.content-section {
  padding: 100px 20px;
  position: relative;
  z-index: 2;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 auto 50px auto;
  line-height: 1.6;
}
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 20px;
  background: url('../images/12aa5c52-ab7a-49fa-4b03-48290a7e6900.jpg') center/cover no-repeat;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 8, 0.75);
  z-index: -1;
}
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  text-align: center;
}
.headline {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 15px 0;
}
.subheadline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.5;
}
.badge {
  display: inline-block;
  color: var(--neon-accent);
  background: rgba(0, 240, 255, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 240, 255, 0.3);
}
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.input-group input {
  width: 100%;
  padding: 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
}
.input-group input:focus {
  outline: none;
  border-color: var(--neon-accent);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}
.neon-btn {
  background: transparent;
  color: var(--neon-accent);
  border: 2px solid var(--neon-accent);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.hero-btn {
  font-size: 1.1rem;
  font-weight: bold;
  padding: 18px;
  border-radius: 8px;
  text-transform: uppercase;
  width: 100%;
  box-sizing: border-box;
}
.neon-btn:hover {
  background: var(--neon-accent);
  color: var(--bg-dark);
  box-shadow: 0 0 20px var(--neon-accent);
}
.pulse-anim {
  animation: pulseGlow 2s infinite alternate;
}
.dynamic-fade-in {
  animation: floatUp 0.8s ease-out forwards;
}
.stats-bar {
  padding: 40px 0;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 900;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.compare-card {
  padding: 40px;
  border-radius: 20px;
}
.old-way {
  background: rgba(255, 50, 50, 0.03);
  border: 1px solid rgba(255, 50, 50, 0.1);
}
.premium-border {
  border: 1px solid var(--neon-accent);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.05);
}
.card-header {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  line-height: 1.5;
}
.feature-list li:last-child {
  border-bottom: none;
}
.chart-container {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 800px;
  margin: 0 auto;
}
.chart-row {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.chart-row:last-child {
  margin-bottom: 0;
}
.chart-label {
  width: 80px;
  font-weight: bold;
  color: var(--text-muted);
}
.chart-bar-bg {
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  height: 40px;
  overflow: hidden;
  position: relative;
}
.chart-bar {
  height: 100%;
  background: rgba(0, 240, 255, 0.2);
  border-right: 2px solid var(--neon-accent);
  display: flex;
  align-items: center;
  padding-left: 15px;
  font-weight: bold;
  font-size: 0.9rem;
  width: 0%;
  undefined: undefined;
  transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}

#itn3n9 {
  max-width: 800px;
}
#i9kdsy {
  background: var(--neon-accent);
  color: var(--bg-dark);
}
#itxfu2 {
  font-size: 2rem;
}
#iegk5m {
  text-decoration: none;
}
#ipcxuf {
  margin: 0 auto;
}
#hero {
  background: url(../images/79c36d95-645b-47f9-f7c6-2e282facdb00.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
#final-cta {
  background: url(../images/79c36d95-645b-47f9-f7c6-2e282facdb00.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-header {
  padding: 150px 20px 80px 20px;
  border-bottom: none !important;
  margin-bottom: 0 !important;
  undefined: undefined;
}
.marquee-section {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  margin-top: 0 !important;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.marquee-container::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  left: 0;
  background: linear-gradient(to right, var(--bg-blue), transparent);
}
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  right: 0;
  background: linear-gradient(to left, var(--bg-blue), transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 20s linear infinite;
}
.marquee-item {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  margin: 0 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}
.marquee-item:hover {
  color: var(--neon-accent);
}
.vertical-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}
.vertical-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 2px;
  background: rgba(0, 240, 255, 0.2);
}
.timeline-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.time-marker {
  width: 100px;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text-muted);
  text-align: right;
  padding-right: 30px;
  padding-top: 10px;
  position: relative;
}
.time-marker::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 15px;
  width: 16px;
  height: 16px;
  background: var(--bg-dark);
  border: 3px solid var(--neon-accent);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 10px var(--neon-accent);
}
.timeline-content {
  flex: 1;
  margin-left: 20px;
  text-align: left;
}
.timeline-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.timeline-content p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.feature-box {
  text-align: left;
  padding: 40px 30px;
  transition: transform 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.3);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.feature-box p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}
.human-bg-header {
  position: relative;
  z-index: 1;
}
.human-bg-cta {
  position: relative;
  z-index: 1;
}
.human-bg-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -1px !important;
  undefined: undefined;
  background: linear-gradient(rgba(5, 5, 8, 0.55), rgba(10, 15, 28, 0.95));
  z-index: -1;
}
.human-bg-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  undefined: undefined;
  background: linear-gradient(rgba(5, 5, 8, 0.55), rgba(10, 15, 28, 0.95));
  z-index: -1;
}
#igpf-4 {
  color: var(--neon-accent);
}
#ij6pm-4 {
  color: var(--neon-accent);
}
#ik1hk-4 {
  font-size: 3.5rem;
}
#izfoj-4 {
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#ijvaxw-4 {
  font-size: 2rem;
}
#iyur2y-4 {
  text-decoration: none;
  padding: 15px 30px;
  display: inline-block;
  width: auto;
}
#i8znn4-4 {
  margin: 0 auto;
  max-width: 600px;
}
#i0nnk-4 {
  background: url(../images/34d72789-7e44-42da-78f2-569b939d1100.jpg);
  background-position: 52% 11%;
  background-size: cover;
  background-repeat: repeat;
}
#in4wqr-4 {
  background: url(../images/b959071b-a2e6-4669-ee0d-d630b7c8e400.jpg);
  background-position: 54% 62%;
  background-size: cover;
  background-repeat: repeat;
}
.roi-table-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  undefined: undefined;
  overflow: hidden;
}
.roi-row {
  display: flex;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.roi-row:last-child {
  border-bottom: none;
}
.roi-header-row {
  background: rgba(0, 0, 0, 0.4);
  font-weight: bold;
  font-size: 1.1rem;
}
.roi-footer-row {
  background: rgba(0, 240, 255, 0.05);
  border-top: 1px solid rgba(0, 240, 255, 0.2);
}
.roi-col {
  flex: 1;
  display: flex;
  align-items: center;
}
.roi-col:first-child {
  flex: 1.5;
  undefined: undefined;
}
.font-bold {
  font-weight: bold;
}
.number-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.number-card {
  text-align: center;
  padding: 50px 30px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.number-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.3);
}
.big-stat {
  font-size: 4rem;
  font-weight: 900;
  color: var(--neon-accent);
  margin-bottom: 15px;
  line-height: 1;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.video-card {
  display: flex;
  flex-direction: column;
}
.video-thumbnail {
  height: 250px;
  background-color: #111;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
}
.video-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px 16px 0 0;
  transition: background 0.3s ease;
}
.video-thumbnail:hover::before {
  background: rgba(0, 0, 0, 0.1);
  undefined: undefined;
}
.play-button {
  width: 60px !important;
  height: 60px !important;
  background: var(--neon-accent);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  padding-left: 5px;
  undefined: undefined;
  transition: transform 0.2s ease;
}
.video-thumbnail:hover .play-button {
  transform: scale(1.1);
}
.video-caption {
  border-radius: 0 0 16px 16px;
  padding: 30px;
  border-top: none;
  text-align: left;
}
.video-caption p {
  font-style: italic;
  color: #fff;
  margin-bottom: 15px;
}
.caption-author {
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1002;
  undefined: undefined;
}
.mobile-menu-overlay {
  display: none;
  undefined: undefined;
}
#ihdkf-2-3 {
  text-align: left;
}
#i52mo2 {
  position: absolute;
  top: -1px;
  left: 0px;
  pointer-events: none;
  --rem: 16;
}
#i2198l {
  position: absolute;
  top: -1px;
  left: 0px;
  pointer-events: none;
  --rem: 16;
}
#ievc93 {
  display: contents;
  --rem: 16;
}
#i8vnrf {
  display: contents;
  --rem: 16;
}
#ieyia-4 {
  font-size: 35px;
}
#i1wshl-4 {
  padding-bottom: 0px;
}
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}
.benefit-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.benefit-list li:last-child {
  margin-bottom: 0;
}
#ire73-3 {
  opacity: 0.5;
}
#i8w8l-3 {
  font-size: 1.2rem;
}
#ilu0h-3 {
  font-size: 1.2rem;
}
#ii2qv-3 {
  text-align: left;
}
#ima0c-3 {
  text-align: left;
}
#i9s5e-3 {
  text-align: left;
}
#i3e2r-3 {
  text-align: left;
}
#ihdkf-4 {
  text-align: left;
}
#ikrxm-3 {
  text-align: left;
}
#ipbzc-3 {
  text-align: left;
}
#i7lbf-4 {
  text-align: left;
  width: 84.1%;
}
#ixdln-3 {
  text-align: left;
}
#i8heh-3 {
  text-align: left;
}
#ituuza {
  font-size: 12px;
}
#i2beq-2-3 {
  text-align: left;
}
#i7lbf-2-3 {
  text-align: left;
}
#i2beq-4 {
  text-align: left;
}
#iuhph-3 {
  text-align: left;
}
#ied16-3 {
  text-align: left;
}
#i1vrf-3 {
  text-align: left;
}
#ituuza-2 {
  text-align: left;
  font-size: 12px;
}
#ihdkf-4-2 {
  text-align: left;
}
#i3e2r-3-2 {
  text-align: left;
}
#ixdln-3-2 {
  text-align: left;
}
.roi-row-light:hover {
  background: #f8f9fa;
  undefined: undefined;
}
.roi-header-row-light:hover {
  background: #f1f5f9;
  undefined: undefined;
}
.roi-footer-row-light:hover {
  background: rgba(38, 89, 220, 0.08);
}
.table-micro-text {
  font-size: 0.85rem;
  font-weight: normal;
  color: var(--text-gray);
  display: block;
  margin-top: 5px;
}


#iykyti-4 {
  text-decoration: none;
  padding: 15px 30px;
  display: inline-block;
  width: auto;
}
#iulk-4 {
  color: var(--neon-accent);
}
#ini3x-4 {
  color: var(--neon-accent);
}
#ipm3u-4 {
  font-size: 3.5rem;
}
#i4tofq-4 {
  background-image: url('YOUR_THUMBNAIL_IMAGE_1');
  background: url(../images/3773a7bf-6290-4b3c-d6a7-3f9b9f127c00.gif);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: repeat;
}
#i42u7n-4 {
  background-image: url('YOUR_THUMBNAIL_IMAGE_2');
  background: url(../images/3773a7bf-6290-4b3c-d6a7-3f9b9f127c00.gif);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: repeat;
}
#iuinnf-4 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #fff;
}
#ieb3r7-4 {
  margin: 0 auto;
  max-width: 650px;
}
#icuey-4 {
  background: url(../images/95bbaa6c-fac7-4585-82af-6bc49edff700.jpg);
  background-position: 56% 46%;
  background-size: cover;
  background-repeat: repeat;
}
#iim01x-4 {
  background: url(../images/b959071b-a2e6-4669-ee0d-d630b7c8e400.jpg);
  background-position: 51% 54%;
  background-size: cover;
  background-repeat: repeat;
}
#ipo2k-4 {
  color: var(--neon-accent);
}
#i5vpeh {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
  color: #fff;
}
#inkncq {
  margin-top: 60px;
  padding: 20px;
  background: rgba(0, 240, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 240, 255, 0.1);
}
#i67dfu {
  color: #00F0FFFF;
}
#ictmfl {
  font-size: 35px;
}
#ibgyla {
  position: absolute;
  top: -1px;
  left: 0px;
  pointer-events: none;
  --rem: 16;
}
#i2lx6o {
  position: absolute;
  top: -1px;
  left: 0px;
  pointer-events: none;
  --rem: 16;
}
#ikuelk {
  display: contents;
  --rem: 16;
}
#ii0vvf {
  display: contents;
  --rem: 16;
}
#iyhc2 {
  margin-top: 5px;
}
#iebqzf {
  font-size: 1.2rem;
}
#irff3j {
  font-size: 1.2rem;
}
#irjfw {
  padding: 0 !important;
  overflow: hidden;
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
  border-bottom-right-radius: 23px;
  border-bottom-left-radius: 23px;
  border-style: solid;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-color: #DAF2F2FF;
}
#cost-comparison-light {
  background: url(../images/80d98719-69f3-43ac-478c-295c124e0d00.jpg);
  background-position: 52% 56%;
  background-size: contain;
  background-repeat: repeat;
  padding-top: 50px;
  padding-bottom: 70px;
}
#iarmk {
  color: var(--ll-color-text-primary);
}
#i2239 {
  color: var(--ll-color-primary);
}
#igi7j {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
#ivo4l {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
#iyjue {
  margin-left: 0;
  margin-right: auto;
}
#izkbe {
  background: #EAF5FFFF;
}
#icwwwf {
  background: #EAF5FFFF;
}
#ijy0g {
  width: 35.826%;
}
#il9669 {
  width: 81.59%;
}
#ivcbz {
  font-size: 13px;
}
#inwc1p {
  width: 24.888%;
}
#ixqw9s {
  width: 79.916%;
}
#ijh5h {
  width: 30%;
}
#ir7ouy {
  width: 92.742%;
}
#i720l {
  color: #00F0FFFF;
}
#iqt0o9-4 {
  color: var(--ll-color-primary);
}
#iufwmf-4 {
  background: url(../images/80d98719-69f3-43ac-478c-295c124e0d00.jpg);
  background-position: 50% 52%;
  background-size: contain;
  background-repeat: repeat;
}
#i6t2di-4 {
  color: var(--ll-color-text-primary);
}
#iughg6-4 {
  color: var(--ll-color-text-primary);
}
#iwvfyp-4 {
  color: var(--ll-color-text-primary);
}
#ivjtiw-4 {
  color: var(--ll-color-primary);
}
#ig9lcg-4 {
  color: var(--ll-color-primary);
}
#i8g1uh-4 {
  background: var(--ll-color-primary);
}
#ii29ej-4 {
  background: var(--ll-color-primary);
}
#i6g32t-4 {
  color: var(--ll-color-background);
}
#ipq7vn-4 {
  color: var(--ll-color-background);
}
#icf5p {
  margin: 0;
  font-size: 0.65rem;
  padding: 4px 8px;
  letter-spacing: 1px;
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.2);
  color: var(--neon-accent);
}
#igzj-4 {
  display: flex;
  align-items: center;
  gap: 12px;
}
#ix3ju-2 {
  font-size: 11px;
}

#iy5v4 {
  color: #FFFFFFFF;
}
#izwm5-2 {
  margin-bottom: 0px;
  margin-top: 20px;
  color: var(--ll-color-text-primary);
  font-weight: 700;
  font-size: 22px;
}
#i0e5x {
  font-weight: bold;
}
#i0e5x-2 {
  font-weight: bold;
}
#i0e5x-3 {
  font-weight: bold;
}
#i0e5x-4 {
  font-weight: bold;
}
#i0e5x-5 {
  font-weight: bold;
}
#i0e5x-6 {
  font-weight: bold;
}
#ikqbap-4 {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.6;
}
#roiRevealBtn {
  width: auto;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 8px;
}
#i6ybr-4 {
  margin-bottom: 30px;
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px rgba(0, 240, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
  }
}
@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (min-width: 769px) {
  .roi-row-light .roi-col, .roi-row-light .text-center {
    text-align: left !important;
    display: block !important;
  }
  .roi-row-light .table-micro-text, .roi-row-light .roi-col div {
    display: block !important;
    text-align: left !important;
    margin-top: 4px !important;
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
  }
  .roi-row-light .roi-col:first-child {
    flex: 1.4 !important;
    undefined: undefined;
    padding-right: 20px !important;
  }
  .roi-row-light .roi-col:nth-child(2), .roi-row-light .roi-col:nth-child(3) {
    flex: 1 !important;
    padding-left: 20px !important;
    undefined: undefined;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-logo {
    font-size: 1.2rem;
  }
  .nav-container {
    padding: 8px 15px;
  }
  .section-title {
    font-size: 2rem;
  }
  .content-section {
    padding: 60px 20px;
  }
  .chart-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .chart-bar-bg {
    width: 100%;
  }
  .vertical-timeline::before {
    left: 20px;
  }
  .timeline-block {
    flex-direction: column;
  }
  .time-marker {
    width: auto;
    text-align: left;
    padding-left: 50px;
    margin-bottom: 15px;
  }
  .time-marker::after {
    left: -30px;
    top: 3px;
  }
  .timeline-content {
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .marquee-item {
    font-size: 1.2rem;
    margin: 0 20px;
  }
  .roi-row {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  .roi-col {
    justify-content: center;
    padding: 5px 0;
  }
  .roi-col:first-child {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-muted);
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    margin-left: 15px;
    undefined: undefined;
  }
  .hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--neon-accent);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--neon-accent);
  }
  .mobile-menu-overlay {
    display: flex;
    position: fixed;
    top: -100vh;
    undefined: undefined;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1001;
    justify-content: center;
    align-items: center;
    transition: top 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .mobile-menu-overlay.active {
    top: 0;
  }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .mobile-nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    transition: color 0.3s ease;
  }
  .mobile-nav-links a:hover, .mobile-nav-links a:active {
    color: var(--neon-accent);
  }
  .roi-row-light {
    flex-direction: column;
    padding: 20px;
    text-align: center;
    gap: 12px;
  }
  .roi-header-row-light {
    display: none;
    undefined: undefined;
  }
  .roi-row-light .roi-col:first-child {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
    margin-bottom: 5px;
    width: 100%;
  }
}
@media (max-width: 576px) {
  #ima0c-3 {
    text-align: center;
  }
  #i9s5e-3 {
    text-align: center;
  }
  #ied16-3 {
    text-align: center;
  }
  #i1vrf-3 {
    text-align: center;
  }
  #i8heh-3 {
    text-align: center;
  }
  #ii2qv-3 {
    text-align: center;
  }
  #iuhph-3 {
    text-align: center;
  }
  #ixdln-3 {
    text-align: center;
  }
  #i3e2r-3 {
    text-align: center;
  }
  #i2beq-4 {
    text-align: center;
  }
  #i7lbf-4 {
    text-align: center;
  }
  #ituuza {
    text-align: center;
  }
  #ihdkf-4 {
    text-align: center;
  }
  #i2beq-2-3 {
    text-align: center;
  }
  #i7lbf-2-3 {
    text-align: center;
  }
  #ihdkf-4-2 {
    text-align: center;
  }
  #ituuza-2 {
    text-align: center;
  }
  #ixdln-3-2 {
    text-align: center;
  }
  #i3e2r-3-2 {
    text-align: center;
  }
  #ipbzc-3 {
    text-align: center;
  }
  #ikrxm-3 {
    text-align: center;
  }
  #i77ntr {
    padding-left: 0px;
    padding-right: 0px;
  }
  #iufwmf-4 {
    padding-left: 0px;
    padding-right: 0px;
  }
  #roiRevealBtn {
    font-size: 16px;
  }
  #ixqw9s {
    margin-left: 0px;
  }
  #inwc1p {
    width: fit-content;
  }
  #ipm3u-4 {
    font-size: 37px;
  }
  #i6ybr-4 {
    font-size: 15px;
  }
  #iuinnf-4 {
    font-size: 30px;
  }
  #ikqbap-4 {
    font-size: 15px;
  }
  
}
