html {
  scroll-behavior: smooth;
}
:root {
  --bg-dark: #050508;
  --bg-blue: #0a0f1c;
  --neon-accent: #00f0ff;
  --text-main: #ffffff;
  --text-muted: #a0aabf;
  --bg-offwhite: #f8f9fa;
  --tech-blue: #2659dc;
  --text-dark: #111827;
  --text-gray: #4b5563;
}
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);
}
.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-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;
}
.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;
}
.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);
}
.active-nav-link { color: var(--neon-accent) !important; }
.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);
}
.text-dark {
  color: var(--text-dark) !important;
}
.text-red {
  color: #ef4444 !important;
}
.highlight-blue {
  color: var(--tech-blue) !important;
}
.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: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 20px;
}
.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;
}
.saas-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #eaeaea;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
.premium-border-blue {
  border: 1px solid var(--tech-blue);
  box-shadow: 0 10px 30px rgba(38, 89, 220, 0.1);
}
.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);
}
.neon-btn {
  background: transparent;
  color: var(--neon-accent);
  border: 2px solid var(--neon-accent);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.dark-blue-btn {
  background: transparent;
  color: var(--tech-blue);
  border: 2px solid var(--tech-blue);
  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);
}
.dark-blue-btn:hover {
  background: var(--tech-blue);
  color: var(--bg-offwhite);
  box-shadow: 0 0 20px var(--tech-blue);
}
.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%;
  transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1002;
}
.mobile-menu-overlay {
  display: none;
}
.app-gradient-bg {
  background: radial-gradient(circle at top, #1a1b3c 0%, #0a0f1c 70%, #050508 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ai-app-interface {
  background: #0b1021;
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 24px;
  max-width: 600px;
  margin: 40px auto 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.app-status {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}
.pulse-dot {
  width: 12px;
  height: 12px;
  background: #ff4757;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff4757;
  animation: pulseRed 1.5s infinite alternate;
}
.app-interactive-zone {
  padding: 40px 30px;
}
.sleek-app-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.app-input-row {
  display: flex;
  gap: 15px;
  width: 100%;
}
.app-input-row input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  transition: all 0.3s ease;
}
.app-input-row input:focus {
  border-color: var(--neon-accent);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  outline: none;
}
.app-input-row input, .app-input-row select {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
}
.app-input-row input:focus, .app-input-row select:focus {
  border-color: var(--neon-accent);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  outline: none;
}
.app-input-row select option {
  background: var(--bg-blue);
  color: #fff;
  text-align: center;
}
.mic-btn {
  background: #ff4757 !important;
  border: none;
  border-radius: 50px !important;
  padding: 15px 40px;
  color: #ffffff !important;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 71, 87, 0.4) !important;
  transition: all 0.3s ease !important;
  justify-content: center !important;
  animation: pulseBtnRed 1.5s infinite alternate !important;
}
.mic-btn:hover {
  transform: scale(1.05);
}
.app-features-row {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}
.app-feature-box {
  flex: 1;
  padding: 20px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.app-feature-box:last-child {
  border-right: none;
}
.feature-icon-small {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.app-feature-box h4 {
  margin: 0 0 5px 0;
  font-size: 0.9rem;
}
.app-feature-box p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.app-features-card {
  display: flex;
  background: #0b1021;
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 16px;
  max-width: 600px;
  margin: 15px auto 40px auto;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.timeline-bar-wrapper {
  margin-bottom: 35px;
}
.timeline-bar-wrapper:last-child {
  margin-bottom: 0;
}
.timeline-bar-wrapper .chart-row {
  margin-bottom: 12px !important;
}
.bar-subtext {
  padding-left: 80px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}
.compare-card.saas-card {
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}
.compare-card.old-way.saas-card {
  background: rgba(255, 50, 50, 0.05) !important;
  border: 1px solid rgba(255, 50, 50, 0.2) !important;
}
.compare-card.new-way.saas-card {
  background: rgba(38, 89, 220, 0.05) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(38, 89, 220, 0.4) !important;
  box-shadow: 0 20px 40px rgba(38, 89, 220, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}
.compare-card.saas-card .feature-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.compare-card.saas-card .feature-list li:last-child {
  border-bottom: none !important;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.popup-content {
  position: relative;
  max-width: 450px;
  width: 90%;
  padding: 50px 40px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.popup-overlay.show .popup-content {
  transform: translateY(0);
}
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.popup-close:hover {
  color: #fff;
}
.no-thanks-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: underline;
  margin-top: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
  display: block;
  width: 100%;
  text-align: center;
}
.no-thanks-link:hover {
  color: #fff;
}
.mic-btn.ready-btn {
  background: #10b981 !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5) !important;
  animation: pulseBtnGreen 1.5s infinite alternate !important;
  transform: scale(1.05) !important;
}
.pulse-dot.ready {
  background: #10b981 !important;
  box-shadow: 0 0 10px #10b981 !important;
  animation: pulseGreen 1.5s infinite alternate !important;
}
#navLogo {
  display: flex;
  align-items: center;
  gap: 12px;
}
#i30pf {
  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);
}
#ix3ju-2 {
  font-size: 11px;
}
#navLinkGuarantee {
  color: white;
  margin-bottom: 0px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 1px;
  padding-bottom: 1px;
}
#itxfu2-5 {
  font-size: 2rem;
}
#iegk5m-5 {
  text-decoration: none;
}
#ipcxuf-5 {
  margin: 0 auto;
}
#hero-5 {
  min-height: 90vh;
  align-items: center;
  padding-top: 80px;
  background: url(../images/79c36d95-645b-47f9-f7c6-2e282facdb00.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
}
#final-cta-5 {
  background: url(../images/79c36d95-645b-47f9-f7c6-2e282facdb00.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
#results-5 {
  background: url(../images/80d98719-69f3-43ac-478c-295c124e0d00.jpg);
  background-position: 53% 53%;
  background-size: contain;
  background-repeat: repeat;
  opacity: 1;
}
#i62e2-5 {
  border-color: #FF3232C2;
  background: #FF32321A;
  mix-blend-mode: normal;
  box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.05);
}
#i5tz3-5 {
  color: #181822;
}
#iy3e7-5 {
  color: #181822;
}
#i7x0sc-5 {
  color: #181822;
}
#iuc3o-5 {
  color: #181822;
}
#is06jb-5 {
  color: #181822;
}
#icyzxo-5 {
  color: #181822;
}
#iraqc-5 {
  color: #181822;
}
#i9jpi-5 {
  color: #181822;
}
#ivbwy-5 {
  color: #181822;
}
#ioxdu-5 {
  background: #2659DC0F;
}
#i54tkk {
  background: var(--neon-accent);
  color: var(--bg-dark);
}
#i6cmvf {
  margin-bottom: 15px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--neon-accent);
}
#ice15q {
  font-size: 2rem;
  margin-bottom: 10px;
}
#i2g6ww {
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.5;
}
#ih1n2l {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: inherit;
  text-align: center;
}
#ijg85i {
  width: 100%;
  padding: 16px;
}
#popupForm {
  gap: 15px;
}
select:invalid {
  color: #757575 !important;
}
#i122i-5 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
#i30y1-5 {
  margin-top: 35px;
}
#i7i2v-5 {
  color: #11EA28FF;
}
#i3ewx-5 {
  color: #FFFFFFFF;
}
#optionalContextFields {
  max-height: 150px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    margin-top 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
