@charset "UTF-8";
/* =========================================
   ABSTRACT (variables, mixins)
========================================= */
:root {
  /* Primary Colors */
  --color-primary: #4762ff;
  --color-primary-light: #697fff;
  --color-primary-lighter: #d1dbff;
  --color-primary-dark: #2437cc;
  --color-lightest-gray: #e2ebf0;
  /* Accent Colors */
  --color-accent: #f37249;
  --color-accent-purple: #6232eb;
  /* Neutrals */
  --color-darkest: #000000;
  --color-dark: #06070e;
  --color-dark-blue: #0f172a;
  --color-dark-gray: #21373e;
  --color-gray-dark: #54565f;
  --color-gray: #9a9db3;
  --color-gray-mid: #a0aec0;
  --color-gray-light: #c1c5d7;
  --color-gray-lighter: #AEBOB8;
  --color-light-gray: #e9ebf1;
  --color-light: #f5f6f8;
  --color-lighter: #f6f6f9;
  --color-lightest-gray: #e2ebf0;
  --color-off-white: #fffcfd;
  --color-white: #ffffff;
  /* Backgrounds */
  --bg-primary: #f6f6f9;
  --bg-secondary: #f5f6f8;
  --bg-light: #fffcfd;
  /* Opacity */
  --color-white-40: rgba(255, 255, 255, 0.4);
  --color-white-0_2: rgba(255, 255, 255, 0.002);
  --color-gray-light-40: rgba(193, 197, 215, 0.4);
  --color-black-10: rgba(0, 0, 0, 0.1);
  --color-f6f6f9-40: rgba(246, 246, 249, 0.4);
  --color-transparent: transparent;
  --accent: #6366f1;
  --accent-2: #6a5af9;
  --muted: #6b7280;
  --card-border: #edf0ff;
  --bg: #f7f6fb;
  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent-purple) 100%
  );
  --gradient-accent: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-accent-yellow) 100%
  );
  --gradient-green: linear-gradient(
    135deg,
    var(--color-accent-green) 0%,
    #4cd964 100%
  );
  --gradient-light: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  /* Card Gradients */
  --gradient-1: linear-gradient(
    135deg,
    rgba(71, 98, 255, 0.1) 0%,
    rgba(138, 99, 255, 0.1) 100%
  );
  --gradient-2: linear-gradient(
    135deg,
    rgba(77, 171, 247, 0.1) 0%,
    rgba(151, 117, 250, 0.1) 100%
  );
  --gradient-3: linear-gradient(
    135deg,
    rgba(255, 169, 77, 0.1) 0%,
    rgba(255, 107, 157, 0.1) 100%
  );
  --gradient-4: linear-gradient(
    135deg,
    rgba(81, 207, 102, 0.1) 0%,
    rgba(93, 231, 223, 0.1) 100%
  );
  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.8);
  --glass-shadow: rgba(149, 157, 165, 0.1);
  /* Transitions */
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Backgrounds */
  --bg-primary: #f6f6f9;
  --bg-secondary: #f5f6f8;
  --bg-light: #fffcfd;
  --bg-card: var(--color-white);
  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
}

/* =========================================
   BASE
========================================= */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

::-moz-selection {
  background: var(--color-primary);
  color: #fff;
}

::selection {
  background: var(--color-primary);
  color: #fff;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: inherit;
  padding-bottom: 1rem;
}

p {
  margin-bottom: 0rem !important;
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1440px;
  width: 90%; /* shrinks nicely on smaller screens */
  margin: 0 auto;
}

.alignment {
  display: flex;
  justify-content: space-between;
  min-height: 100vh;
  /* align-items: center; */
  flex-direction: column;
}

.line-clamp-2 {
  line-clamp: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.word-clamp-3 {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.text-base {
  color: var(--color-primary);
}

.text-darkbase {
  color: var(--color-primary-dark);
}

.text-lightbase {
  color: var(--color-primary-light);
}

.bg-base {
  background-color: var(--color-primary);
}

.bg-darkbase {
  background-color: var(--color-primary-dark);
}

.bg-lightbase {
  background-color: var(--color-primary-light);
}

.text-gradient-1 {
  background: linear-gradient(135deg, var(--color-primary-lighter), var(--color-primary));
}

.text-gradient-2 {
  display: inline-block;
  background: linear-gradient(90deg, #4c51bf, #5a67d8, #f57fac);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.border-base {
  border-color: var(--color-primary);
}

.border-darkbase {
  border-color: var(--color-primary-dark);
}

.border-lightbase {
  border-color: var(--color-primary-light);
}

.fs-5-5 {
  font-size: 1.1rem !important;
}

.fs-6-5 {
  font-size: 0.9rem !important;
}

.fs-7 {
  font-size: 0.8rem !important;
}

.h-100vh {
  height: 100vh;
}

.w-fit {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.pt-6rem {
  padding-top: 6rem !important;
}

/* =========================================
   LAYOUT
========================================= */
.site-footer {
  background-color: var(--color-white);
  font-size: 0.9rem;
  /* Brand Section */
  /* Divider */
  /* Footer Columns */
  /* Bottom copyright text */
  /* Bottom decorative image */
}
.site-footer .footer-logo-badge {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-white);
}
.site-footer .footer-brand-name {
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--color-dark-blue);
}
.site-footer .footer-tagline {
  color: #000;
}
.site-footer .footer-divider {
  margin: 0;
  border-color: var(--color-light-gray);
  opacity: 1;
}
.site-footer .footer-heading {
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  color: #aeb0b8;
  margin-bottom: 0.75rem;
}
.site-footer .footer-links li + li {
  margin-top: 0.35rem;
}
.site-footer .footer-links a {
  text-decoration: none;
  color: #54565f;
  font-size: 1rem;
  font-weight: 500;
}
.site-footer .footer-links a:hover {
  color: var(--color-primary);
}
.site-footer .footer-copy {
  font-size: 0.8rem;
  color: var(--color-gray);
}
.site-footer .footer-bottom-image-wrapper {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  overflow: hidden;
}
.site-footer .footer-bottom-image-wrapper .footer-bottom-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.routing-section .routing-list li {
  padding-left: 1.5rem;
}
.routing-section .routing-list li::before {
  content: "✓";
}

.navbar {
  z-index: 9999;
} /* Dropdown wrapper */
.custom-dropdown {
  position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--color-primary-dark);
}

/* ===== Base ===== */
.custom-dropdown {
  position: relative;
}

.dropdown-toggle-custom {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 1.5rem;
  transition: transform 0.25s ease;
}

/* ===== Dropdown Menu ===== */
.custom-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background: #fff;
  border-radius: 14px;
  min-width: 220px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  z-index: 1000;
}

/* links */
.custom-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.95rem;
  color: var(--color-dark-blue);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.custom-dropdown-menu a:hover {
  background: var(--color-primary-lighter);
  color: var(--color-primary);
}

/* ===== Desktop (hover) ===== */
@media (min-width: 992px) {
  .custom-dropdown-menu {
    position: absolute;
    top: 92%;
    left: 0;
  }
  .custom-dropdown:hover .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .custom-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}
/* ===== Mobile (tap) ===== */
@media (max-width: 991px) {
  .custom-dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 10px;
    padding-left: 12px;
    transform: none;
    background: transparent;
  }
  /* hide menu */
  .custom-dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
  }
  /* show on click */
  .custom-dropdown.open .custom-dropdown-menu {
    display: block;
  }
  .custom-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }
}
.brand-stars {
  /* margin-left: 10px; */
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
}

.star-icon {
  position: absolute;
  font-size: 18px;
  animation: orbit 4s linear infinite;
}

.star-up {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation-delay: 0s;
}

.star-down {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #f472b6, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation-delay: -2s;
}

.brand-stars::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 2px;
  background: rgba(139, 92, 246, 0.5);
  border-radius: 50%;
  animation: pulse-core 2s ease-in-out infinite;
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(10px) rotate(-360deg);
  }
}
@keyframes pulse-core {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}
.new-tag {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f9d976, #f6e27a, #f39f86);
  color: black;
  padding: 0.1rem 0.27rem;
  font-size: 0.6rem;
  border-radius: 0.375rem;
  box-shadow: 0 3px 10px rgba(249, 216, 118, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.new-tag::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: rotate(25deg);
  animation: tagShine 2.8s ease-in-out infinite;
}

@keyframes tagShine {
  0% {
    left: -60%;
  }
  50% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
/* =========================================
   COMPONENTS
========================================= */
/* hero-section-altered */
.hero-section {
  padding: 120px 0 120px;
}

.container-hero {
  max-width: 1180px;
  margin: auto;
}

.hero-row {
  display: flex;
  align-items: center;
  /* gap: 30px; */
  min-height: 620px;
}

/* ---------------- Badge ---------------- */
.hero-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 14px;
  background: #efeaff;
  color: var(--accent-2);
  border-radius: 999px;
  font-weight: 600;
  font-size: clamp(11px, 1vw, 13px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
}

/* ---------------- Title ---------------- */
.hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  margin-top: 18px;
}

.hero-title .highlight {
  color: var(--accent-2);
}

/* ---------------- Subtitle ---------------- */
.hero-sub {
  margin-top: 16px;
  max-width: 480px;
  font-size: clamp(14px, 1.4vw, 17px);
  color: #4b5563;
}

/* ---------------- List ---------------- */
.hero-list {
  padding-left: 15px;
  margin-top: 18px;
}

.hero-list li {
  margin-bottom: 10px;
  color: #374151;
  font-size: clamp(13px, 1.2vw, 15px);
}

.hero-list li::before {
  content: "✓";
  font-size: 0.95rem;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: black;
  margin-top: 4px;
  padding-right: 8px;
  font-weight: 800;
}

/* ---------------- Buttons ---------------- */
.hero-cta .btn {
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 30px;
  font-size: 15px;
}

/* ---- Outer Gradient Container ---- */
.hero-chat-frame {
  width: 500px;
  padding: 28px 60px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgb(234, 236, 255) 50%, rgb(221, 225, 255) 100%);
  /* box-shadow: 0 35px 80px rgba(99, 102, 241, 0.12); */
  display: flex;
  justify-content: center;
  border: 1px solid rgba(193, 197, 215, 0.4);
}

