@font-face {
  font-family: 'Mona Sans';
  src: url('Mona-Sans.woff2') format('woff2'),
       url('Mona-Sans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: 'Mona Sans', sans-serif;
  box-sizing: border-box; /* Ensure consistent box model */
}

body {
  margin: 0;
  background-color: #f3f3f3;
  color: #333;
  font-family: 'Mona Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  box-sizing: border-box; /* Ensure consistent box model */
}

* {
  box-sizing: border-box;
}

.navbar_component.scrolled {
  background-color: rgba(255, 255, 255, 0.2); /* Further reduced opacity for more visible glass effect */
  backdrop-filter: blur(40px); /* Significantly increased blur for more frosted effect */
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2); /* Adjusted shadow for glassmorphism */
  border: 1px solid rgba(255, 255, 255, 0.3); /* More visible white border */
  margin-top: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 70rem;
  border-radius: 3.5rem;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px;
  font-weight: bold;
}

h1 {
  margin-top: 20px;
  font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive scaling from 40px to 64px */
  line-height: 1.125; /* Consistent line height ratio */
  letter-spacing: -0.045em; /* Relative letter spacing */
}

h2 {
  margin-top: 20px;
  font-size: clamp(1.75rem, 3vw, 2rem); /* Responsive scaling from 28px to 32px */
  line-height: 1.125;
  letter-spacing: -0.075em;
}

h3 {
  margin-top: 20px;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem); /* Responsive scaling from 20px to 24px */
  line-height: 1.25;
  letter-spacing: -0.08em;
}

h4 {
  margin-top: 10px;
  font-size: clamp(1rem, 2vw, 1.125rem); /* Responsive scaling from 16px to 18px */
  line-height: 1.33;
  letter-spacing: -0.08em;
}

h5 {
  margin-top: 10px;
  font-size: clamp(0.875rem, 1.5vw, 0.875rem); /* Responsive scaling from 14px */
  line-height: 1.43;
  letter-spacing: -0.091em;
}

h6 {
  margin-top: 10px;
  font-size: clamp(0.75rem, 1.2vw, 0.75rem); /* Responsive scaling from 12px */
  line-height: 1.5;
  letter-spacing: -0.052em;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: clamp(1rem, 1.8vw, 1.125rem); /* Responsive scaling from 16px to 18px */
  line-height: 1.6;
}

a {
  background-color: transparent;
  color: var(--link-color--link-primary);
  text-decoration: underline;
}

a:active, a:hover {
  outline: 0;
}

img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

.w-nav {
  z-index: 1000;
  background: #ddd;
  position: relative;
}

.w-nav:before, .w-nav:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}

.w-nav-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-nav-link.w--current {
  color: #0082f3;
}

.w-nav-menu {
  float: right;
  position: relative;
}

.w-nav-button {
  float: right;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
}

.navbar_component {
  box-sizing: border-box;
  z-index: 2000;
  background-color: transparent; /* Make transparent when not scrolled */
  justify-content: space-between;
  align-items: stretch;
  margin-top: 0rem; /* Start at top */
  display: flex;
  position: fixed;
  top: 0; /* Stick to top */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Center horizontally */
  width: 100%; /* Full width initially */
  max-width: 70rem; /* Consistent max-width */
  transition: background-color 0.3s ease, box-shadow 0.3s ease, max-width 0.3s ease, border-radius 0.3s ease, transform 0.3s ease, backdrop-filter 0.3s ease; /* Added backdrop-filter to transition */
}

.navbar_component.scrolled {
  background-color: rgba(255, 255, 255, 0.95); /* Increased opacity for more visible glass effect */
  backdrop-filter: blur(25px); /* Increased blur for more frosted effect */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* More prominent shadow */
  margin-top: 0;
  top: 0;
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Center horizontally */
  width: 100%; /* Consistent width */
  max-width: 70rem; /* Consistent max-width */
  border-radius: 3.5rem;
}

.navbar_component.is-new {
  /* max-width: 70rem; Removed as it's redundant with .navbar_component */
}

.navbar_component:not(.scrolled) {
  width: 100%; /* Consistent width */
}

.navbar_container {
  border: 1px none var(--base-color-brand--white);
  background-color: transparent !important; /* Force transparent background */
  border-radius: 3.5rem;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%; /* Ensure it takes full width of its parent */
  max-width: 100%; /* Ensure it respects parent's max-width */
  height: auto;
  max-height: 4.5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1.5rem; /* Consistent padding */
  display: flex;
}

.navbar_component.scrolled .navbar_container {
  background-color: transparent !important; /* Force transparent background when scrolled */
  width: 100%; /* Ensure it fills the parent */
  padding: 1.5rem 1.5rem; /* Consistent padding */
}