#i4re5-5 {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 76.437%;
  text-align: center;
}
#iaq7s-5 {
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}
#i54tkk-5 {
  background: var(--neon-accent);
  color: var(--bg-dark);
}
@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 pulseRed {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 15px #ff4757;
  }
}
@keyframes pulseGreen {
  0% {
    opacity: 0.5;
    box-shadow: 0 0 5px #10b981;
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 15px #10b981;
  }
}
@keyframes pulseBtnRed {
  0% {
    box-shadow: 0 0 5px rgba(255, 71, 87, 0.2);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.6);
    transform: scale(1);
  }
}
@keyframes pulseBtnGreen {
  0% {
    box-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
  }
  100% {
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.8);
  }
}
@media (max-width: 992px) {
  #navCtaWrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex !important;
    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%;
  }
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    margin-left: 15px;
  }
  .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;
    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);
  }
  .app-input-row {
    flex-direction: column;
  }
  .app-features-row {
    flex-direction: column;
  }
  .app-feature-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .app-features-card {
    flex-direction: column;
  }
  .app-feature-box:last-child {
    border-bottom: none;
  }
  .bar-subtext {
    padding-left: 0;
    margin-top: 10px;
  }
}
@media (max-width: 576px) {
  #i122i-5 {
    font-size: 33px;
    margin-bottom: 10px;
  }
  #i7i2v-5 {
    font-size: 15px;
  }
  #i30y1-5 {
    margin-top: 35px;
  }
  #i54i3 {
    font-size: 17px;
  }
  #ij8mx {
    max-width: 276px;
  }
  #ihd41-5 {
    padding-left: 0px;
    padding-right: 0px;
  }
  #hero-5 {
    padding-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }
  #navLogo {
    flex-direction: row;
  }
  #mobileNavLinkGuarantee {
    font-size: 20px;
  }
}

/* === DESIGN UPGRADES === */