/* ---- Message Bubbles ---- */
.msg {
  max-width: 84%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(6px);
}

.msg.show {
  animation: msgIn 0.45s ease forwards;
}

/* Bot messages */
.msg.bot {
  background: #f3f6ff;
  border: 1px solid #e9efff;
  color: #0f172a;
}

.msg.bot.light {
  background: #fafbff;
}

.msg.bot.small {
  padding: 10px 12px;
  font-size: 13px;
}

/* User messages */
.msg.user {
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 16px;
}

/* ---- Inner Chat Card ---- */
.chat-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--card-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* ---- Header ---- */
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid #f3f5ff;
}

.chat-header img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.chat-header .meta .name {
  font-weight: 700;
  font-size: 14.5px;
}

.chat-header .meta .role {
  font-size: 12px;
  color: #8b93a7;
}

.chat-dots {
  margin-left: auto;
  font-size: 20px;
  color: #bfc7e6;
}

/* ---- Chat Body ---- */
.chat-body {
  padding: 16px;
  height: 415px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: none;
}

.chat-body::-webkit-scrollbar {
  display: none;
}

/* Buttons inside bubble */
.bubble-actions {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}

.btn-cancel {
  background: #fff;
  border: 1px solid #e5e9ff;
  padding: 6px 14px;
  border-radius: 10px;
}

.btn-confirm {
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 10px;
}

/* ---- Chat Input ---- */
.chat-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-top: 1px solid #f3f5ff;
}

.chat-input input {
  flex: 1;
  border: 1px solid #e6e9ff;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
}

.send-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}

/* ---- Message Animation ---- */
@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Chat Demo Section */
.chat-demo {
  background-color: var(--bg-light);
  border-radius: 24px;
  padding: 24px;
  position: relative;
}
.chat-demo .chat-bubble {
  background-color: var(--color-white);
  border-radius: 14px;
  padding: 14px 18px;
  max-width: 80%;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--color-dark-blue);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.chat-demo .chat-bubble.user {
  margin-left: auto;
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Marquee Section */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}
.marquee-wrapper .marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-wrapper .marquee-track img {
  height: 46px;
  width: auto;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Want to ask section */
.want-ask-section .want-ask-box {
  border-radius: 20px;
  background-color: var(--color-white);
  padding: 2rem;
  box-shadow: 0 0 12px #f0f0ff;
  border: 1px solid #e5e7eb;
}

/* Divider */
.divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(220, 225, 255, 0) 0%, rgb(220, 225, 255) 50%, rgba(220, 225, 255, 0) 100%);
  margin: 60px 0;
}

.trusted-label {
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

/* Marquee container */
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

/* Track that moves */
.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marqueeScroll 45s linear infinite; /* SLOWER SPEED */
}

/* Logos */
.trusted-logo-wrapper img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(0%);
  transition: 0.3s ease;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.trusted-logo-wrapper img:hover {
  transform: scale(1.05);
}

/* Smooth infinite scrolling animation */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Customizable brand section */
.custom-section {
  background-color: var(--bg-light);
}
.custom-section .custom-media-wrapper {
  max-width: 560px;
  margin-inline: auto;
}
.custom-section .custom-media-wrapper .custom-media-img {
  display: block;
  width: 100%;
  height: auto;
}
.custom-section .custom-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
}
.custom-section .custom-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-dark-blue);
}
.custom-section .custom-subtitle {
  font-size: 0.98rem;
  color: var(--color-gray-dark);
  max-width: 32rem;
}
.custom-section .custom-video-card {
  background-color: var(--color-white);
  border-radius: 18px;
  padding: 0.75rem 1rem;
  gap: 0.9rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.custom-section .custom-video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
}
.custom-section .custom-video-card .custom-video-thumb {
  width: 110px;
  height: 70px;
  border-radius: 12px;
  background: radial-gradient(circle at 10% 0%, #ffffff 0%, #d1dbff 55%, #697fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.custom-section .custom-video-card .custom-video-thumb .custom-play-icon {
  font-size: 1.4rem;
  line-height: 1;
  padding-left: 0.12rem;
  background-color: var(--color-white);
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}
.custom-section .custom-video-card .custom-video-content {
  display: flex;
  flex-direction: column;
}
.custom-section .custom-video-card .custom-video-content .custom-video-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-primary);
}
.custom-section .custom-video-card .custom-video-content .custom-video-meta {
  font-size: 0.85rem;
  color: var(--color-gray);
}

:root {
  /* Color Palette */
  --color-primary: #4762ff;
  --color-primary-light: #697fff;
  --color-primary-lighter: #d1dbff;
  --color-primary-dark: #2437cc;
  --color-accent-blue: #4dabf7;
  --color-accent-purple: #9775fa;
  --color-accent-green: #51cf66;
  --color-accent-amber: #ffa94d;
}

/* Hero Section - Light Mode */
.hero_section {
  margin-bottom: var(--spacing-3xl);
  padding: var(--spacing-3xl) var(--spacing-xl);
  position: relative;
  background: radial-gradient(circle at 10% 20%, var(--color-primary-lighter) 0%, transparent 40%), radial-gradient(circle at 90% 80%, var(--color-primary-lighter) 0%, transparent 40%), linear-gradient(180deg, var(--bg-primary) 0%, var(--color-white) 100%);
}

.hero_title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.hero_title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 50%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.hero_subtitle {
  font-size: 1.25rem;
  color: var(--color-gray-dark);
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  font-weight: 400;
}

/* AI Brain Visual - Light Mode */
.ai-brain-light {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brain-core-light {
  width: 100px;
  height: 100px;
  background: var(--gradient-glass);
  border-radius: 50%;
  position: relative;
  animation: rotate 20s linear infinite;
  box-shadow: var(--shadow-elevated);
  border: 2px solid var(--color-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 2rem;
}

.brain-core-light::before {
  content: "";
  position: absolute;
  inset: -5px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(10px);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Glass Card Base */
.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Gradient Overlay */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2;
}

/* Card Content */
.card-content {
  position: relative;
  z-index: 2;
}

/* Icon Container */
.icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}

.icon-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.1;
}

.icon-wrapper i {
  font-size: 1.25rem;
  z-index: 1;
}

/* Card 1: Documents */
.card-1 .icon-wrapper {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-purple));
}

.card-1 .gradient-overlay {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-purple));
}

.card-1 .icon-wrapper i {
  color: white;
}

/* Card 2: AI Accuracy */
.card-2 .icon-wrapper {
  background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-purple));
}

.card-2 .gradient-overlay {
  background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-purple));
}

.card-2 .icon-wrapper i {
  color: white;
}

/* Card 3: Query Time */
.card-3 .icon-wrapper {
  background: linear-gradient(135deg, var(--color-accent-amber), #ff6b9d);
}

.card-3 .gradient-overlay {
  background: linear-gradient(135deg, var(--color-accent-amber), #ff6b9d);
}

.card-3 .icon-wrapper i {
  color: white;
}

/* Card 4: Database */
.card-4 .icon-wrapper {
  background: linear-gradient(135deg, var(--color-accent-green), #5ee7df);
}

.card-4 .gradient-overlay {
  background: linear-gradient(135deg, var(--color-accent-green), #5ee7df);
}

.card-4 .icon-wrapper i {
  color: white;
}

/* Statistics Display */
.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #636363;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Trend Indicator */
.trend-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.75rem;
}

/* Card-specific trend colors */
.card-1 .trend-indicator {
  background: rgba(71, 98, 255, 0.1);
  color: var(--color-primary);
}

.card-2 .trend-indicator {
  background: rgba(77, 171, 247, 0.1);
  color: var(--color-accent-blue);
}

.card-3 .trend-indicator {
  background: rgba(255, 169, 77, 0.1);
  color: #e67e22;
}

.card-4 .trend-indicator {
  background: rgba(81, 207, 102, 0.1);
  color: var(--color-accent-green);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .glass-card {
    padding: 1.5rem;
  }
  .stat-value {
    font-size: 2.25rem;
  }
}
/* Animation */
@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.glass-card {
  animation: cardFloat 6s ease-in-out infinite;
}

.card-1 {
  animation-delay: 0s;
}

.card-2 {
  animation-delay: 1.5s;
}

.card-3 {
  animation-delay: 3s;
}

.card-4 {
  animation-delay: 4.5s;
}

/* Hover Effects */
.glass-card:hover {
  animation-play-state: paused;
}

.glass-card:hover .icon-wrapper {
  transform: scale(1.05) rotate(3deg);
}

.icon-wrapper {
  transition: transform var(--transition-smooth);
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

/* Feature Module - Light */
.feature-module {
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-light-gray);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.feature-module:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary-light);
}

.module-header {
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-bottom: 1px solid var(--color-light-gray);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.module-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-lighter);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-primary);
  border: 1px solid var(--color-light-gray);
}