.navbar-content {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.logo-wrapper {
  width: 100px; /* Fixed width for consistent sizing */
  height: 50px; /* Fixed height for consistent sizing */
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  overflow: hidden; /* Hide overflow if logo is larger */
}

.navbar_logo-link {
    text-decoration: none;
}

.logo-icon {
  display: flex;
}

.img-navbar {
  /* Removed fixed width, will be controlled by logo-full/emblem */
  margin-left: .375rem;
}

.logo-img {
    width: var(--header-logo-width); /* This variable is defined in :root */
    height: auto;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.logo-full {
  width: 100%; /* Fill parent container */
  height: 100%; /* Fill parent container */
  object-fit: contain; /* Scale content to fit, maintaining aspect ratio */
  display: inline-block;
}

.logo-emblem {
  width: 100%; /* Fill parent container */
  height: 100%; /* Fill parent container */
  object-fit: contain; /* Scale content to fit, maintaining aspect ratio */
  display: none;
}

.navbar-links {
  display: flex;
}

.nav-links-wraper {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  display: flex;
}

.navbar-link {
  color: var(--link-color--link-primary);
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  padding: 0 1.375rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all .15s;
  display: flex;
  position: relative; /* Added for ::after positioning */
}

.navbar-link:hover {
  color: var(--base-color-neutral--black); /* Keep text black on hover */
}

.navbar-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px; /* Adjust as needed for spacing */
  left: 1.375rem; /* Start after left padding */
  background: var(--primary-gradient); /* Using the defined gradient variable */
  transition: width 0.3s ease;
}

.navbar-link:hover::after {
  width: calc(100% - (2 * 1.375rem)); /* Span only the text area */
}

.navbar_button-wrapper {
  grid-column-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar-link.get-started-button {
  color: var(--link-color--link-alternate);
  background-color: #000;
  border-radius: .75rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.navbar-link.get-started-button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8, #3b82f6, #1d4ed8);
  background-size: 400% 400%;
  border-radius: 14px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  animation: glowMove 3s ease-in-out infinite;
}

.navbar-link.get-started-button:hover::before {
  opacity: 0.8;
}

.navbar-link.get-started-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.navbar_menu-button {
  padding: 0;
}

.menu-icon {
  pointer-events: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-right: -.5rem;
  padding-bottom: 0;
  padding-right: 0;
  display: flex;
}

.menu-icon_line-top, .menu-icon_line-middle, .menu-icon_line-bottom {
  background-color: var(--base-color-neutral--black);
  width: 24px;
  height: 2px;
}

.menu-icon_line-middle {
  margin-top: 6px;
  margin-bottom: 6px;
}

.section_header {
  z-index: 2;
  background-color: var(--gray);
  width: 100%;
  margin-bottom: 0;
  padding-top: 10rem; /* Adjusted to push content down */
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.padding-global {
  max-width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.flex-align-center {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.max-width-750 {
  max-width: 46.875rem;
  position: relative;
  z-index: 3; /* Ensure this container is above the image container */
}

.heading-style-h1.align-center {
  text-align: center;
}

.spacer-24 {
  width: 100%;
  height: var(--space-3);
}

.max-width-736 {
  max-width: 46rem;
}

.text-align-center {
  text-align: center;
}

.text-size-large {
  font-size: 1.25rem;
  line-height: 1.5;
}

.text-colour-black070 {
  color: var(--black070); /* Changed to black070 as requested */
  margin-bottom: 0;
}

.spacer-32 {
  height: var(--space-4);
}

.button-group {
  gap: var(--space-2);
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-group.is-center {
  justify-content: center;
}

.early-access-form {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
  gap: var(--space-2); /* 8px grid spacing */
}

.early-access-form .button.is-icon.is-purple {
  background-color: var(--base-color-neutral--black); /* Make button black */
  color: var(--base-color-neutral--white); /* White text for black button */
}

.early-access-input {
  width: 100%; /* Full width within its container */
  max-width: 300px; /* Max width for better appearance */
  padding: 12px 15px; /* More padding */
  border-radius: 8px; /* Slightly more rounded corners */
  border: 1px solid #d1d5db; /* Lighter border color */
  background-color: #fff; /* White background */
  color: #374151; /* Darker text color */
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* Subtle shadow */
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.early-access-input:focus {
  outline: none;
  border-color: #6366f1; /* Highlight on focus */
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2); /* Focus ring */
}

.button {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--black);
  color: var(--base-color-neutral--white);
  text-align: center;
  border-radius: 1rem;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.button.is-icon {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  border-style: none;
  border-color: transparent;
  justify-content: center;
  align-items: center;
  min-width: auto;
  padding-top: .75rem;
  transition: all .3s ease;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button.is-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8, #3b82f6, #1d4ed8);
  background-size: 400% 400%;
  border-radius: 1.2rem;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  animation: glowMove 3s ease-in-out infinite;
}

.button.is-icon:hover::before {
  opacity: 0.8;
}

.button.is-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.button.is-secondary {
  background-color: var(--base-color-neutral--white);
  color: var(--blue500); /* Changed to deeper blue */
  border-style: none;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.button.is-secondary::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8, #3b82f6, #1d4ed8);
  background-size: 400% 400%;
  border-radius: 1.2rem;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  animation: glowMove 3s ease-in-out infinite;
}

.button.is-secondary:hover::before {
  opacity: 0.6;
}

.button.is-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.live-demo-notice {
    background: rgba(15, 15, 15, 0.4); 
    backdrop-filter: blur(20px); 
    border: 1px solid rgba(59, 130, 246, 0.3); 
    border-radius: 16px; 
    padding: 16px 28px; 
    display: inline-flex; 
    align-items: center; 
    gap: 12px;
}

.demo-pulse {
    width: 12px; 
    height: 12px; 
    background: #10b981; 
    border-radius: 50%; 
    animation: pulse 2s infinite;
}

.max-width-1126 {
  max-width: 70.375rem;
  margin-left: auto;
  margin-right: auto;
}

.margin-top--160 {
  margin-top: 0rem; /* Removed negative margin */
}

.display-vertical {
  flex-flow: column;
}

.is-hero {
  /* Removed margin-top: 5rem; as it's no longer needed */
  padding-top: 4rem;
  position: relative;
}

.img-hero-bg {
  z-index: 1;
  border: 1px solid #fff;
  border-radius: 1.25rem;
  width: 100%;
  position: relative;
}

/* Hide platform image on mobile devices */
@media screen and (max-width: 767px) {
  .img-hero-bg {
    display: none !important;
  }

  .hero-gradient,
  .img-hero-logo {
    display: none !important;
  }
}

.img-hero-logo {
  position: absolute;
  width: 40%; /* Reduced width to reduce interference */
  left: 50%;
  transform: translateX(-50%);
  top: -20%; /* Adjusted to bring the logo down further */
  z-index: 0; /* Behind platform.png which has z-index: 1 */
  animation: spin 20s linear infinite; /* Add slow, smooth spin animation */
}

.hero-gradient {
  max-width: 100vw;
  position: absolute;
  top: 10%; /* Moved up */
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.20; /* Reduced vibrancy by 15% */
  z-index: 1; /* Placed behind the text */
}

.hero-rotation-wrapper {
  justify-content: center;
  align-items: center;
  max-width: 40rem;
  display: block;
  position: absolute;
  top: -4.25rem;
  transform: rotate(50deg);
}

.img-hero {
    max-width: 100%;
}

.hero-gradient-mask {
  display: none; /* Removed gradient effect as requested */
}

.section-plans {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.slide-in {
  /* Completely isolate animations to prevent scrollbar */
  contain: layout style paint !important;
  overflow: hidden !important;
  max-width: 100% !important;
  position: relative !important;
}

/* Create a stable viewport container */
html {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
}

/* Ensure main wrapper is contained */
.main-wrapper {
  overflow: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
}

/* Isolate feature tour section completely */
.section-feature-tour {
  contain: layout style paint !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
  isolation: isolate !important;
}

.container-large {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.plans_component {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.max-width-1200 {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

.width-100 {
  width: 100%;
}

.align-left-mobile {
  text-align: left;
}

.spacer-56 {
  height: var(--space-8); /* 64px = 8 units */
}

.w-layout-grid {
  gap: var(--space-2);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.plans-list {
  gap: var(--space-3);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
  overflow: visible;
}

.plans-item {
  border: 1px solid;
  border-image-source: linear-gradient(164.95deg, #fff 3.39%, #f0f0f0 89.4%);
  border-radius: var(--space-3);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  min-height: 31.25rem;
  padding: var(--space-4);
  display: flex;
  overflow: hidden;
  box-shadow: -9px 20px 60px -24px #0000000d;
  flex: 1 1 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.plans-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bg-purple-100 {
  background-color: var(--purple100);
  padding: var(--space-3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: -9px 20px 60px -24px #0000000d, 0 52px 36px -48px #cac1f900;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-small {
  margin: var(--space-3);
}

.construct-aiicard-badge {
  gap: var(--space-1);
  color: var(--purple500);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.construct-aiicard-icon-wrapper {
  display: flex;
}

/* CSS Variables */
:root {
  --gray: #f3f3f3;
  --link-color--link-primary: #333;
  --link-color--link-alternate: #fff;
  --black060: #666;
  --black070: #4a4a4a;
  --base-color-brand--white: #fff;
  --base-color-neutral--black: #000;
  --base-color-neutral--white: #fff;
  --purple100: #f3f4f6;
  --purple500: #8b5cf6;
  --blue100: #eff6ff;
  --blue500: #3b82f6; /* Added new blue variable */
  --green100: #f0fdf4;
}

/* Additional Layout Classes */
.body {
  margin: 0;
  background-color: #f3f3f3;
  color: #333;
  font-family: Manrope, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.page-wrapper {
  overflow-x: hidden;
}

.w-nav-brand.w--current {
  color: #0082f3;
}

.navbar-content {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-padding {
  width: 1rem;
}

.navbar-links.visible {
  display: flex;
}

.nav-link-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links-wraper.is-new {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  display: flex;
}

.tablet-buttons-wrapper-nav {
  display: none;
}

.spacer-42 {
  height: 2.625rem;
}

.logo-wrapper.is-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon.is-footer {
  display: flex;
}

.text-size-10 {
  font-size: 0.625rem;
}

.text-weight-medium {
  font-weight: 500;
}

.sm-icons-nav-tablet {
  display: flex;
  gap: 0.5rem;
}

.w-inline-block {
  display: inline-block;
}

.icon-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.nav-sm-link {
  display: inline-block;
  padding: 0.5rem;
}

.menu-icon_line-middle-inner {
  background-color: var(--base-color-neutral--black);
  width: 24px;
  height: 2px;
}

/* Global Styles */
.global-styles {
  /* Inherit color style */
}

.inherit-color * {
  color: inherit;
}

/* Focus state style for keyboard navigation */
*[tabindex]:focus-visible, 
input[type="file"]:focus-visible {
  outline: 0.125rem solid #4d65ff;
  outline-offset: 0.125rem;
}

/* Rich text margins */
.w-richtext > :not(div):first-child, 
.w-richtext > div:first-child > :first-child {
  margin-top: 0 !important;
}

.w-richtext>:last-child, 
.w-richtext ol li:last-child, 
.w-richtext ul li:last-child {
  margin-bottom: 0 !important;
}

/* Pointer events */
.pointer-events-off {
  pointer-events: none;
}

.pointer-events-on {
  pointer-events: auto;
}

/* Square div */
.div-square::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

/* Container alignment */
.container-medium,
.container-small, 
.container-large {
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Text truncation */
.text-style-3lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.text-style-2lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Display utilities */
.display-inlineflex {
  display: inline-flex;
}

/* Hide classes */
.hide {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .hide, .hide-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hide-mobile-landscape {
    display: none !important;
  }
}

@media screen and (max-width: 479px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Spacing utilities */
.margin-0 {
  margin: 0rem !important;
}

.padding-0 {
  padding: 0rem !important;
}

.spacing-clean {
  padding: 0rem !important;
  margin: 0rem !important;
}

.margin-top {
  margin-right: 0rem !important;
  margin-bottom: 0rem !important;
  margin-left: 0rem !important;
}

.padding-top {
  padding-right: 0rem !important;
  padding-bottom: 0rem !important;
  padding-left: 0rem !important;
}

.margin-right {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
  margin-left: 0rem !important;
}

.padding-right {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
  padding-left: 0rem !important;
}

.margin-left {
  margin-top: 0rem !important;
  margin-right: 0rem !important;
  margin-bottom: 0rem !important;
}

.padding-left {
  padding-top: 0rem !important;
  padding-right: 0rem !important;
  padding-bottom: 0rem !important;
}

.margin-horizontal {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.padding-horizontal {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.margin-vertical {
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}

.padding-vertical {
  padding-right: 0rem !important;
  padding-left: 0rem !important;
}

/* Text utilities */
.truncate-width {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Scrollbar utilities */
.no-scrollbar {
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Gradient text */
.has-gradient {
  background: linear-gradient(to top, #9C9C9C 0%, #000000 50%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Main wrapper */
.main-wrapper {
  position: relative;
}

/* Header styles */
.heading-style-h1 {
  font-size: 64px; /* Increased font size for main title */
  line-height: 72px; /* Adjusted line height */
  letter-spacing: -2.88px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

.mobile-16 {
  height: 1rem;
}

.z-index-2 {
  z-index: 2;
}

.button-drop-down {
  position: relative;
}

.mobile-100 {
  width: 100%;
}

.is-icon.w-embed svg {
  width: 25px;
  height: 24px;
}

/* Additional spacing classes */
.spacer-8 {
  height: 0.5rem;
}

.spacer-16 {
  height: 1rem;
}

.spacer-20 {
  height: 1.25rem;
}

.mobile-40 {
  height: 2.5rem;
}

/* Plans section styles */
.bg-blue-100 {
  background-color: var(--blue100);
  padding: 1.5rem;
  transition: all .8s;
  overflow: visible;
  box-shadow: -9px 20px 60px -24px #0000000d, 0 52px 36px -48px #cac1f900;
}

.bg-green-100 {
  background-color: var(--green100);
  padding: 1.5rem;
  transition: all .8s;
  overflow: visible;
  box-shadow: -9px 20px 60px -24px #0000000d, 0 52px 36px -48px #cac1f900;
}

.margin-xsmall {
  margin: 0.5rem;
}

.subtitle-large {
  font-size: 1rem;
  font-weight: 600;
}

.text-color-purple {
  color: var(--blue500); /* Changed to deeper blue */
}

.text-color-blue {
  color: #3b82f6;
}

.text-color-green {
  color: #10b981;
}

.heading-style-h6 {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -.0625rem;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}

.txt-black080 {
  color: #333;
}

.text-align-left {
  text-align: left;
}

.tablet-heading-style-h4 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -1.44px;
}

.hide-on-hover {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.plans-item:hover .hide-on-hover,
.plans-item.active-card .hide-on-hover {
  opacity: 0;
}

.max-width-260 {
  max-width: 16.25rem;
}

.text-size-regular {
  font-size: 1rem;
  line-height: 1.5;
}

.text-black070 {
  color: var(--black070);
}

.mobile-14 {
  font-size: 0.875rem;
}

.construct-aiicard-text-wrapper {
  position: relative;
}

.construct-aiicard-hidden-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  width: 100%;
}

.card-heading-wrapper {
  margin-bottom: 1rem;
}

.is-card-heading {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -1.44px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.plans-item:hover .is-card-heading,
.plans-item.active-card .is-card-heading {
  color: var(--purple500);
}

.text-card-wrapper {
  margin-bottom: 1rem;
}

._12-mobile {
  font-size: 0.75rem;
}

.is-text-animation {
  max-width: 100%;
  word-wrap: break-word;
  transition: all 0.3s ease;
}

.mobile-24 {
  height: 1.5rem;
}

.is-animation-button-wrapper {
  position: relative;
}

.padding-bottom-4 {
  padding-bottom: 0.25rem;
}

.is-animation {
  transition: all 0.3s ease;
}

.is-purple {
  background-color: var(--purple500);
  color: white;
}

.is-blue500 {
  background-color: #3b82f6;
  color: white;
}

.is-green500 {
  background-color: #10b981;
  color: white;
}

.opacity-0 {
  opacity: 0;
}

.w-embed {
  position: relative;
}

.w-script {
  position: relative;
}

/* Feature tour styles */
.section-feature-tour {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Product Tour Gradient Effects - Centered and More Visible */
.section-feature-tour::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 80%;
  background-image: url('gradient.png');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  filter: blur(10px);
}

.feature-tour_component {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  overflow: hidden;
}

.feature-tour_component-mobile {
  display: none;
}

.show-mobile-landscape {
  display: none;
}

.feature-tour__media {
  position: relative;
}

.feature-tour-media__list {
  position: relative;
  width: 100%;
  height: 550px; /* Increased height */
  overflow: hidden;
}

.feature-tour-media__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.feature-tour-media__item--active {
  opacity: 1;
}

.feature-tour-media__item-video {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  object-fit: contain; /* Changed to contain */
}

.w-background-video {
  position: relative;
  overflow: hidden;
}

.w-background-video-atom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.feature-tour__steps {
  display: flex;
  flex-direction: column;
}

.feature-tour__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-tour__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-tour__item--active {
  opacity: 1;
}

.feature-tour__progress-wrapper {
  width: 4px;
  height: 60px;
  background: #e5e7eb;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.feature-tour__progress-bar {
  width: 100%;
  height: 0%;
  background: var(--blue500);
  border-radius: 2px;
  transition: height 0.3s ease;
}

.feature-tour__index {
  min-width: 2rem;
}

.subtitle-16 {
  font-size: 1rem;
  font-weight: 500;
}

.opacity-40 {
  opacity: 0.4;
}

.feature-tour__title {
  margin-bottom: 0.5rem;
}

.feature-tour__title_txt {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -1.44px;
  font-weight: bold;
  margin: 0;
  transition: all 0.3s ease;
}

.feature-tour__title_txt.is-active {
  color: var(--blue500);
}

.feature-tour__desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Mobile feature tour */
@media screen and (max-width: 767px) {
  .show-mobile-landscape {
    display: block;
  }
  
  .feature-tour_component {
    display: none;
  }
  
  .feature-tour__item--mobile {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .feature-tour-media__item--mobile {
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
  }
  
  .feature-tour-media__item-video.is-mobile {
    width: 100%;
    height: 350px; /* Increased height */
    border-radius: 1rem;
    overflow: hidden;
    object-fit: contain; /* Changed to contain */
  }
  
  .feature-tour-media__item-video.is-mobile video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed to contain */
  }
  
  .feature-tour__item__description_wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .feature-tour__index--mobile {
    margin-bottom: 0.5rem;
  }
  
  .feature-tour__index--mobile .subtitle-16 {
    color: #3b82f6;
    font-weight: 600;
  }
  
  .feature-tour__title--mobile {
    margin-bottom: 0.75rem;
  }
  
  .feature-tour__title--mobile h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    color: #1f2937;
    margin: 0;
  }
  
  .feature-tour__desc--mobile {
    opacity: 1;
  }
  
  .feature-tour__desc--mobile .text-size-large {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
  }
}

/* Layout sections */
.section_layout17 {
  padding: var(--space-8) 0;
}

.z-index-1 {
  z-index: 1;
}

.layout17_component {
  position: relative;
}

.gradient-stroke {
  background: linear-gradient(145deg, #f3f4f6, #e5e7eb);
  border-radius: var(--space-3);
  padding: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gradient-stroke:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.layout17_content {
  background: white;
  border-radius: var(--space-3);
  padding: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr; /* Reverted to two columns */
  gap: var(--space-6);
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Integrations Section Gradient Effects - Inside Container */
.layout17_content::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 70%;
  background-image: url('gradient.png');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  filter: blur(6px);
  transform: rotate(25deg);
}

.layout17_content.is-video {
  grid-template-columns: 1fr 1fr;
}

/* Integrations image styling */
.integrations-lines {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.integrations-lines:hover {
  transform: scale(1.02);
}

.layout17_content-left {
  display: flex;
  flex-direction: column;
}

.layout17_left-col {
  display: flex;
  flex-direction: column;
}

.tag-small {
  background: var(--blue500); /* Changed to deeper blue */
  color: white;
  padding: var(--space-1) var(--space-2);
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tag-small:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.tablet-hidden {
  display: inline-block;
}

.text-size-16 {
  font-size: 1rem;
  line-height: 1.5;
}

.opcaity-07 {
  opacity: 0.7;
}

.tablet-48 {
  height: 3rem;
}

.layout17_item-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* Styling for ROI results */
#roi-result h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: #333; /* Ensure text is visible */
  background: none; /* Remove gradient from h3 in results */
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

#roi-result p {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: #555;
}

#roi-result strong {
  color: #3b82f6; /* Deeper blue for positive impact numbers, matching Integrations */
}

/* Custom Tooltip Styling */
[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  white-space: nowrap;
  z-index: 100;
  margin-bottom: 10px; /* Space between input and tooltip */
}

.toast_wrap {
  display: none; /* Hidden as per user request */
}

.how-it-works-gradient {
  max-width: 100%;
  height: auto;
}

.is-center {
  margin: 0 auto;
}

/* CTA Section */
.section_cta45 {
  padding: 4rem 0;
}

.cta45_component {
  position: relative;
}

.padding-inside {
  padding: 2rem;
}

.cta45_card {
  background: linear-gradient(145deg, var(--blue100), #f0f8ff); /* More subtle blue gradient */
  border-radius: 1.5rem;
  padding: 3rem;
  display: flex;
  flex-direction: column; /* Stack items vertically */
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  gap: 2rem;
  text-align: center; /* Center text within the card */
}

.max-width-large {
  max-width: 60rem;
}

.cta-left-col-wrapper {
  flex: none; /* Remove flex-grow to prevent it from taking all available space */
  width: 100%; /* Ensure it takes full width for stacking */
}

.button-group.is-right {
  justify-content: center; /* Center buttons when stacked */
  flex-wrap: wrap; /* Allow buttons to wrap if needed */
}

.icon-embed-xsmall {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3-column section */
.section_3-col {
  padding: var(--space-8) 0;
}

._5-col-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--space-4);
  align-items: center;
}

.col-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.col-wrapper:hover {
  transform: translateY(-2px);
}

.col-wrapper.is-last {
  /* Last column specific styles */
}

.icon-embed-custom {
  width: 12px;
  height: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.max-width-291 {
  max-width: 18.1875rem;
}

.divider {
  width: 1px;
  height: var(--space-8);
  background: linear-gradient(to bottom, transparent, #e5e7eb, transparent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.divider:hover {
  background: linear-gradient(to bottom, transparent, #3b82f6, transparent);
}

.mobile-hidden {
  display: block;
}

/* Footer */
.footer {
  background: #f9fafb;
  padding: 4rem 0 2rem;
}



.footer-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.logo-footer {
  width: 100%; /* Adjusted size for consistency */
  height: auto;
}

.footer-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0;
  max-width: 300px; /* Limit width for readability */
}

.footer-links-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Align links to the right */
  gap: 1.5rem;
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer_link {
  color: #374151; /* Darker color for better contrast */
  text-decoration: none;
  font-size: 1rem; /* Slightly larger font for readability */
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer_link:hover {
  color: #000; /* Darken on hover */
}

.footer-social-links {
  display: flex;
  gap: 1rem;
}

.footer-social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; /* Slightly larger icons */
  height: 28px;
  color: #6b7280; /* Icon color */
  transition: color 0.3s ease;
}

.footer-social-icon-link:hover {
  color: #000; /* Darken on hover */
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem; /* Space from the content above */
}

.footer_legal-link,
.footer_legal-text {
  color: #6b7280;
  font-size: 0.75rem; /* Smaller font for legal text */
  text-decoration: none;
}

.footer_legal-link:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media screen and (max-width: 991px) {
  .tablet-hidden {
    display: none !important;
  }
  
  .tablet-48 {
    height: 3rem;
  }
  
  .tablet-heading-style-h4 {
    font-size: 18px;
    line-height: 24px;
  }
  
  .is-tablet-hidden {
    display: none !important;
  }
  
  .tablet-buttons-wrapper-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .mobile-hidden {
    display: none !important;
  }
  
  .mobile-16 {
    height: 1rem;
  }
  
  .mobile-24 {
    height: 1.5rem;
  }
  
  .mobile-40 {
    height: 2.5rem;
  }
  
  .mobile-100 {
    width: 100%;
  }
  
  .mobile-14 {
    font-size: 0.875rem;
  }
  
  ._12-mobile {
    font-size: 0.75rem;
  }
  
  .layout17_content {
    display: flex; /* Change to flexbox */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    gap: 2rem;
    padding: var(--space-3); /* Reduced padding for mobile */
  }

  .layout17_content.is-video { /* Override grid for is-video on mobile */
    grid-template-columns: unset;
  }

  .integration-text {
    /* grid-row: 1; Removed as no longer a grid */
    text-align: center; /* Center the text */
    width: 100%; /* Ensure it takes full width */
  }

  .integration-text h4 {
    font-size: 1.5rem; /* Increase font size for h4 on mobile */
    line-height: 1.3;
  }

  .integration-text .text-size-16 {
    font-size: 1.1rem; /* Increase font size for text-size-16 on mobile */
    line-height: 1.6;
  }

  .integration-image {
    /* grid-row: 2; Removed as no longer a grid */
    width: 80%; /* Make image larger */
    margin: 0 auto; /* Center the image */
  }
  
  .cta45_card {
    flex-direction: column;
    text-align: center;
  }
  
  ._5-col-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .divider {
    display: none;
  }
  
  .footer_bottom-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}

.margin-top-small {
  margin-top: 6rem;
}

/* Animation keyframes */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes spin {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes glowMove {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes glowMove {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

:root {
    --header-logo-width: 120px;
    --primary-gradient: linear-gradient(135deg, #3b82f6, #1d4ed8);
    --glass-bg: rgba(15, 15, 15, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.05);
    --divider-gradient: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), rgba(29, 78, 216, 0.3), transparent);
    --section-bg: #050505;
    --card-bg: #0c0c0c;
    
    /* 8px Grid System */
    --space-1: 8px;    /* 1 unit */
    --space-2: 16px;   /* 2 units */
    --space-3: 24px;   /* 3 units */
    --space-4: 32px;   /* 4 units */
    --space-5: 40px;   /* 5 units */
    --space-6: 48px;   /* 6 units */
    --space-8: 64px;   /* 8 units */
    --space-10: 80px;  /* 10 units */
    --space-12: 96px;  /* 12 units */
    --space-16: 128px; /* 16 units */
    --space-20: 160px; /* 20 units */
}

/* CTA section styles */
.cta-section {
    text-align: center;
    padding: var(--space-8) 0;
    background: #f3f3f3; /* Changed to light gray */
    position: relative;
    overflow: hidden;
}

/* CTA Section Gradient Effects - Inside Container */
.cta-content::after {
    content: '';
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 50%;
    height: 70%;
    background-image: url('gradient.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    filter: blur(6px);
    transform: rotate(-25deg);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-3);
    color: #000000; /* Changed to black text */
    background: none; /* Remove background gradient */
    -webkit-background-clip: unset; /* Reset webkit background clip */
    -webkit-text-fill-color: unset; /* Reset webkit text fill color */
    text-shadow: none; /* Remove text shadow */
}

.cta-content {
    background: #ffffff; /* White background */
    border-radius: var(--space-3); /* Rounded corners */
    padding: 40px; /* Increased padding inside */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 100%; /* Set max-width for the content block */
    margin: 0 auto; /* Center the container */
    text-align: center; /* Center the text within the content block */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .cta-content {
        padding: var(--space-3); /* Reduced padding for mobile, matching integrations */
        width: 100%; /* Give more width on mobile */
    }
}

.cta-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #333; /* Changed to dark gray */
    margin-bottom: var(--space-4);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    max-width: 800px;
    margin: 0 auto var(--space-3);
}

.cta-form input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #d1d5db; /* Lighter border color */
    background: #fff; /* White background */
    color: #333; /* Darker text color */
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.cta-form input::placeholder {
    color: #71717a;
}

.cta-form input:focus {
    outline: none;
    border-color: #3b82f6;
}

.cta-button {
    width: 100%;
    background: black; /* Changed to black background */
    color: white; /* Changed to white text */
    border: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8, #3b82f6, #1d4ed8);
    background-size: 400% 400%;
    border-radius: 14px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: glowMove 3s ease-in-out infinite;
}

.cta-button:hover::before {
    opacity: 0.8;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.secondary-button {
    width: 100%;
    background: transparent;
    color: #333; /* Changed to dark gray */
    border: 1px solid #d1d5db; /* Lighter border color */
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8, #3b82f6, #1d4ed8);
    background-size: 400% 400%;
    border-radius: 14px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: glowMove 3s ease-in-out infinite;
}

.secondary-button:hover::before {
    opacity: 0.6;
}

.secondary-button:hover {
    transform: translateY(-2px);
    border-color: #3b82f6;
    color: #000; /* Changed to black on hover */
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.security-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-4);
    padding: var(--space-3) 0;
}

.security-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    opacity: 0.8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.security-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.security-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.security-icon:hover img {
    filter: brightness(1) drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}

.security-label {
    color: #333; /* Changed to dark gray */
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

/* Footer Styles */
.footer {
    padding: 48px 20px 32px;
    background: #050505; /* Reverted to dark */
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center bottom, rgba(59, 130, 246, 0.045) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.footer-nav-links {
    display: flex;
    gap: var(--space-6);
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
}

.footer-nav-links a {
    color: #a1a1aa; /* Reverted to light gray */
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-links a:hover {
    color: #ffffff; /* Reverted to white on hover */
    transform: translateY(-1px);
}

.footer-nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.footer-nav-links a:hover::after {
    width: 100%;
}

.footer-email {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: #1d4ed8;
    transform: translateY(-1px);
}

.copyright {
    width: 100%;
    padding-top: var(--space-3);
    color: #71717a;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-4);
    text-align: left;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .footer-container {
        justify-content: center;
        text-align: center;
    }
    
    .footer-logo-container {
        justify-content: center;
        width: 100%;
    }

    .footer-nav-links {
        justify-content: center;
        gap: var(--space-3);
        width: 100%;
    }

    .copyright {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }
    .cta-title {
        font-size: 2.5rem;
    }
    .footer-nav-links {
        flex-direction: column;
        gap: var(--space-2);
    }
    .footer {
        padding: 30px 20px;
    }
}

.section-feature-tour {
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
}

.section-feature-tour::-webkit-scrollbar {
    display: none;
}

.feature-tour_component,
.feature-tour_component-mobile,
.feature-tour__list,
.feature-tour__media {
    overflow: hidden;
    max-width: 100%;
}

.feature-tour__desc {
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.42, 0, 0, 1), opacity 0.3s cubic-bezier(0.42, 0, 0, 1);
    max-height: 0;
}

.feature-tour__item--active .feature-tour__desc {
    max-height: 200px; /* Adjust based on content */
}

.feature-tour-media__item,
.feature-tour-media__item--mobile {
    overflow: hidden;
    max-height: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.feature-tour-media__item-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Additional overflow prevention for feature tour */
.feature-tour_component {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.feature-tour__media {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.feature-tour__steps {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.feature-tour-media__list {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