/* Font stack */
:root {
  --font-heading: 'Geist', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Apply heading font */
h1, h2, h3, h4, h5, h6,
.headline, .section-title, .subheadline,
.big-stat, .stat-number, .nav-logo {
  font-family: var(--font-heading);
}

/* Apply body font */
body, p, li, input, select, textarea, button, a {
  font-family: var(--font-body);
}

/* Nav glass effect */
.smart-nav {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}

/* Card hover glow */
.glass-panel:hover,
.saas-card:hover,
.feature-box:hover,
.option-card:hover,
.number-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Button hover lift */
.neon-btn:hover,
.hero-btn:hover,
.dark-blue-btn:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Input focus glow */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(0, 229, 255, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* FAQ item hover */
.faq-item:hover {
  border-color: rgba(0, 229, 255, 0.2);
  transition: border-color 0.2s ease;
}

/* === ONBOARDING MODAL === */
.option-card {
  border: 2px solid #eaeaea;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
  justify-content: center;
  align-items: center;
}

.option-card:hover {
  border-color: var(--tech-blue);
  box-shadow: 0 5px 15px rgba(38, 89, 220, 0.1);
  transform: translateY(-2px);
}

.primary-option {
  border-color: rgba(38, 89, 220, 0.3);
  background: rgba(38, 89, 220, 0.02);
}

.primary-option:hover {
  background: rgba(38, 89, 220, 0.05);
}

.modal-screen {
  display: none;
  animation: fadeInRight 0.3s ease forwards;
}

.modal-screen.active-screen {
  display: block;
}

.back-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.back-btn:hover {
  color: var(--tech-blue);
}

#partnerForm input:focus {
  border-color: var(--tech-blue) !important;
  box-shadow: 0 0 10px rgba(38, 89, 220, 0.2);
}

#closeOnboarding {
  color: var(--text-dark);
  z-index: 10;
}

#ic1u4h {
  background: rgba(38, 89, 220, 0.1);
  border-color: rgba(38, 89, 220, 0.3);
  color: var(--tech-blue);
  margin-bottom: 15px;
}

#idrspl {
  color: var(--text-dark);
  font-size: 1.8rem;
  margin-bottom: 25px;
}

#i7j0pi {
  font-size: 0.7rem;
  background: var(--tech-blue);
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 5px;
  font-weight: bold;
  vertical-align: middle;
}

#i0p4gc {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

#il999h {
  color: var(--text-gray);
  font-size: 0.9rem;
}

#idk66i {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

#ip3etb {
  color: var(--text-gray);
  font-size: 0.9rem;
}

#ijspjl {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#ii8c2c {
  color: var(--text-dark);
  font-size: 1.8rem;
  margin-bottom: 10px;
  margin-top: 20px;
}

#ij92gq {
  color: var(--text-gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

#ig69m2 {
  width: 100%;
  padding: 16px;
  background: var(--tech-blue);
  color: #fff;
  border: none;
  display: block;
}

#ioex3v {
  font-size: 2.5rem;
  margin-top: 10px;
  margin-bottom: 10px;
}

#i1dvsh {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

#in472r {
  color: var(--text-gray);
  margin-bottom: 25px;
  font-size: 0.9rem;
  line-height: 1.5;
}

#ivb07i {
  width: 90%;
  padding: 14px;
  border-radius: 8px;
  background: #f8f9fa;
  border: 1px solid #eaeaea;
  color: var(--text-dark);
  font-family: inherit;
  outline: none;
  text-align: center;
}

#ictv48 {
  width: 90%;
  padding: 14px;
  border-radius: 8px;
  background: #f8f9fa;
  border: 1px solid #eaeaea;
  color: var(--text-dark);
  font-family: inherit;
  outline: none;
  text-align: center;
}

#iycqc2 {
  width: 90%;
  padding: 16px;
  background: var(--tech-blue);
  color: #fff;
  border: none;
  cursor: pointer;
}

#partnerForm {
  gap: 15px;
}

#ic6y91 {
  padding: 40px 30px;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  max-width: 500px;
  max-height: fit-content;
}

#i270ch {
  color: #181822;
}

#ibaxe1 {
  color: #181822;
}

#mainPriceValue {
  font-size: 2rem;
  font-weight: 900;
  color: #111827;
}

#partnerPriceValue {
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--tech-blue);
  margin-top: 5px;
}

#onboardingPopup {
  /* Initial state handled by .popup-overlay class */
}

#navLogoAi { color: #ffffff; }
#navLogoDealer { color: var(--neon-accent); }

.saas-card .text-muted,
.bg-offwhite .text-muted,
.bg-light .text-muted { color: #4b5563; }




/* Canonical Guarantee Badge Styles */
a#navLinkGuarantee {
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
a#navLinkGuarantee:hover {
  color: var(--neon-accent);
  background: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

/* === BACKGROUND IMAGE OVERLAY === */
.hero-section,
.human-bg-header,
.human-bg-cta,
#iosjf-5-2 {
  position: relative;
}
.hero-section::before,
.human-bg-header::before,
.human-bg-cta::before,
#iosjf-5-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.55);
  pointer-events: none;
  z-index: 0;
}
.hero-section > *,
.human-bg-header > *,
.human-bg-cta > *,
#iosjf-5-2 > * {
  position: relative;
  z-index: 1;
}