.module-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  padding-bottom: 0px;
}

.module-subtitle {
  color: var(--color-gray-dark);
  font-size: 0.95rem;
}

.module-body {
  padding: var(--spacing-xl);
  background: white;
}

/* Upload Zone - Light */
.upload-zone-light {
  border: 2px dashed var(--color-gray-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  background: var(--color-lighter);
}

.upload-zone-light:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-lighter);
  transform: translateY(-2px);
}

.upload-icon-light {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

/* Neural Network Visualization - Light */
.neural-visual-light {
  height: 180px;
  position: relative;
  margin: var(--spacing-lg) 0;
  background: var(--gradient-glass);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-light-gray);
  overflow: hidden;
}

.neuron-light {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(71, 98, 255, 0.3);
  animation: pulse-light 2s infinite;
}

.connection-light {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), rgba(71, 98, 255, 0.1));
  transform-origin: left center;
}

@keyframes pulse-light {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
/* Tag Matrix - Light */
.tag-matrix-light {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: var(--spacing-sm);
}

.matrix-cell-light {
  background: var(--color-lighter);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  text-align: center;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  color: var(--color-dark);
}

.matrix-cell-light:hover {
  background: var(--color-primary-lighter);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
  color: var(--color-primary-dark);
}

.matrix-cell-light.active {
  background: var(--color-primary);
  border-color: var(--color-primary-dark);
  color: white;
  box-shadow: var(--shadow-subtle);
}

/* AI Features Grid */
.ai-features-light {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.ai-feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  background: var(--color-lighter);
  border: 1px solid var(--color-light-gray);
  transition: all var(--transition-fast);
}

.ai-feature-item:hover {
  background: var(--color-primary-lighter);
  border-color: var(--color-primary-light);
  transform: translateX(5px);
}

.ai-feature-item i {
  color: var(--color-primary);
}

/* Version Timeline - Light */
.version-timeline-light {
  position: relative;
  padding-left: var(--spacing-xl);
}

.version-timeline-light::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-light-gray) 0%, var(--color-primary) 10%, var(--color-primary) 90%, var(--color-light-gray) 100%);
}

.version-node-light {
  position: relative;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-light-gray);
  transition: all var(--transition-normal);
}

.version-node-light:hover {
  transform: translateX(5px) scale(1.01);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-subtle);
}

.version-node-light::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 20px;
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--color-light);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero_title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .hero_title {
    font-size: 2.25rem;
  }
  .hero_section {
    padding: var(--spacing-xl) var(--spacing-md);
  }
  .module-header {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
  }
  .tag-matrix-light {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
  .ai-features-light {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   Knowledge Hero Section
================================ */
.knowledge-hero-section {
  display: flex;
  align-items: center;
  padding: 170px 0;
  position: relative;
  overflow: hidden;
  /* Background layers */
  /* Content */
  /* CTA Buttons */
  /* Stats */
  /* Image */
  /* Floating cards */
}
.knowledge-hero-section .knowledge-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}
.knowledge-hero-section .knowledge-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234361ee' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.knowledge-hero-section .knowledge-hero-content {
  max-width: 1200px;
}
.knowledge-hero-section .knowledge-hero-tag {
  display: inline-block;
  background: linear-gradient(90deg, #f72585, #b5179e);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
}
.knowledge-hero-section .knowledge-hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}
.knowledge-hero-section .knowledge-hero-subtitle {
  color: #5a6c7d;
  max-width: 700px;
  margin-bottom: 2.5rem;
}
.knowledge-hero-section .knowledge-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.knowledge-hero-section .btn-knowledge-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(67, 97, 238, 0.3);
}
.knowledge-hero-section .btn-knowledge-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(67, 97, 238, 0.4);
}
.knowledge-hero-section .btn-knowledge-secondary {
  background: transparent;
  border: 2px solid #d1d9e6;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
}
.knowledge-hero-section .knowledge-hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.knowledge-hero-section .knowledge-stat-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.knowledge-hero-section .knowledge-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}
.knowledge-hero-section .knowledge-stat-content h4 {
  font-weight: 700;
  margin: 0;
}
.knowledge-hero-section .knowledge-stat-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #6c757d;
}
.knowledge-hero-section .knowledge-hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.knowledge-hero-section .knowledge-hero-image {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}
.knowledge-hero-section .knowledge-hero-image:hover {
  transform: rotateY(0);
}
.knowledge-hero-section .knowledge-floating {
  position: absolute;
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: float 6s ease-in-out infinite;
}
.knowledge-hero-section .knowledge-floating.one {
  top: 10%;
  left: 5%;
}
.knowledge-hero-section .knowledge-floating.two {
  bottom: 15%;
  right: 5%;
}
.knowledge-hero-section .knowledge-floating.three {
  top: 40%;
  right: 0;
}

/* Animations */
@keyframes float {
  50% {
    transform: translateY(-15px);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .knowledge-hero-section .knowledge-hero-title {
    font-size: 2.2rem;
  }
  .knowledge-hero-section .knowledge-floating {
    display: none;
  }
}
/* ================= COLOR TOKENS ================= */
:root {
  --color-primary: #4762ff;
  --color-primary-light: #697fff;
  --color-primary-lighter: #d1dbff;
  --color-accent: #f37249;
  --color-accent-purple: #6232eb;
  --color-light: #f5f6f8;
  --color-white: #ffffff;
  --card-border: #edf0ff;
}

/* ================= BASE ================= */
* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.sign-body {
  background: var(--color-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= OUTER CARD ================= */
.auth-wrapper {
  width: 1100px;
  max-width: 95%;
  background: var(--color-white);
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 30px 60px rgba(71, 98, 255, 0.15);
}
.auth-wrapper .auth-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ================= LEFT FORM ================= */
.auth-form {
  background: var(--color-white);
  border-radius: 22px;
  padding: 48px;
  border: 1px solid var(--card-border);
  position: relative;
  /* ================= PRODUCT HEADING ================= */
}
.auth-form .product-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 24px;
}
.auth-form .product-heading i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.auth-form h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.auth-form .subtitle {
  color: #64748b;
  margin-bottom: 34px;
  max-width: 360px;
}

/* ================= STEPPER ================= */
.step-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}
.step-progress .step-node {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-primary-lighter);
  color: var(--color-primary);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.25s ease;
}
.step-progress .step-node.active {
  background: var(--color-primary);
  color: var(--color-white);
}
.step-progress .step-node.completed {
  background: var(--color-accent);
  color: var(--color-white);
}
.step-progress .step-node:hover {
  transform: scale(1.1);
  background: var(--color-primary-light);
  color: var(--color-white);
}
.step-progress .step-line {
  flex: 1;
  height: 1px;
  background: var(--card-border);
}

/* ================= FORM ================= */
label {
  font-size: 0.85rem;
  color: #334155;
  margin-bottom: 6px;
}

.form-control {
  background: var(--color-light);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 14px 16px;
  color: #0f172a;
  transition: all 0.25s ease;
}
.form-control:hover {
  border-color: var(--color-primary-light);
  background: var(--color-white);
}
.form-control:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px var(--color-primary-lighter);
}

.input-group-text {
  background: var(--color-light);
  border: 1px solid var(--card-border);
  color: #475569;
  border-radius: 12px;
  transition: all 0.25s ease;
}
.input-group-text:hover {
  background: var(--color-primary-lighter);
  color: var(--color-primary);
}

.form-step {
  display: none;
  animation: fade 0.3s ease;
}
.form-step.active {
  display: block;
}

/* ================= FOOTER ================= */
.form-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.form-footer .btn-prev {
  background: transparent;
  border: 1px solid var(--card-border);
  color: #475569;
  border-radius: 14px;
  padding: 10px 22px;
  transition: all 0.25s ease;
}
.form-footer .btn-prev:hover {
  background: var(--color-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.form-footer .btn-next,
.form-footer .btn-submit {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 14px;
  padding: 12px 36px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.form-footer .btn-next:hover,
.form-footer .btn-submit:hover {
  background: var(--color-primary-light);
  box-shadow: 0 10px 25px rgba(71, 98, 255, 0.35);
  transform: translateY(-1px);
}

/* ================= SUCCESS ================= */
.success-icon {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  font-size: 26px;
}

.summary-box {
  background: var(--color-light);
  border-radius: 14px;
  padding: 20px;
  margin-top: 25px;
  border: 1px solid var(--card-border);
}
.summary-box .summary-row {
  display: flex;
  justify-content: space-between;
  color: #334155;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* ================= RIGHT IMAGE ================= */
.auth-image {
  border-radius: 22px;
  overflow: hidden;
}
.auth-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ================= LOADER ================= */
#loadingOverlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 22px;
}
#loadingOverlay .spinner {
  width: 48px;
  height: 48px;
  border: 5px solid var(--color-primary-lighter);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ================= ANIMATIONS ================= */
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .auth-wrapper .auth-inner {
    grid-template-columns: 1fr;
  }
  .auth-image {
    display: none;
  }
}
/* =========================================
   VARIABLES
========================================= */
/* =========================================
   MODAL BACKDROP
========================================= */
.ai-glass-modal .modal-backdrop {
  background: rgba(15, 23, 42, 0.85);
}

/* =========================================
   MODAL SHELL
========================================= */
.ai-glass-content {
  position: relative;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(22px);
          backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

/* =========================================
   TITLE BAR
========================================= */
.ai-glass-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

/* =========================================
   CLOSE BUTTON
========================================= */
.ai-glass-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.ai-glass-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* =========================================
   VIDEO FRAME
========================================= */
.ai-video-frame {
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 20px 60px rgba(0, 0, 0, 0.6);
}
.ai-video-frame iframe {
  border: none;
}

/* Knowledge List */
.knowledge-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
  color: var(--color-primary);
  font-weight: 500;
}
.knowledge-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.85rem;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-primary);
  margin-top: 4px;
}

/* Analytics Section */
.analytics-media-wrapper {
  max-width: 560px;
  margin-inline: auto;
}
.analytics-media-wrapper .analytics-media-img {
  display: block;
  width: 100%;
  height: auto;
}

.analytics-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
}

.analytics-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-dark-blue);
}

.analytics-subtitle {
  font-size: 0.98rem;
  color: var(--color-gray-dark);
  max-width: 32rem;
}

.analytics-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
  color: var(--color-primary);
  font-weight: 500;
}
.analytics-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.85rem;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-primary);
  margin-top: 4px;
}

/* Compliance Section */
.compliance-section {
  background-color: var(--color-white);
  position: relative;
}
.compliance-section .compliance-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
}
.compliance-section .compliance-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-dark-blue);
}
.compliance-section .compliance-badges {
  margin-top: 1.5rem;
}
.compliance-section .compliance-badges .compliance-badge img {
  max-height: 140px;
  width: auto;
}

/* Decorative side images */
.compliance-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.35;
  pointer-events: none;
}
.compliance-deco img {
  max-height: 120px;
  width: auto;
}
.compliance-deco.compliance-deco-left {
  left: 4%;
}
.compliance-deco.compliance-deco-right {
  right: 4%;
}

/* Side badges */
.side-badge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
  left: 18%;
  right: 11%;
}
.side-badge img {
  width: 120px;
  height: auto;
}
.side-badge-left {
  left: 72%;
}
.side-badge-right {
  right: 0;
}

.compliance-label {
  font-size: 15px;
  color: #4a6bff;
}

.compliance-title {
  font-size: 38px;
  line-height: 1.3;
  color: #000;
  text-align: center;
  margin: 0 auto;
  max-width: 750px;
}

/* Feature Cards */
.feature-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #ebe9e8;
  transition: all 0.25s ease;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.feature-item .feature-icon {
  font-size: 32px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: white;
  margin-bottom: 14px;
}
.feature-item .feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.feature-item .feature-text {
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.55;
}
.feature-item:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-sub-header {
  background: #f6f7ff;
  border-bottom: 1px solid var(--color-lightest-gray), 4%;
}
.feature-sub-header h1 {
  color: #0f172a;
}

.feature-sub-sidebar {
  background: #fff;
  border: 1px solid var(--color-lightest-gray);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.feature-sub-sidebar .feature-sub-list {
  padding-left: 0;
}
.feature-sub-sidebar .feature-sub-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 6px;
  transition: 0.25s;
  color: var(--color-text-dark);
}
.feature-sub-sidebar .feature-sub-list li:hover {
  background: #f2f3ff;
}
.feature-sub-sidebar .feature-sub-list li.active {
  background: #e7e9ff;
  color: #333;
}
.feature-sub-sidebar .feature-sub-list li span {
  background: #eef0ff;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
}

.feature-sub-card {
  background: #fff;
  border: 1px solid var(--color-lightest-gray);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.feature-sub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.feature-sub-card .feature-sub-image {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-lightest-gray);
}
.feature-sub-card .feature-sub-image img {
  width: 180px;
  border-radius: 10px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}
.feature-sub-card .feature-sub-image.feature-sub-gradient-1 {
  background: linear-gradient(135deg, #b1c4ff, #bbd6ff);
}
.feature-sub-card .feature-sub-image.feature-sub-gradient-2 {
  background: linear-gradient(135deg, #c4b5ff, #bad9ff);
}
.feature-sub-card .feature-sub-image.feature-sub-gradient-3 {
  background: linear-gradient(135deg, #bbf1ff, #d4e0ff);
}
.feature-sub-card p {
  font-size: 14px;
}
.feature-sub-card .feature-sub-badge {
  position: absolute;
  bottom: 7px;
  right: 10px;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.feature-sub-card .feature-sub-badge.feature-sub-basic {
  background: #cfd6ff;
}
.feature-sub-card .feature-sub-badge.feature-sub-enterprise {
  background: #ffe3b3;
}

/* Hide grid when empty */
.feature-sub-grid.is-hidden {
  display: none;
}

/* EMPTY STATE WRAPPER */
.feature-empty-state {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD */
.empty-gradient-card {
  position: relative;
  max-width: 460px;
  padding: 60px 36px 44px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--color-primary-lighter, #dbe3ff), #ffffff);
  box-shadow: 0 20px 50px rgba(71, 98, 255, 0.18);
}

/* ICON BADGE */
.empty-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-primary, #4762ff), var(--color-accent-purple, #6232eb));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 12px 30px rgba(71, 98, 255, 0.4);
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
}

/* TEXT */
.empty-gradient-card h4 {
  color: var(--color-primary-dark, #0f172a);
}

.empty-gradient-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* DECORATIVE BLURS */
.empty-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.4;
  z-index: 0;
}

.empty-blur-1 {
  width: 140px;
  height: 140px;
  background: var(--color-primary);
  top: -40px;
  right: -40px;
}

.empty-blur-2 {
  width: 120px;
  height: 120px;
  background: var(--color-accent-purple);
  bottom: -30px;
  left: -30px;
}

/* Ensure content stays above blurs */
.empty-gradient-card > * {
  position: relative;
  z-index: 1;
}

/* Mobile */
@media (max-width: 576px) {
  .empty-gradient-card {
    padding: 56px 24px 40px;
  }
}
@keyframes floatRing {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floatPlus {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -55%) rotate(8deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
/* Section container */
.new-cta-section {
  position: relative;
  min-height: clamp(260px, 35vw, 370px);
  width: 100%;
  background: linear-gradient(180deg, #0a0f2b 0%, #04306b 100%);
  overflow: hidden;
  padding: clamp(40px, 8vw, 80px) 0;
  /* Shared shape styling */
  /* Circles */
  /* Plus signs */
}
.new-cta-section .new-cta-content {
  z-index: 5;
  padding: 0 clamp(20px, 5vw, 40px);
}
.new-cta-section .new-cta-content .new-cta-title {
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(10px, 2vw, 15px);
  line-height: 1.15;
}
.new-cta-section .new-cta-content .new-cta-subtitle {
  font-size: clamp(16px, 2.4vw, 22px);
  color: #cfd8ff;
  margin-bottom: clamp(20px, 4vw, 35px);
  line-height: 1.45;
}
.new-cta-section .new-cta-content .new-cta-btn {
  background: #1aa7ff;
  border: none;
  padding: clamp(10px, 2.5vw, 14px) clamp(28px, 6vw, 48px);
  border-radius: 40px;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 600;
  transition: 0.25s ease;
}
.new-cta-section .new-cta-content .new-cta-btn:hover {
  background: #41b8ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 162, 255, 0.35);
}
.new-cta-section .new-cta-shape {
  position: absolute;
  opacity: 0.25;
}
.new-cta-section .new-cta-circle {
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: floatRing 6s ease-in-out infinite;
}
.new-cta-section .new-cta-circle.new-cta-circle-lg {
  width: clamp(180px, 25vw, 260px);
  height: clamp(180px, 25vw, 260px);
  left: clamp(30px, 8vw, 90px);
  top: clamp(90px, 20vw, 150px);
  animation-duration: 7s;
}
.new-cta-section .new-cta-circle.new-cta-circle-md {
  width: clamp(100px, 18vw, 140px);
  height: clamp(100px, 18vw, 140px);
  left: clamp(20px, 6vw, 50px);
  top: clamp(20px, 8vw, 40px);
  animation-duration: 5.5s;
}
.new-cta-section .new-cta-circle.new-cta-circle-sm {
  width: clamp(40px, 10vw, 60px);
  height: clamp(40px, 10vw, 60px);
  left: clamp(80px, 15vw, 170px);
  top: clamp(20px, 6vw, 30px);
  animation-duration: 4.5s;
}
.new-cta-section .new-cta-plus {
  width: clamp(26px, 6vw, 40px);
  height: clamp(26px, 6vw, 40px);
}
.new-cta-section .new-cta-plus::before, .new-cta-section .new-cta-plus::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.28);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.new-cta-section .new-cta-plus::before {
  width: 4px;
  height: 100%;
}
.new-cta-section .new-cta-plus::after {
  width: 100%;
  height: 4px;
}
.new-cta-section .new-cta-plus.new-cta-plus-lg {
  right: clamp(40px, 10vw, 140px);
  top: clamp(20px, 6vw, 40px);
  animation: floatPlus 7s infinite ease-in-out;
}
.new-cta-section .new-cta-plus.new-cta-plus-md {
  right: clamp(40px, 9vw, 120px);
  bottom: clamp(40px, 10vw, 110px);
  animation: floatPlus 5.5s infinite ease-in-out;
}

:root {
  /* Primary Colors */
  --color-primary: #4762ff;
  --color-primary-light: #697fff;
  --color-primary-lighter: #d1dbff;
  --color-primary-dark: #2437cc;
  /* Accent Colors */
  --color-accent: #f37249;
  --color-accent-purple: #6232eb;
  --color-accent-green: #00c853;
  --color-accent-yellow: #ffb347;
  /* Neutrals */
  --color-darkest: #000000;
  --color-dark: #06070e;
  --color-dark-blue: #0f172a;
  --color-dark-gray: #21373e;
  --color-gray-dark: #54565f;
  --color-gray: #9a9db3;
  --color-gray-mid: #a0aec0;
  --color-gray-light: #c1c5d7;
  --color-gray-lighter: #aeb0b8;
  --color-light-gray: #e9ebf1;
  --color-light: #f5f6f8;
  --color-lighter: #f6f6f9;
  --color-lightest-gray: #e2ebf0;
  --color-off-white: #fffcfd;
  --color-white: #ffffff;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
}

.logo-symbol {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.25rem;
}

.logo-name {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
}

.main-navigation {
  display: flex;
  gap: var(--spacing-xl);
  align-items: center;
}

.nav-item {
  color: var(--color-gray-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: var(--spacing-xs) 0;
}

.nav-item:hover {
  color: var(--color-primary);
}

.nav-item.current {
  color: var(--color-primary);
  font-weight: 600;
}

.nav-item.current::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.action-btn {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: var(--spacing-sm) var(--spacing-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.action-btn.outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary-lighter);
}

/* Hero Section with Real Dashboard */
.page-hero {
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, var(--color-primary-lighter) 0%, transparent 40%), radial-gradient(circle at 90% 80%, var(--color-primary-lighter) 0%, transparent 40%), linear-gradient(180deg, var(--bg-primary) 0%, var(--color-white) 100%);
  z-index: -1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: var(--color-primary-lighter);
  color: var(--color-primary);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
}

.hero-heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--color-gray-dark);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

.hero-preview {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-xl);
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-btn {
  width: 80px;
  height: 80px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.video-btn:hover {
  transform: scale(1.1);
  background: var(--color-primary);
  color: var(--color-white);
}

/* Dashboard Metrics */
.metrics-area {
  padding: var(--spacing-2xl) 0;
}

.metrics-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.data-card {
  background: var(--bg-card);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.data-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-lighter);
}

.data-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.data-card:nth-child(2)::before {
  background: var(--gradient-green);
}

.data-card:nth-child(3)::before {
  background: var(--gradient-accent);
}

.data-card:nth-child(4)::before {
  background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent));
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  font-size: 1.5rem;
  background: var(--color-primary-lighter);
  color: var(--color-primary);
}

.data-card:nth-child(2) .card-icon {
  background: rgba(0, 200, 83, 0.1);
  color: var(--color-accent-green);
}

.data-card:nth-child(3) .card-icon {
  background: rgba(243, 114, 73, 0.1);
  color: var(--color-accent);
}

.data-card:nth-child(4) .card-icon {
  background: rgba(98, 50, 235, 0.1);
  color: var(--color-accent-purple);
}

.card-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-xs);
  line-height: 1;
}

.card-label {
  font-size: 1rem;
  color: var(--color-gray-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.card-trend {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 0.875rem;
  font-weight: 600;
}

.trend-positive {
  color: var(--color-accent-green);
}

.trend-negative {
  color: var(--color-accent);
}

/* Real Dashboard Screenshots */
.dashboards-area {
  padding: var(--spacing-3xl) 0;
  background: var(--bg-light);
  border-radius: var(--radius-2xl);
  margin: var(--spacing-3xl) 0;
}

.area-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.area-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}

.area-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-dark);
  max-width: 600px;
  margin: 0 auto;
}

.dashboards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.dashboard-preview-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-light-gray);
  transition: all 0.3s ease;
}

.dashboard-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.preview-image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 1px solid var(--color-light-gray);
}

.preview-content {
  padding: var(--spacing-lg);
}

.preview-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}

.preview-text {
  color: var(--color-gray-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* AI Chatbot Real Images */
.ai-section {
  padding: var(--spacing-3xl) 0;
}

.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  margin-top: var(--spacing-xl);
}

.ai-visual {
  position: relative;
  height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-light-gray);
}

.ai-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ai-features {
  display: grid;
  gap: var(--spacing-lg);
}

.feature-block {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-light-gray);
  transition: all 0.3s ease;
}

.feature-block:hover {
  transform: translateX(8px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.feature-symbol {
  width: 48px;
  height: 48px;
  background: var(--color-primary-lighter);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-details h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--color-dark);
}

.feature-details p {
  color: var(--color-gray-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Analytics Charts with Real Data */
.analytics-area {
  padding: var(--spacing-3xl) 0;
  background: var(--bg-light);
  border-radius: var(--radius-2xl);
  margin: var(--spacing-3xl) 0;
}

.analytics-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.chart-container {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
}

.chart-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.chart-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
}

.chart-display {
  width: 100%;
  height: 300px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-display img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.stats-container {
  display: grid;
  gap: var(--spacing-lg);
}

.stat-block {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-xs);
  background: var(--gradient-primary);
}

.stat-description {
  font-size: 0.875rem;
  color: var(--color-gray-dark);
  font-weight: 500;
}

/* CTA Section */
.cta-area {
  padding: var(--spacing-3xl) 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(71, 98, 255, 0.05) 0%, rgba(98, 50, 235, 0.05) 100%);
  border-radius: var(--radius-2xl);
  margin: var(--spacing-3xl) 0;
}

.cta-heading {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
}

.cta-text {
  font-size: 1.125rem;
  color: var(--color-gray-dark);
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-layout,
  .ai-layout {
    grid-template-columns: 1fr;
  }
  .analytics-wrapper {
    grid-template-columns: 1fr;
  }
  .dashboards-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.5rem;
  }
  .area-title {
    font-size: 2rem;
  }
  .main-navigation {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-heading {
    font-size: 2rem;
  }
}
/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
}

/* Stats Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.data-card.animated {
  animation: countUp 0.6s ease-out;
}

/* =========================================
   VARIABLES
========================================= */
/* =========================================
   MIXINS
========================================= */
/* =========================================
   HERO SECTION
========================================= */
.modern-hero {
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}
.modern-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  height: 500px;
  width: 100%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  opacity: 0.05;
  z-index: 0;
}
.modern-hero .modern-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  position: relative;
  z-index: 1;
}
.modern-hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.modern-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #475569;
  font-size: 1.25rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* =========================================
   SECTIONS
========================================= */
.modern-section {
  padding: 100px 0;
  position: relative;
}
.modern-section .section-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* =========================================
   CARD
========================================= */
.modern-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  padding: 36px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
}
.modern-card:hover img {
  transform: scale(1.03);
}
.modern-card img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
  transition: transform 0.5s ease;
}

.modern-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
  line-height: 1.2;
}

.modern-text {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* =========================================
   LIST
========================================= */
.modern-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
  margin-top: 15px;
}
.modern-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: #0f172a;
}
.modern-list li i {
  color: #6366f1;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* =========================================
   CTA
========================================= */
/* =========================================
   FEATURES GRID
========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
.features-grid .feature-item {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: all 0.3s ease;
}
.features-grid .feature-item:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}
.features-grid .feature-item .feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #6366f1;
  font-size: 2rem;
}
.features-grid .feature-item h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
}
.features-grid .feature-item p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes moveBackground {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(30px, 30px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-card {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}

.delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}

.delay-4 {
  animation-delay: 0.4s;
  opacity: 0;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 992px) {
  .modern-hero {
    padding: 100px 0 60px;
    text-align: left;
  }
  .modern-hero h1 {
    font-size: 2.8rem;
  }
  .modern-section {
    padding: 70px 0;
  }
  .modern-card {
    padding: 28px;
  }
  .modern-cta {
    padding: 60px 20px;
  }
  .modern-cta h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .modern-hero h1 {
    font-size: 2.3rem;
  }
  .modern-hero p {
    font-size: 1.1rem;
  }
  .modern-title {
    font-size: 1.8rem;
  }
  .modern-cta h2 {
    font-size: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* ---------------------------------------------------
   INTEGRATIONS SECTION (FULL SCSS)
--------------------------------------------------- */
.integrations-section {
  background-color: var(--color-white);
  /* Label */
  /* Title */
  /* Subtitle */
  /* Button */
  /* Image on right side */
  /* Mobile layout adjustments */
}
.integrations-section .integrations-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
}
.integrations-section .integrations-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-dark-blue);
}
.integrations-section .integrations-subtitle {
  font-size: 0.98rem;
  color: var(--color-gray-dark);
  max-width: 26rem;
}
.integrations-section .integrations-btn {
  border-radius: 999px;
  padding: 0.65rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  color: var(--color-dark-blue);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transition: 0.25s ease;
}
.integrations-section .integrations-btn:hover, .integrations-section .integrations-btn:focus-visible {
  background-color: var(--bg-secondary);
  border-color: var(--color-primary-lighter);
}
.integrations-section .integrations-media-wrapper {
  max-width: 620px;
  margin-inline: auto;
}
.integrations-section .integrations-media-wrapper .integrations-media-img {
  width: 100%;
  display: block;
  height: auto;
}

/* ---------------------------------------------------
   INTEGRATIONS MARQUEE (Right-side animated icon grid)
--------------------------------------------------- */
.integrations-marquee {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  /* Left fade gradient */
  /* Right fade gradient */
  /* Row track */
}
.integrations-marquee::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 5;
}
.integrations-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 5;
}
.integrations-marquee .marquee-track {
  display: flex;
  gap: 22px;
  width: -moz-max-content;
  width: max-content;
  /* Icons */
  /* Left scrolling track */
  /* Right scrolling track */
}
.integrations-marquee .marquee-track .icon-box {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}
.integrations-marquee .marquee-track .icon-box img {
  width: 40px;
  height: auto;
}
.integrations-marquee .marquee-track .icon-box:hover {
  transform: scale(1.05);
}
.integrations-marquee .marquee-track.track-left {
  animation: scrollLeft 22s linear infinite;
}
.integrations-marquee .marquee-track.track-right {
  animation: scrollRight 22s linear infinite;
}

/* Left direction animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Right direction animation */
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/* =========================================
   VARIABLES
========================================= */
/* Colors */
/* Effects */
/* =========================================
   BASE
========================================= */
body {
  font-family: "Inter", sans-serif;
}

/* =========================================
   HERO SECTION
========================================= */
.feature-hero-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
}
.feature-hero-section::before, .feature-hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.feature-hero-section::before {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 70%);
}
.feature-hero-section::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -50px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0) 70%);
}
.feature-hero-section .feature-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}
.feature-hero-section .feature-hero-title span {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.feature-hero-section .feature-hero-subtitle {
  font-size: 1.25rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}
.feature-hero-section .feature-hero-image-container {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* =========================================
   BUTTONS
========================================= */
.feature-btn-primary,
.feature-btn-secondary {
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-btn-primary {
  background-color: #3b82f6;
  color: #ffffff;
  border: none;
}
.feature-btn-primary:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.feature-btn-secondary {
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}
.feature-btn-secondary:hover {
  background-color: #3b82f6;
  color: #ffffff;
  transform: translateY(-2px);
}

/* =========================================
   INTEGRATIONS
========================================= */
.feature-integrations-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
}
.feature-integrations-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.feature-integration-card {
  position: relative;
  height: 100%;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}
.feature-integration-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-integration-card:hover {
  transform: translateY(-10px);
  border-color: #c7d2fe;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.feature-integration-card:hover::before {
  transform: scaleX(1);
}
.feature-integration-card .feature-integration-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #3b82f6;
  font-size: 24px;
  margin-bottom: 24px;
}
.feature-integration-card .feature-integration-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}
.feature-integration-card .feature-integration-text {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}
.feature-integration-card .feature-integration-link {
  font-weight: 600;
  color: #3b82f6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.feature-integration-card .feature-integration-link:hover {
  gap: 12px;
  color: #2563eb;
}

/* =========================================
   WORKFLOW / AUTOMATION
========================================= */
.feature-automation-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  overflow: hidden;
}
.feature-automation-section .feature-automation-badge {
  display: inline-flex;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  margin-bottom: 30px;
}
.feature-automation-section .feature-automation-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  max-width: 800px;
}
.feature-automation-section .feature-automation-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin-bottom: 60px;
  padding-bottom: 20px;
}

.feature-workflow-card {
  height: 100%;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.feature-workflow-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.feature-workflow-card:hover .feature-workflow-icon {
  transform: scale(1.1) rotate(5deg);
}
.feature-workflow-card .feature-workflow-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}
.feature-workflow-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}
.feature-workflow-card p {
  font-size: 0.95rem;
  color: #64748b;
}

/* =========================================
   CTA
========================================= */
.feature-cta-section {
  position: relative;
  margin-top: 80px;
  padding: 80px 40px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}
.feature-cta-section .feature-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
}
.feature-cta-section .feature-cta-subtitle {
  font-size: 1.25rem;
  color: #dbeafe;
  max-width: 600px;
  margin: 0 auto 40px;
}
.feature-cta-section .feature-cta-button {
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  background: #ffffff;
  color: #1e40af;
  border: none;
  transition: all 0.3s ease;
}
.feature-cta-section .feature-cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-blue {
  background: linear-gradient(135deg, #dbeafe, #93c5fd);
  color: #1d4ed8;
}

.feature-icon-green {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
}

.feature-icon-orange {
  background: linear-gradient(135deg, #fed7aa, #fdba74);
  color: #9a3412;
}

.feature-icon-purple {
  background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
  color: #6b21a8;
}

.feature-icon-pink {
  background: linear-gradient(135deg, #fce7f3, #f9a8d4);
  color: #9d174d;
}

.feature-icon-teal {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
  color: #0d9488;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 992px) {
  .feature-hero-title {
    font-size: 2.8rem;
  }
  .feature-automation-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .feature-hero-title {
    font-size: 2.2rem;
  }
  .feature-cta-section {
    padding: 60px 20px;
  }
}
/* Smart Routing */
.routing-media-wrapper {
  max-width: 560px;
  margin-inline: auto;
}
.routing-media-wrapper .routing-media-img {
  display: block;
  width: 100%;
  height: auto;
}

.routing-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
}

.routing-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-dark-blue);
}

.routing-subtitle {
  font-size: 0.98rem;
  color: var(--color-gray-dark);
  max-width: 32rem;
}

.routing-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
  color: var(--color-primary);
  font-weight: 500;
}
.routing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.85rem;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-primary);
  margin-top: 4px;
}

/* Analytics Section */
.workflow-media-wrapper {
  max-width: 560px;
  margin-inline: auto;
}
.workflow-media-wrapper .workflow-media-img {
  display: block;
  width: 100%;
  height: auto;
}

.workflow-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
}

.workflow-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-dark-blue);
}

.workflow-subtitle {
  font-size: 0.98rem;
  color: var(--color-gray-dark);
  max-width: 32rem;
}

.workflow-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
  color: var(--color-primary);
  font-weight: 500;
}
.workflow-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.85rem;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-primary);
  margin-top: 4px;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--color-white);
}
.testimonials-section .testi-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
}
.testimonials-section .testi-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-dark-blue);
}
.testimonials-section .testi-title span {
  color: var(--color-primary);
}
.testimonials-section .testi-btn-primary {
  border-radius: 999px;
  padding-inline: 1.4rem;
  padding-block: 0.65rem;
  font-size: 0.95rem;
  box-shadow: 0 14px 30px rgba(71, 98, 255, 0.35);
}
.testimonials-section .testi-btn-outline {
  border-radius: 999px;
  padding-inline: 1.4rem;
  padding-block: 0.65rem;
  font-size: 0.95rem;
  border-color: var(--color-light-gray);
  color: var(--color-dark-blue);
  background-color: var(--color-white);
}
.testimonials-section .testi-carousel-wrapper {
  position: relative;
}
.testimonials-section .testi-carousel-wrapper .testi-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
}
.testimonials-section .testi-carousel-wrapper .testi-carousel::-webkit-scrollbar {
  display: none;
}
.testimonials-section .testi-carousel-wrapper .testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  background-color: var(--bg-light);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--color-light-gray);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.testimonials-section .testi-carousel-wrapper .testimonial-card .testi-logo img {
  max-height: 20px;
  width: auto;
}
.testimonials-section .testi-carousel-wrapper .testimonial-card .testi-quote {
  font-size: 0.95rem;
  color: var(--color-dark-blue);
  line-height: 1.6;
}
.testimonials-section .testi-carousel-wrapper .testimonial-card .testi-quote a {
  color: var(--color-primary);
  text-decoration: none;
}
.testimonials-section .testi-carousel-wrapper .testimonial-card .testi-quote a:hover {
  text-decoration: underline;
}
.testimonials-section .testi-carousel-wrapper .testimonial-card .testi-author {
  margin-top: auto;
}
.testimonials-section .testi-carousel-wrapper .testimonial-card .testi-author .testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials-section .testi-carousel-wrapper .testimonial-card .testi-author .testi-author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark-blue);
}
.testimonials-section .testi-carousel-wrapper .testimonial-card .testi-author .testi-author-role {
  font-size: 0.85rem;
  color: var(--color-gray-dark);
}
.testimonials-section .testi-carousel-wrapper .testi-controls {
  position: absolute;
  left: 0;
  bottom: -2.5rem;
}
.testimonials-section .testi-carousel-wrapper .testi-controls .testi-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--color-light-gray);
  background-color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}
.testimonials-section .testi-carousel-wrapper .testi-controls .testi-nav-btn:hover {
  background-color: var(--color-primary-light);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  color: white;
}

/* Desktop → 3 cards */
.testi-carousel-wrapper .testimonial-card {
  flex: 0 0 auto;
  min-width: calc(33.333% - 1rem);
}

/* Final CTA Section */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(to bottom, #e7e9ff 0%, #ffffff 65%);
  overflow: hidden;
}
.cta-section .cta-badges {
  font-size: 0.95rem;
  color: var(--color-gray-dark);
}
.cta-section .cta-badges .cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.cta-section .cta-badges .cta-badge .cta-badge-icon {
  font-size: 1.1rem;
}
.cta-section .cta-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-dark-blue);
}
.cta-section .cta-actions .cta-btn-primary {
  border-radius: 999px;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 18px 40px rgba(71, 98, 255, 0.4);
}
.cta-section .cta-actions .cta-btn-primary:hover, .cta-section .cta-actions .cta-btn-primary:focus-visible {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary-light);
}
.cta-section .cta-actions .cta-btn-outline {
  border-radius: 999px;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid var(--color-light-gray);
  background-color: var(--color-white);
  color: var(--color-dark-blue);
}
.cta-section .cta-actions .cta-btn-outline:hover, .cta-section .cta-actions .cta-btn-outline:focus-visible {
  background-color: var(--bg-secondary);
  border-color: var(--color-primary-lighter);
}
.cta-section .cta-subtext {
  font-size: 0.9rem;
  color: var(--color-gray-dark);
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://framerusercontent.com/images/bgn9YNaLItSW614zEqnegl1mNII.png?width=288&height=288");
  background-repeat: repeat;
  background-size: 280px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}
.cta-section .container {
  position: relative;
  z-index: 2;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 120%;
  background: linear-gradient(120deg, rgba(90, 103, 216, 0.05) 0%, rgba(90, 103, 216, 0) 70%);
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: 0;
}

.faq-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 40%;
  height: 80%;
  background: linear-gradient(120deg, rgba(90, 103, 216, 0.03) 0%, rgba(90, 103, 216, 0) 70%);
  border-radius: 70% 30% 30% 70%/70% 70% 30% 30%;
  z-index: 0;
}

.faq-container {
  position: relative;
  z-index: 1;
}

.faq-description {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 0.5rem;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:not(.open):hover {
  background: rgba(248, 250, 252, 0.8);
}

.faq-item.open {
  background: rgba(90, 103, 216, 0.04);
  border: 1px solid rgba(90, 103, 216, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item.open .faq-question {
  color: var(--color-primary-dark);
}

.faq-question:hover {
  color: var(--color-primary-dark);
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e6e5e5;
  color: var(--color-dark-blue);
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  background: var(--color-primary-dark);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--color-gray-dark);
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.faq-item.open .faq-answer-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.faq-cta {
  text-align: center;
  margin-top: 4rem;
}

.faq-cta-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, #4c51bf 100%);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(90, 103, 216, 0.3);
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 103, 216, 0.4);
  color: white;
}

.cta-button i {
  margin-right: 0.5rem;
}

/* Realtime section */
.realtime-media-wrapper {
  max-width: 560px;
  margin-inline: auto;
}
.realtime-media-wrapper .realtime-media-img {
  display: block;
  width: 100%;
  height: auto;
}

.realtime-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
}

.realtime-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-dark-blue);
}

.realtime-subtitle {
  font-size: 0.98rem;
  color: var(--color-gray-dark);
  max-width: 32rem;
}

.realtime-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
  color: var(--color-primary);
  font-weight: 500;
}
.realtime-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.85rem;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-primary);
  margin-top: 4px;
}

/* ===============================
   Visitor Hero Section
================================ */
.visitor-hero {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
  /* Overlay */
  /* Content */
  /* Stats */
  /* CTA Buttons */
  /* Particles */
}
.visitor-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3), transparent 50%), radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.3), transparent 50%);
}
.visitor-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.visitor-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.visitor-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}
.visitor-hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.visitor-hero-stat-item {
  text-align: center;
}
.visitor-hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}
.visitor-hero-stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.visitor-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.visitor-hero-btn {
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.visitor-hero-btn-primary {
  background: #fff;
  color: #667eea;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.visitor-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #667eea;
}
.visitor-hero-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.visitor-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #fff;
}
.visitor-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.visitor-hero-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: visitor-float 15s infinite ease-in-out;
}
.visitor-hero-particle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.visitor-hero-particle:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}
.visitor-hero-particle:nth-child(3) {
  width: 100px;
  height: 100px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}
.visitor-hero-particle:nth-child(4) {
  width: 50px;
  height: 50px;
  top: 40%;
  left: 90%;
  animation-delay: 6s;
}

/* Animations */
@keyframes visitor-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.6;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .visitor-hero-stats {
    gap: 2rem;
    justify-content: flex-start;
  }
  .visitor-hero-stat-number {
    font-size: 2rem;
  }
  .visitor-hero-cta {
    flex-direction: column;
  }
  .visitor-hero-btn {
    width: 100%;
    max-width: 300px;
  }
}
/* Dashboard Layout */
.dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

/* Glass Card */
.glass_card {
  background: var(--glass_bg);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  border: 1px solid var(--color-light-gray);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

.glass_card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.card_header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--color-light-gray);
}

.card_icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.card_title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  padding-bottom: 0px;
  margin-bottom: 0px;
}

/* Visitor Profile Section */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.profile-item {
  background: var(--color-lighter);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  border: 1px solid var(--color-light-gray);
}

.profile-label {
  font-size: 0.875rem;
  color: var(--color-gray-dark);
  margin-bottom: var(--spacing-xs);
}

.profile-value {
  font-size: 1rem;
  color: var(--color-dark-blue);
  font-weight: 500;
}

/* Behavior Tracking */
.behavior-chart {
  height: 200px;
  background: var(--gradient-1);
  border-radius: var(--radius-md);
  margin: var(--spacing-md) 0;
  position: relative;
  overflow: hidden;
}

.chart-bar {
  position: absolute;
  bottom: 0;
  background: var(--color-primary);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: height var(--transition-smooth);
}

.chart-label {
  position: absolute;
  bottom: -30px;
  font-size: 0.875rem;
  color: var(--color-gray-dark);
  text-align: center;
  width: 100%;
}

/* Chat History */
.chat-container {
  max-height: 400px;
  overflow-y: auto;
  padding: var(--spacing-sm);
  background: var(--color-lighter);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-light-gray);
}

.chat-message {
  margin-bottom: var(--spacing-sm);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
}

.chat-message.user {
  background: var(--gradient-1);
  border-color: var(--color-primary-lighter);
}

.chat-message.ai {
  background: var(--color-white);
}

.message-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-xs);
  font-size: 0.875rem;
  color: var(--color-gray-dark);
}

.message-content {
  color: var(--color-dark-blue);
}

/* Insights Cards */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.insight-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  border: 1px solid var(--color-light-gray);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.insight-card.support {
  border-left: 4px solid var(--color-primary);
}

.insight-card.sales {
  border-left: 4px solid var(--color-accent);
}

.insight-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-bottom: var(--spacing-xs);
}

.insight-description {
  font-size: 0.875rem;
  color: var(--color-gray-dark);
  margin-bottom: var(--spacing-sm);
}

.insight-action {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--gradient-1);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-smooth);
  margin-top: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.insight-action:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Metrics Overview */
.metrics-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.metric-card {
  background: var(--glass_bg);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  text-align: center;
  border: 1px solid var(--color-light-gray);
  box-shadow: var(--shadow-sm);
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.metric-label {
  font-size: 0.875rem;
  color: var(--color-gray-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .dashboard {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
  .metrics-overview {
    grid-template-columns: repeat(2, 1fr);
  }
  .insights-grid {
    grid-template-columns: 1fr;
  }
}
/* Custom Scrollbar */
.chat-container::-webkit-scrollbar {
  width: 6px;
}

.chat-container::-webkit-scrollbar-track {
  background: var(--color-lighter);
}

.chat-container::-webkit-scrollbar-thumb {
  background: var(--color-gray-light);
  border-radius: var(--radius-full);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.glass_card {
  animation: fadeIn 0.6s ease-out forwards;
}

/* ---------------------------------------------------
   PRICING SECTION
--------------------------------------------------- */
.pricing-section {
  position: relative;
  background: #f8fafc;
  overflow: hidden;
}

.pricing-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(90, 103, 216, 0.18), transparent 70%);
  filter: blur(40px);
  border-radius: 50%;
}

.pricing-section::before {
  top: -120px;
  left: -60px;
}

.pricing-section::after {
  bottom: -120px;
  right: -60px;
}

/* Title */
.pricing-title {
  font-size: 2.3rem;
  color: var(--color-dark);
}

/* Toggle */
.billing-toggle {
  background: var(--color-white);
}
.billing-toggle .toggle-btn {
  border-radius: 20px;
  padding: 5px 18px;
  font-weight: 500;
  color: var(--color-dark);
  transition: 0.25s ease;
}
.billing-toggle .toggle-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}
.billing-toggle .toggle-btn .save-tag {
  background: white;
  color: var(--color-primary);
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 10px;
  border: 1px solid var(--color-primary-light);
}

/* Pricing Cards */
.price-card {
  background: var(--color-white);
  border: 1px solid var(--card-border);
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  /* Lists */
  /* Notes */
}
.price-card.popular {
  border: 2px solid var(--accent-2);
  background: linear-gradient(180deg, #f0edff 0%, #faf8ff 100%);
}
.price-card .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: white;
  padding: 4px 18px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.price-card .plan-title {
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}
.price-card .plan-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-dark);
  transition: 0.3s ease-in-out;
}
.price-card .plan-price span {
  font-size: 1rem;
  color: var(--color-gray);
}
.price-card .enterprise-price {
  font-size: 2rem;
}
.price-card .plan-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}
.price-card .plan-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
  color: var(--color-dark);
}
.price-card .plan-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  color: var(--accent-2);
}
.price-card .trial-note {
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
  color: var(--color-gray);
}

.base-button {
  display: block;
  background: linear-gradient(180deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: white;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
}

.base-button:hover {
  background: linear-gradient(180deg, var(--color-primary) 100%, var(--color-primary-dark) 0%);
  text-decoration: none !important;
}

.base-button-outline {
  display: block;
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.base-button-outline:hover {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border: 1px solid var(--color-primary);
}

.contact-section {
  position: relative;
  background: #f8fafc;
  overflow: hidden;
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(90, 103, 216, 0.18), transparent 70%);
  filter: blur(40px);
  border-radius: 50%;
}

.contact-section::before {
  top: -120px;
  left: -60px;
}

.contact-section::after {
  bottom: -120px;
  right: -60px;
}

/* ICON CIRCLES */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(90, 103, 216, 0.25);
}

/* SOCIAL LINKS */
.social-link {
  width: 40px;
  height: 40px;
  background: var(--color-lightest-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: 0.3s;
}
.social-link:hover {
  background: var(--color-primary-lighter);
  transform: translateY(-1px);
  cursor: pointer;
}

.social-link:nth-child(1) i {
  color: #000000;
}

.social-link:nth-child(2) i {
  color: #0a66c2;
}

.social-link:nth-child(3) i {
  display: inline-block; /* required */
  line-height: 1;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* important for webkit */
  color: transparent;
}

.social-link:nth-child(4) i {
  color: #e25447;
}

/* FLOATING LABEL INPUTS */
.input-wrap {
  position: relative;
}
.input-wrap input,
.input-wrap textarea {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  background: #fff;
  font-weight: 500;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input-wrap input:focus,
.input-wrap textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.5px rgba(90, 103, 216, 0.5);
}
.input-wrap input:not(:-moz-placeholder) + label, .input-wrap textarea:not(:-moz-placeholder) + label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 500;
  background: #fff;
  padding: 0 6px;
}
.input-wrap input:not(:placeholder-shown) + label, .input-wrap input:focus + label,
.input-wrap textarea:not(:placeholder-shown) + label,
.input-wrap textarea:focus + label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 500;
  background: #fff;
  padding: 0 6px;
}
.input-wrap label {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  pointer-events: none;
  transition: 0.3s;
  background: transparent;
}

/* =========================================
   UTILITIES / RESPONSIVE
========================================= */
@media (max-width: 991px) {
  .navbar-right {
    justify-content: center;
  }
  .navbar-nav {
    flex-direction: column;
    padding-top: 1rem;
  }
  .navbar-nav .nav-link {
    padding: 0.6rem 0;
  }
  .modern-toggler {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
    border: 1px solid rgba(71, 98, 255, 0.15);
    position: relative;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(71, 98, 255, 0.08);
  }
  .modern-toggler:hover {
    box-shadow: 0 6px 20px rgba(71, 98, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(71, 98, 255, 0.3);
  }
  .modern-toggler span {
    position: absolute;
    left: 14px;
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, #4762ff 0%, #6b8cff 100%);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .modern-toggler span:nth-child(1) {
    top: 17px;
  }
  .modern-toggler span:nth-child(2) {
    top: 24.5px;
  }
  .modern-toggler span:nth-child(3) {
    top: 32px;
  }
  .modern-toggler.open {
    background: linear-gradient(135deg, #4762ff 0%, #6b8cff 100%);
    border-color: transparent;
  }
  .modern-toggler.open span {
    background: white;
    left: 14px;
    height: 3px;
  }
  .modern-toggler.open span:nth-child(1) {
    top: 24.5px;
    transform: rotate(45deg);
  }
  .modern-toggler.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  .modern-toggler.open span:nth-child(3) {
    top: 24.5px;
    transform: rotate(-45deg);
  }
  .navbar-collapse {
    box-shadow: var(--shadow-xl);
    padding: 15px 30px;
    border-radius: 11px;
    margin-top: 10px;
  }
  .analytics-section {
    text-align: center;
  }
  .analytics-subtitle {
    margin-inline: auto;
  }
  .analytics-list {
    display: inline-block;
    text-align: left;
  }
  .workflow-section {
    text-align: center;
  }
  .workflow-subtitle {
    margin: 0 auto;
  }
  .workflow-list {
    display: inline-block;
    text-align: left;
  }
  .testi-btn {
    justify-content: center;
  }
  .testi-left {
    text-align: center;
  }
  .custom-section {
    text-align: center;
  }
  .custom-subtitle {
    margin-inline: auto;
  }
  .custom-video-card {
    justify-content: center;
  }
  .hero-chat-frame {
    margin-top: 30px;
    padding: 10px;
  }
  .integrations-section {
    text-align: center;
  }
  .integrations-subtitle {
    margin-inline: auto;
  }
  .integrations-media-wrapper {
    margin-top: 1.5rem;
  }
  .knowledge-section {
    text-align: center;
  }
  .knowledge-subtitle {
    margin-inline: auto;
  }
  .knowledge-list {
    display: inline-block;
    text-align: left;
  }
  .realtime-section {
    text-align: center;
  }
  .realtime-subtitle {
    margin-inline: auto;
  }
  .realtime-list {
    display: inline-block;
    text-align: left;
  }
  .routing-section {
    text-align: center;
  }
  .routing-subtitle {
    margin-inline: auto;
  }
  .routing-list {
    display: inline-block;
    text-align: left;
  }
  .testimonial-card {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .testi-controls {
    position: static;
    margin-top: 1rem;
  }
  .testimonials-section {
    text-align: left;
  }
  .workflow-right {
    text-align: center;
  }
  .testi-carousel-wrapper .testimonial-card {
    min-width: calc(50% - 0.75rem);
  }
  .side-badge {
    display: none !important;
  }
  .feature-hero-section .feature-hero-title {
    font-size: 2.5rem;
  }
  .feature-automation-section .feature-automation-title {
    font-size: 2rem;
  }
  .hero-section {
    padding: 60px 0;
  }
  .knowledge-hero-section {
    padding: 60px 0;
  }
  .ai-visual {
    height: auto;
  }
  .upload-zone-light {
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .new-cta-section {
    padding: 0.75rem !important;
    border-radius: 1rem !important;
  }
  .hero-cta {
    flex-direction: column;
  }
  .module-body {
    padding: 0.75rem;
  }
  .faq-section {
    padding: 4rem 0;
  }
  .faq-title {
    font-size: 2.2rem;
  }
  .faq-question {
    padding: 1.25rem 1.25rem;
    font-size: 1rem;
  }
  .faq-answer-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}
@media (max-width: 767px) {
  .knowledge-hero-section {
    padding: 90px 0;
  }
  .compliance-title {
    font-size: 28px;
  }
  .compliance-badge img {
    max-height: 110px;
  }
}
@media (max-width: 576px) {
  .footer-bottom-image-wrapper {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .faq-title {
    font-size: 1.9rem;
  }
  .faq-box {
    padding: 0.5rem;
  }
  .testi-carousel-wrapper .testimonial-card {
    min-width: 100%;
  }
}
@media (max-width: 575px) {
  .cta-section {
    padding: 3.5rem 0 4rem;
  }
  .testimonial-card {
    flex: 0 0 90%;
    max-width: 90%;
  }
  .form-footer {
    flex-direction: column;
    gap: 15px;
  }
}/*# sourceMappingURL=main.css.map */