/* 
   AUGURIA - MINIMAL CSS
   Hand-crafted for optimal performance
   Only includes what we actually use
*/

.sample-for-understanding {
  --sample-oceansample-lightblue: #51a4d8;
  --sample-oceansample-brightblue:#0754b0;
  --sample-oceansample-darkblue: #010e54;
  //--sample-pixler-dsds:;

  --sample-blue-auguriacolort: #3b74ed;
  --sample-blue-auguriacolort-purpelcompletement: #5b3bed;
  --sample-brightblue: #0033FF;
  --sample-secondary-tobrghtblue: #0600AB;
  --sample-darkblue: #273267;
  --sample--secondary-darkblue: #1a1f3a;
  --sample-bluepurpe: #5a63d3; // sometimes used as primary
  --sample-verysdarkblue: #141a3e; // used as secondary?
  --sample-veryslightbluealmostwhite: #efeffb; // has been used as accent
  --sample-offwhiteht: #fafafc;
   --sample-lightblesishgray: #64748b;
}

:root {
  --global-color-primary: #273267;
  --global-color-secondary: #1a1f3a;
  --global-color-accent: #e1e7ffc9; //#0033FF; //#977DFF;
  --global-text-primary: #273267; // #0600AB;
  --global-text-secondary: #5a63d3;//#0600AB;
  --global-text-muted: #3b74ed;
  --global-text-primary-dark: #ffffff;// #273267;
  --global-text-secondary-dark: #f6f8fb;
  --global-text-muted-dark: #3b74ed;
  --global-color-light: #f6f8fb;
  --global-color-description-dark: #f6f8fb;
  --global-color-description-light: #273267;
  --global-color-background-light: #ffffff;
  --color-border: #e3e5eb;
  --color-border-hard: #e3e5eb;
  --color-white: #ffffff;
  --color-neutral-transparent: #9f9f9f4d;
  --color-overlay: #1a1a1a66;
  --color-button-primary-light: #273267;
  --color-button-primary-text-light: #ffffff;
  --global-typography-primary-font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --global-typography-primary-font-weight: 600;
  --global-typography-secondary-font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --global-typography-secondary-font-weight: 600;
  --global-typography-text-font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --global-typography-text-font-weight: 400;
  --global-typography-accent-font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --global-typography-accent-font-weight: 600;
  --global-typography-logo-text: "Avenir Next", "Century Gothic", "Futura", sans-serif;
  --line-height-default: 1.6;
  --line-height-paragraph: 1.75;
  --letter-spacing-default: -0.027em;
  --letter-spacing-small: 0.04em;
  --font-size-default: 16px;
  --font-size-paragraphs: 16px;
  --font-size-main-menu: 16px;
  --global-border-radius: 12px;
  --button-border-radius: 30px;
  --box-shadow: 0px 8px 18px -4px rgba(10, 9, 11, 0.02), 0px 34px 54px -24px rgba(10, 9, 11, 0.04);
  --global-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --image-transition: all 0.7s cubic-bezier(0.2, 1, 0.22, 1);
  --container-max-width: 1240px;
  --listIndent: 2.5em;
  --listItemSpacing: 0.3em;
  --content-spacing: 1.5em;
  --small-content-spacing: 0.75rem;
  --headings-content-spacing: calc(0.3em + 10px);
  --column-spacing: 20px;
  --vertical-spacing: 100px;
  --titlebar-spacing: 100px;
  --mobile-spacing: 50px;
  --sidebar-width: 25%;
  --sidebar-widgets-spacing: 50px;
  --grid-columns-gap: 30px;
  --component-height: 50px;
  --button-padding: 25px;
  --header-height: 80px;
  --block-width: 850px;
  --logo-height: 32px;
  --keydesign-post-title: 32px;
  --icon-font-size: 35px;
  --icon-large-font-size: 45px;
  --admin-bar: 0px;
  --transparent-navigation-position: sticky;
}

/* ================================================
   HORIZONTAL SCROLLING PREVENTION
   ================================================ */

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

/* Prevent any element from causing horizontal overflow */
body > * {
  max-width: 100%;
}

/* Override inline styles that cause horizontal overflow */
[style*="min-width: 500px"] {
  min-width: 300px !important;
}

/* Global overflow prevention - be more specific to avoid breaking normal page flow */
.hero-section,
.tools-grid,
.footer-section,
#video-container,
.header {
  max-width: 100%;
  overflow-x: hidden;
}

/* Ensure benefits-section scrolls normally with page */
.benefits-section {
  overflow: visible !important;
  max-width: 100%;
}

@media (max-width: 768px) {
  [style*="min-width: 500px"],
  [style*="min-width: 400px"],
  [style*="min-width: 300px"] {
    min-width: 100% !important;
    max-width: 100% !important;
  }
  
  /* Ensure hero sections don't cause horizontal overflow */
  .hero-section {
    overflow-x: hidden;
  }
  
  .hero-container {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Fix tool cards section */
  .tools-grid {
    overflow-x: hidden;
    flex-wrap: wrap !important;
  }
  
  /* Ensure all containers respect viewport width */
  [style*="max-width: 1200px"],
  [style*="max-width: 1240px"] {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ================================================
   GENERIC ITEMS
   ================================================ */

.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

.highlight-text {
  background: linear-gradient(180deg, transparent 70%, var(--global-color-accent, #efeffb) 70%);
  background-size: 200% 100%;
  background-position: 200% 0;
  background-repeat: no-repeat;
  border-radius: var(--global-border-radius, 12px);
  transition: background-position 0.75s cubic-bezier(0.29, 1.11, 0.74, 1.04);
  transition-delay: 0.5s;
}


.left-align {
  text-align: left !important;
}

.right-align {
  text-align: right !important;
}


/* === HEADER === */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: #ffffff;
  transition: var(--global-transition);
}

.header-logo-text {
  font-family: var(--global-typography-logo-text);
  font-size: 18px;
  font-weight: 600;
  color: var(--global-color-primary);
  letter-spacing: 0.1em;
  font-stretch: condensed;
}


.header-logo img {
  height: 32px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.nav-item {
  font-family: var(--global-typography-primary-font-family);
  font-size: 16px;
  font-weight: 500;
  color:var(--global-text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.nav-item:hover,
.nav-item:focus {
  color:var(--global-text-primary, #64748b);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  max-height: 45px;
}


/* Position Header CTA Module (fixed to align with sticky header) */
#header-cta-module {
  position: fixed !important;
  top: 15px !important; /* Align with header vertical center */
  right: 40px !important; /* Match header's right padding */
  z-index: 101 !important; /* Above header z-index (100) */
  width: 140px !important;
  height: 50px !important;
  display: block !important;
}

/* Style the CTA embed */
#header-cta-module .hs-cta-embed {
  max-width: 140px !important;
  max-height: 50px !important;
  width: 140px !important;
  height: 50px !important;
  display: block !important;
  overflow: hidden !important;
}

#header-cta-module .hs-cta-embed a {
  display: inline-block !important;
  transition: all 0.2s ease !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 100% !important;
}

#header-cta-module .hs-cta-embed a:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(39, 50, 103, 0.2) !important;
}

#header-cta-module .hs-cta-embed img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Specific styling for user's CTA embed */
#header-cta-module .hs-cta-embed-195769193623 {
  max-width: 140px !important;
  max-height: 50px !important;
  width: 140px !important;
  height: 50px !important;
}

/* Hide HubSpot CTA placeholder/loading state */
#header-cta-module .hs-cta-simple-placeholder {
  display: none !important;
}

#header-cta-module .hs-cta-placeholder {
  display: none !important;
}

/* Style HubSpot CTA module wrapper */
.header-cta .hs_cta,
.header-cta .widget-type-cta {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

/* HubSpot Image-Based CTA Styling */
.header-cta .hs-cta-embed {
  max-width: 140px !important;
  max-height: 45px !important;
  width: 140px !important;
  height: 45px !important;
  display: block !important;
  overflow: hidden !important;
}

.header-cta .hs-cta-embed a {
  display: inline-block !important;
  transition: all 0.2s ease !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 100% !important;
}

.header-cta .hs-cta-embed a:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(39, 50, 103, 0.2) !important;
}

.header-cta .hs-cta-embed img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 30px !important;
}

/* HubSpot Text-Based CTA Styling (fallback) */
.header-cta .hs-cta-wrapper a {
  padding: 15px 25px !important;
  background: var(--color-button-primary-light) !important;
  color: var(--color-button-primary-text-light, #ffffff) !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  font-family: var(--global-typography-primary-font-family) !important;
  transition: all 0.2s ease !important;
  display: inline-block !important;
  border: none !important;
}

.header-cta .hs-cta-wrapper a:hover {
  background: var(--global-color-secondary) !important;
  transform: translateY(-1px) !important;
}

.header-cta .btn-primary {
  padding: 15px 25px;
  background: var(--color-button-primary-light);
  color: var(--color-button-primary-text-light, #ffffff);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.header-cta .btn-primary:hover {
  background: var(--global-color-secondary, #141a3e);
}

/* === HUBSPOT MENU STYLING === */
/* Style the HubSpot menu to match original design */
.header-nav .hs-menu-wrapper {
  display: flex !important;
  align-items: center;
  height: 100%;
}

.header-nav .hs-menu-wrapper > ul {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.header-nav .hs-menu-children-wrapper {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.header-nav .hs-menu-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.header-nav .hs-menu-item > a {
  font-family: var(--global-typography-primary-font-family);
  font-size: 16px;
  font-weight: 500;
  color: var(--global-text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  padding: 0;
}

.header-nav .hs-menu-item > a:hover,
.header-nav .hs-menu-item > a:focus {
  color: var(--global-text-primary, #64748b);
}

/* Dropdown menu styling - override main nav styles for submenus */
.header-nav .hs-menu-item .hs-menu-children-wrapper {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: white !important;
  border: 1px solid #e3e5eb !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
  z-index: 1000 !important;
  display: none !important;
  margin-top: 8px !important;
  min-width: 200px !important;
  flex-direction: column !important;
  gap: 0 !important;
  padding: 0 !important;
}

.header-nav .hs-menu-item:hover .hs-menu-children-wrapper {
  display: flex;
}

.header-nav .hs-menu-item .hs-menu-children-wrapper .hs-menu-item {
  width: 100%;
  height: auto;
}

.header-nav .hs-menu-item .hs-menu-children-wrapper .hs-menu-item > a {
  display: block;
  padding: 12px 16px;
  color: var(--global-color-primary);
  text-decoration: none;
  font-family: Outfit;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
  transition: background-color 0.3s ease;
}

.header-nav .hs-menu-item .hs-menu-children-wrapper .hs-menu-item:last-child > a {
  border-bottom: none;
}

.header-nav .hs-menu-item .hs-menu-children-wrapper .hs-menu-item > a:hover {
  background-color: #f6f8fb;
}

/* Add dropdown arrow for items with submenus */
.header-nav .hs-menu-item:has(.hs-menu-children-wrapper) > a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.header-nav .hs-menu-item:hover > a::after {
  transform: rotate(180deg);
}

/* Responsive behavior */
@media (max-width: 1024px) {
  .nav-bar {
    padding: 0 15px;
  }
  
  .header-nav {
    gap: 20px;
  }
  
  .nav-item {
    font-size: 14px;
  }
}

/* Mobile header - NO hamburger menu */
@media (max-width: 768px) {
  .header {
    flex-direction: row; /* Change to row to put nav and cta on same line */
    flex-wrap: wrap; /* Allow wrapping for logo on top */
    height: auto;
    padding: 15px 20px;
    gap: 0;
    align-items: flex-start;
  }
  
  .header-logo {
    width: 100%; /* Force logo to take full width and wrap to new line */
    justify-content: center;
    order: 1; /* Logo appears first */
    margin-bottom: 15px;
  }
  
  .header-logo img {
    height: 28px;
  }
  
  .header-logo-text {
    font-size: 16px;
  }
  
  /* Navigation on the left */
  .header-nav {
    order: 2; /* Nav appears second */
    display: flex;
    align-items: center;
    flex: 0 0 auto;
  }
  
  .header-nav .hs-menu-wrapper {
    display: flex !important;
    align-items: center;
  }
  
  .header-nav .hs-menu-wrapper > ul {
    display: flex !important;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .header-nav .hs-menu-item > a {
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    background: #f6f8fb;
    color: var(--global-color-primary);
    font-weight: 500;
  }
  
  .header-nav .hs-menu-item > a:hover {
    background: var(--global-color-primary);
    color: white;
  }
  
  /* CTA on the right, same line as nav */
  .header-cta {
    order: 3; /* CTA appears third, but on same line as nav */
    display: flex;
    align-items: center;
    flex: 1; /* Take remaining space */
    justify-content: flex-end; /* Push to the right */
  }
  
  /* Mobile positioning and sizing for header CTA module */
  #header-cta-module {
    top: 12px !important; /* Adjust for mobile header height */
    right: 20px !important; /* Match mobile header padding */
    width: 100px !important;
    height: 32px !important;
  }
  
  #header-cta-module .hs-cta-embed,
  #header-cta-module .hs-cta-embed-195769193623 {
    max-width: 100px !important;
    max-height: 32px !important;
    width: 100px !important;
    height: 32px !important;
  }
  
  
  .header-cta .button-light {
    font-size: 14px !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
  }
  
  /* Disable dropdown menus on mobile */
  .header-nav .hs-menu-item .hs-menu-children-wrapper {
    display: none !important;
  }
  
  .header-nav .hs-menu-item > a::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 10px 15px;
  }
  
  .header-logo {
    margin-bottom: 12px;
  }
  
  .header-nav .hs-menu-wrapper > ul {
    gap: 10px;
  }
  
  .header-nav .hs-menu-item > a {
    font-size: 13px;
    padding: 6px 10px;
  }
  
  /* Smaller mobile sizing for header CTA module */
  #header-cta-module {
    top: 10px !important; /* Adjust for smaller mobile */
    right: 15px !important; /* Match smaller mobile padding */
    width: 85px !important;
    height: 28px !important;
  }
  
  #header-cta-module .hs-cta-embed,
  #header-cta-module .hs-cta-embed-195769193623 {
    max-width: 85px !important;
    max-height: 28px !important;
    width: 85px !important;
    height: 28px !important;
  }
  
  
  .header-cta .button-light {
    font-size: 13px !important;
    padding: 6px 10px !important;
  }
}

/* === SIMPLIFIED HERO SECTION === */
.hero-section {
  padding: 60px 40px;
  background: var(--global-color-background-light);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(90, 99, 211, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(39, 50, 103, 0.02) 0%, transparent 50%);
  width: 100%;
  position: relative;
}

.hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 180px;
}

.hero-content {
  flex: 0 0 auto;
  max-width: 600px;
  padding-left: 0;
}
.hero-title-main {
  font-family: var(--global-typography-primary-font-family, "Outfit");
  font-size: 68px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--global-text-primary);
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}

.hero-title-sub {
  font-family: var(--global-typography-primary-font-family, "Outfit");
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--global-text-primary);
  margin: 0 0 28px 0;
  letter-spacing: -0.02em;
}

.hero-description {
  font-family: var(--global-typography-secondary-font-family, "Outfit");
  font-size: 22px;
  font-weight: 400;
  color: var(--global-color-secondary, var(--global-color-primary));
  line-height: 1.6;
  margin: 0 0 40px 0;
  max-width: 480px;
  opacity: 0.9;
}


.hero-section:not(.hero-animated) .highlight-text {
  background-position: 100% 0;
}


/* ================================================
   GENERIC SECTION TITLE SYSTEM
   ================================================ */

h2.section-title-light {
  color: var(--global-text-primary);
  display: block;
  font-family: var(--global-typography-secondary-font-family, "Outfit");
  font-size: 48px;
  font-weight: 500;
  line-height: 57.6px;
  margin: 0 0 12px 0;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

h2.section-title-light span {
  position: relative;
}

h2.section-title-light span::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: -2px;
  right: -2px;
  height: 21.17px;
  background-color: var(--global-color-primary);
  border-radius: 4px;
  z-index: -1;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

h2.section-title-dark {
  font-family: var(--global-typography-secondary-font-family, "Outfit");
  font-size: 48px;
  font-weight: 500;
  color: var(--global-color-light, #fafafc);
  margin: 0 0 22px 0;
  line-height: 1.2;
}

h2.section-title-dark span {
  position: relative;
  z-index: 1;
}

h2.section-title-dark span::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: -2px;
  right: -2px;
  height: 21.17px;
  background-color: var(--global-color-primary);
  border-radius: 4px;
  z-index: -1;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Animation triggers */
.animate-in h2.section-title-light span::before,
.animate-in h2.section-title-dark span::before {
  transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  h2.section-title-light,
  h2.section-title-dark {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  h2.section-title-light,
  h2.section-title-dark {
    font-size: 32px;
  }
}

/* ================================================
   GENERIC DESCRIPTION SYSTEM
   ================================================ */

p.description-dark {
  font-family:  var(--global-typography-secondary-font-family, "Outfit");
  font-size: 18px;
  font-weight: 400;
  color: var(--global-color-description-dark);
  line-height: 31.5px;
  margin: 0;
}

p.description-light {
  color: var(--global-color-description-light);
  display: block;
  font-family:  var(--global-typography-secondary-font-family, "Outfit");
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 24px 0;
  text-align: center;
}

/* ================================================
   GENERIC HEADER LABEL SYSTEM
   ================================================ */

.header-label {
  background-color: var(--global-color-background-light);
  border-radius: 4px;
  color: var(--global-text-muted);
  display: inline-block;
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 16px 0;
  padding: 8px 12px;
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
  position: relative;
}

/* ================================================
   GENERIC BUTTON SYSTEM
   ================================================ */

.button-light {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--global-color-primary);
  color: var(--global-color-background-light);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--global-typography-secondary-font-family, "Outfit");
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button-light:hover {
  background-color: var(--global-color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--color-border);
}

.button-dark {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--global-color-background-light);
  color: var(--global-color-primary);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--global-typography-secondary-font-family, "Outfit");
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button-dark:hover {
  background-color: transparent;
  color: var(--global-color-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--color-border);
}

.button-secondary:hover {
  background-color: var(--global-color-primary) !important;
  color: var(--global-color-background-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--color-border);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 300px;
  max-width: 100%;
}

.hero-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: var(--global-border-radius, 12px);
  object-fit: contain;
}

/* Trigger animation on load */
@media (min-width: 1025px) {
  .hero-section {
    padding: 60px 40px;
  }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-image {
    min-width: 300px;
    max-width: 100%;
  }
  
  .hero-image img {
    max-width: 95%;
    width: 95%;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
  }
  
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    flex: none;
    max-width: 100%;
  }
  
  .hero-image {
    flex: none;
    max-width: 100%;
    min-width: auto;
    width: 100%;
    justify-content: center;
  }
  
  .hero-image img {
    max-width: 90%;
    width: 90%;
  }
  
  .hero-title-main {
    font-size: 40px;
  }
  
  .hero-title-sub {
    font-size: 32px;
  }
  
  .hero-description {
    font-size: 18px;
    max-width: 100%;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 15px 40px 15px;
  }
  
  /* Fix hero CTA buttons extending past mobile viewport */
  .hero-cta-buttons {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .hero-cta-buttons .hs-cta-wrapper {
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
  }
  
  .hero-cta-buttons .hs-cta-wrapper a {
    width: auto !important;
    text-align: center !important;
    padding: 12px 24px !important;
    font-size: 16px !important;
    min-width: 140px !important;
  }
  
  .hero-title-main {
    font-size: 32px;
  }
  
  .hero-title-sub {
    font-size: 28px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-image {
    max-width: 100%;
    min-width: auto;
  }
  
  .hero-image img {
    max-width: 85%;
    width: 85%;
  }
}

/* === SIMPLIFIED TOOLS SECTION === */

/* Clean CSS-only Card Animation System */

/* Initial state - cards start hidden below */
.tool-card[data-animate="slideUp"] {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Animated state - when card comes into view */
.tool-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for sequential animation */
.tool-card[data-delay="100"].animate-in { 
  transition-delay: 0.1s; 
}

.tool-card[data-delay="200"].animate-in { 
  transition-delay: 0.2s; 
}

.tool-card[data-delay="300"].animate-in { 
  transition-delay: 0.3s; 
}

.tools-section {
  min-height: 600px;
  align-items: center;
  padding: 20px 40px;
  /* Standard dark background: background: linear-gradient(135deg, #0f1529 0%, #1a2040 50%, #141a3e 100%); */
  background: url('./static/abstract-dark.png') center/cover no-repeat, linear-gradient(135deg, #0f1529 0%, #1a2040 50%, #141a3e 100%);
  margin: 0 auto;
  gap: 60px;
}

.tools-header {
  text-align: center;
  margin: 0 auto 60px auto;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header fade-in animation */
.tools-header[data-animate="fadeIn"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tools-header.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Header delay support */
.tools-header[data-delay="50"].animate-in { 
  transition-delay: 0.05s; 
}

.tools-title {
  font-family: "Outfit", sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--global-color-light, #fafafc);
  margin: 0 0 22px 0;
  line-height: 1.2;
}

.tools-title span {
  position: relative;
  z-index: 1;
}

.tools-title span::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: -2px;
  right: -2px;
  height: 21.17px;
  background-color:var(--global-color-primary) ;
  border-radius: 4px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.75s cubic-bezier(0.29, 1.11, 0.74, 1.04);
  transition-delay: 0.8s;
}

/* Trigger the highlight animation when header animates in */
.tools-header.animate-in .tools-title span::before {
  transform: scaleX(1);
}


.tools-subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 31.5px;
  margin: 0;
}

.tools-cards {
  display: flex;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 0 40px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.tool-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px 25px 35px 25px;
  border-radius: var(--global-border-radius, 12px);
  flex: 1;
  -webkit-font-smoothing: antialiased;
}

.tool-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Card Image Container */
.card-image-container {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: var(--global-border-radius, 12px);
  overflow: hidden;
  pointer-events: none;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Image */
.card-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 1;
}

/* Card Gradient Overlay - Removed to use card background color */


.card-label-dark {
  font-family: Outfit;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

h3.card-title-dark {
  font-family: Outfit;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.3;
  text-align: center;
  width: 100%;
  display: block;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  position: relative;
  z-index: 1;
}

p.card-description-dark {
  font-family: Outfit;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
  text-align: center;
  width: 100%;
  height: auto;
  min-height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

/* ===== FEATURES SECTION ===== */

.features-section {
  padding: 60px 40px;
  background: var(--global-color-light);
  width: 100%;
  margin: 0 0 0 0;
}

.features-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 0;
  width: 98%;
  margin-bottom: 80px;
}
.feature-detail-left {
  flex: 1;
  width: 60%;
}

.feature-detail-right {
  flex: 0 0 auto;
  width: 40%;
}

/* Reverse layout for Part 2 (Image Left, Text Right) */
.features-content-reverse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 0;
  width: 98%;
  margin-bottom: 80px;
}

/* Reverse layout classes for Part 2 */
.feature-detail-left-reverse {
  flex: 1;
  width: 100%;
  text-align: right;
  padding: 28px;
}

.feature-detail-right-reverse {
  flex: 0 0 auto;
  width: 40%;
}

/* Image Container - renamed to feature-image-container */
.feature-image-container {
  border: 1px solid rgb(237, 242, 247);
  border-radius: 12px;
  padding: 12px;
  position: relative;
  transition: background 0.3s ease, border 0.3s ease, box-shadow 0.3s ease, transform 0.4s ease;
  width: 100%;
  max-width: 400px;
}

.feature-image-canvas {
  background-color: rgb(239, 239, 251);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  transition: background 0.3s ease, border 0.3s ease, box-shadow 0.3s ease, transform 0.4s ease;
  width: 100%;
}

.feature-image-canvas img {
  display: block;
  margin: -12px 0 0 0;
  text-align: center;
  transition: background 0.3s ease, border 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease, transform 0.4s ease;
  width: 100%;
  height: auto;
  object-fit: contain;
}




/* Lavender Badge/Button */
.feature-badge {
  background-color: rgb(239, 239, 251);
  border-radius: 4px;
  color: var(--global-color-primary);
  display: inline-block;
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  height: 39.0391px;
  line-height: 23.04px;
  margin: 0 0 22px 0;
  padding: 8px 12px;
  text-align: left;
  width: 158.039px;
  position: relative;
  vertical-align: middle;
}

/* Title Text */
.feature-title {
  color: rgb(6, 11, 37);
  display: block;
  font-family: Outfit;
  font-size: 36px;
  font-weight: 500;
  height: 115.188px;
  line-height: 57.6px;
  margin: 0 0 12px 0;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  width: 400px;
}

.feature-title span {
  position: relative;
}

.feature-title span::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: -2px;
  right: -2px;
  height: 21.17px;
  background-color: var(--global-color-primary);
  border-radius: 4px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.75s cubic-bezier(0.29, 1.11, 0.74, 1.04);
  transition-delay: 0.8s;
}

/* Description Text */
.feature-description {
  color: rgb(100, 116, 139);
  display: block;
  font-family: Outfit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 24px 0;
  text-align: left;
  width: 480px;
}

/* Light Card Classes */
div.card-icon-light {
  margin-bottom: 20px;
}

div.card-icon-light img {
  max-width: 32px;
  height: auto;
  transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(85%) sepia(4%) saturate(1090%) hue-rotate(169deg) brightness(96%) contrast(94%);
}

.benefit-card:hover div.card-icon-light img {
  filter: brightness(0) saturate(100%) invert(47%) sepia(45%) saturate(3187%) hue-rotate(227deg) brightness(96%) contrast(85%);
  transform: scale(1.1);
}

h3.card-title-light {
  font-family: Outfit;
  font-size: 18px;
  font-weight: 500;
  color: rgb(6, 11, 37);
  line-height: 25.92px;
  margin: 0 0 12px 0;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

p.card-description-light {
  font-family: Outfit;
  font-size: 15px;
  font-weight: 400;
  color: rgb(100, 116, 139);
  line-height: 26.25px;
  margin: 0;
}

/* Get Started Button */
.feature-button {
  align-items: center;
  background-color: rgb(255, 255, 255);
  border: 1px solid var(--global-color-primary);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(90, 99, 211, 0.1);
  color: var(--global-color-primary);
  cursor: pointer;
  display: inline-flex;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 400;
  height: 45px;
  justify-content: center;
  line-height: 1.2;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  user-select: none;
  vertical-align: middle;
  width: auto;
  min-width: 140px;
  margin: 0;
}

.feature-button:hover {
  background-color: var(--global-color-primary);
  color: rgb(255, 255, 255);
  box-shadow: 0 4px 16px rgba(90, 99, 211, 0.2);
  transform: translateY(-1px);
}

/* Right-align button in reverse layout (AI Integration section) */
.feature-detail-left-reverse .feature-button {
  align-self: flex-end;
}

/* Feature Section Dividers */
.feature-divider {
  width: 40%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(90, 99, 211, 0.2), transparent);
  margin: 60px auto;
  position: relative;
}

.feature-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: rgba(90, 99, 211, 0.3);
  border-radius: 50%;
}


/* Old image container CSS removed - replaced with feature-image-container above */

/* Animation States */
.features-content[data-animate="fadeIn"] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.features-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.features-content[data-delay="100"].animate-in {
  transition-delay: 0.1s;
}

.features-content[data-delay="200"].animate-in {
  transition-delay: 0.2s;
}

/* Animation States for Reverse Layout */
.features-content-reverse[data-animate="fadeIn"] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.features-content-reverse.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.features-content-reverse[data-delay="200"].animate-in {
  transition-delay: 0.2s;
}

.feature-detail-right[data-animate="fadeInUp"] {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.feature-detail-right.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-detail-right[data-delay="100"].animate-in {
  transition-delay: 0.1s;
}

.feature-detail-right[data-delay="300"].animate-in {
  transition-delay: 0.3s;
}

/* Animation support for reverse layout images */
.feature-detail-right-reverse[data-animate="fadeInUp"] {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.feature-detail-right-reverse.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-detail-right-reverse[data-delay="100"].animate-in {
  transition-delay: 0.1s;
}

/* Highlight animation trigger */
.features-content.animate-in .feature-title span::before {
  transform: scaleX(1);
}

.features-content-reverse.animate-in .feature-title span::before {
  transform: scaleX(1);
}

/* ===== BENEFITS SECTION ===== */

.benefits-section {
  padding: 20px 40px 100px 40px;
  background: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Area */
.benefits-header {
  text-align: center;
  margin-bottom: 80px;
}

/* Cards Grid */
.benefits-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid rgba(237, 242, 247, 0.5);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  cursor: pointer;
  /* transition only hover-related props */
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(90, 99, 211, 0.1);
  border-color: rgba(90, 99, 211, 0.2);
}

.benefit-icon {
  margin-bottom: 20px;
}

.benefit-icon img {
  max-width: 32px;
  height: auto;
  transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(85%) sepia(4%) saturate(1090%) hue-rotate(169deg) brightness(96%) contrast(94%);
}

.benefit-card:hover .benefit-icon img {
  filter: brightness(0) saturate(100%) invert(47%) sepia(45%) saturate(3187%) hue-rotate(227deg) brightness(96%) contrast(85%);
  transform: scale(1.1);
}

/* Animation States */
.benefits-header[data-animate="fadeIn"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.benefits-header.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.benefits-header[data-delay="50"].animate-in {
  transition-delay: 0.05s;
}

.benefit-card[data-animate="slideUp"] {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.benefit-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for wave animation */
.benefit-card[data-delay="100"].animate-in { transition-delay: 0.1s; }
.benefit-card[data-delay="200"].animate-in { transition-delay: 0.2s; }
.benefit-card[data-delay="300"].animate-in { transition-delay: 0.3s; }
.benefit-card[data-delay="400"].animate-in { transition-delay: 0.4s; }
.benefit-card[data-delay="500"].animate-in { transition-delay: 0.5s; }
.benefit-card[data-delay="600"].animate-in { transition-delay: 0.6s; }

/* Highlight animation trigger */
.benefits-header.animate-in .benefits-title span::before {
  transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .benefits-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .benefits-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 30px 20px 60px 20px; /* Reduced top padding from 60px to 30px */
  }
  
  .benefits-header {
    margin-bottom: 40px; /* Reduced from 80px to half */
  }
  
  .benefits-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefits-title {
    font-size: 32px;
  }
  
  .benefit-card {
    padding: 30px 20px;
  }
}

/* ===== INTEGRATIONS SECTION ===== */

.integrations-section {
  padding: 60px 40px;
  background: #141a3e;
  background-image: 
    linear-gradient(90deg, rgba(90, 99, 211, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(90, 99, 211, 0.05) 1px, transparent 1px);
  background-size: 60px 60px, 60px 60px;
  margin: 0 auto;
  position: relative;
}


/* Header Area */
.integrations-header {
  text-align: center;
  margin-bottom: 80px;
}

/* Main content area - Glass morphism container */
.integrations-content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Left content */
.integrations-text {
  flex: 1;
  background: #0f132e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-image: url("https://joule.keydesign.xyz/ai-analytics-tool/wp-content/uploads/sites/2/2024/11/joule-analytics-bg-1.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.integrations-cta-title {
  font-family: Outfit;
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 30px;
}

.integrations-cta-description {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  color: #b8c5d1;
  margin: 0 0 32px 0;
  line-height: 1.6;
}


/* Right content - logos grid */
.integrations-logos {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(90, 99, 211, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(90, 99, 211, 0.2);
}

.logo-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.logo-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.logo-title {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

/* Animation styles */
.integrations-header[data-animate="fadeIn"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.integrations-text[data-animate="fadeIn"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.integrations-logos[data-animate="slideUp"] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.integrations-header.animate-in,
.integrations-text.animate-in,
.integrations-logos.animate-in {
  opacity: 1;
  transform: translate(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .integrations-section {
    padding: 60px 20px;
  }
  
  .integrations-header {
    margin-bottom: 60px;
  }
  
  .integrations-title {
    font-size: 36px;
  }
  
  .integrations-content {
    flex-direction: column;
    gap: 0;
  }
  
  .integrations-text {
    padding: 40px 30px;
  }
  
  .integrations-subtitle {
    font-size: 20px;
  }
  
  .integrations-cta-title {
    font-size: 28px;
  }
  
  .integrations-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 30px 20px;
  }
  
  .logo-item {
    padding: 15px 10px;
  }
}

/* ================================================
   PROOF POINTS SECTION - SIMPLIFIED STRUCTURE
   ================================================ */

.proof-points-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 60px 50px;
  margin-bottom: 10px;
  color: #ffffff;
}

/* Header Area */
.proof-points-header {
  text-align: left;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.proof-points-text {
  flex: 1;
  max-width: 600px;
}

.proof-points-subtitle {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
}

.proof-points-title {
  font-family: Outfit;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.proof-points-title span {
  color: var(--global-color-primary);
}

.proof-points-description {
  font-family: Outfit;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.proof-points-button {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  padding: 16px 0;
  border: none;
  border-bottom: 2px solid var(--global-color-primary);
  transition: all 0.3s ease;
  align-self: flex-end;
}

.proof-points-button:hover {
  color: var(--global-color-primary);
  border-bottom-color: #ffffff;
}

/* Cards Grid */
.proof-points-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.proof-point-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.proof-point-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.proof-point-stat {
  font-family: Outfit;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1;
}

.proof-point-title {
  font-family: Outfit;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 1.3;
}

.proof-point-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 0 24px 0;
}

.proof-point-quote {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0 0 24px 0;
}

.proof-point-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-point-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
}

.proof-point-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-point-author-info {
  display: flex;
  flex-direction: column;
}

.proof-point-author-name {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

.proof-point-author-title {
  font-family: Outfit;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Animation styles */
.proof-points-header[data-animate="fadeIn"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.proof-point-card[data-animate="slideUp"] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.proof-points-header.animate-in,
.proof-point-card.animate-in {
  opacity: 1;
  transform: translate(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .proof-points-section {
    padding: 60px 20px;
  }
  
  .proof-points-header {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .proof-points-title {
    font-size: 32px;
  }
  
  .proof-points-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .proof-point-card {
    padding: 30px 20px;
  }
  
  .proof-point-stat {
    font-size: 36px;
  }
}

/* ================================================
   CTA SECTION - SIMPLIFIED STRUCTURE
   ================================================ */

.cta-section {
  background: #ffffff;
  padding: 0 50px 120px 50px;
}

.cta-container {
  background: transparent;
  padding: 60px 50px;
  text-align: center;
  color: var(--global-color-primary);
  overflow: hidden;
  position: relative;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-subtitle {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  color: var(--global-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
  position: relative;
}

.cta-subtitle::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-border);
  margin: 0 auto 12px auto;
}

.cta-title {
  font-family: Outfit;
  font-size: 48px;
  font-weight: 700;
  color: var(--global-color-primary);
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.cta-description {
  font-family: Outfit;
  font-size: 18px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.cta-button {
  display: inline-block;
  background: #ffffff;
  color: var(--global-color-primary);
  text-decoration: none;
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  padding: 16px 32px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.cta-button:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Animation styles */
.cta-container[data-animate="fadeInUp"] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.cta-container.animate-in {
  opacity: 1;
  transform: translate(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 0 20px 80px 20px;
  }
  
  .cta-container {
    padding: 40px 30px;
  }
  
  .cta-title {
    font-size: 32px;
  }
  
  .cta-description {
    font-size: 16px;
  }
  
  /* Stack CTA buttons vertically on mobile */
  .cta-content > div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
  }
  
  .cta-content .hs-cta-wrapper {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }
  
  .cta-content .hs-cta-wrapper a {
    width: auto !important;
    min-width: 180px !important;
    text-align: center !important;
  }
}

/* ================================================
   FOOTER SECTION - SIMPLIFIED STRUCTURE
   ================================================ */

.footer-section {
  background: #1a1a2e;
  padding: 60px 50px;
  color: #ffffff;
}

.footer-section * {
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Extra specificity to remove any possible underlines or borders */
.footer-section a,
.footer-section span,
.footer-section .footer-menu-link {
  text-decoration: none !important;
  border-bottom: none !important;
  border: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

.footer-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left side - 1/3 width */
.footer-brand {
  flex: 1;
  max-width: 350px;
}

.footer-logo {
  display: block;
  margin-bottom: 24px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-description {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Right side - 2/3 width */
.footer-menus {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
}

.footer-menu-title {
  font-family: Outfit;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-item {
  margin-bottom: 12px;
}

.footer-menu-link {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none !important;
  text-transform: none !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  transition: color 0.3s ease;
}

.footer-menu-link:hover {
  color: var(--global-color-primary);
}

/* Fix for footer use case links - prevent capitalization and remove all decorations */
.footer-menu a[href*="usecases"],
.footer-section a[href*="usecases"],
.footer-menu-item a[href*="usecases"],
.footer-menu-list a[href*="usecases"] {
  text-transform: none !important;
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-style: none !important;
  text-decoration-color: transparent !important;
  text-underline-offset: 0 !important;
  text-decoration-thickness: 0 !important;
  border: 0 !important;
  border-bottom: 0 !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.footer-menu a[href*="usecases"]:link,
.footer-menu a[href*="usecases"]:visited,
.footer-menu a[href*="usecases"]:hover,
.footer-menu a[href*="usecases"]:active,
.footer-menu a[href*="usecases"]:focus {
  text-decoration: none !important;
  text-decoration-line: none !important;
  border-bottom: 0 !important;
}

/* Social links styling */
.footer-social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social-item {
  margin-bottom: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social-link:hover {
  color: var(--global-color-primary);
}

.footer-social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-section {
    padding: 60px 20px 30px 20px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-menus {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .footer-menus {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ================================================
   USE CASES PAGE - MOBILE RESPONSIVE STYLES
   ================================================ */

/* Use cases page section mobile padding */
@media (max-width: 768px) {
  section[style*="padding: 60px 40px"] {
    padding: 40px 20px 0 !important;
  }
  
  section[style*="padding: 0 40px 60px"] {
    padding: 0 20px 40px !important;
  }
}

@media (max-width: 480px) {
  section[style*="padding: 60px 40px"] {
    padding: 30px 15px 0 !important;
  }
  
  section[style*="padding: 0 40px 60px"] {
    padding: 0 15px 30px !important;
  }
}

/* Use case selector mobile responsiveness */
@media (max-width: 768px) {
  .usecase-selector {
    flex-wrap: wrap !important;
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px !important;
  }
  
  .usecase-tab {
    flex: 0 0 auto !important;
    min-width: max-content !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  .usecase-selector {
    padding: 8px !important;
    gap: 4px !important;
  }
  
  .usecase-tab {
    padding: 8px 12px !important;
    font-size: 12px !important;
  }
}

/* Use case content sections mobile responsiveness */
@media (max-width: 768px) {
  .usecase-content {
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  .usecase-content > div:first-child {
    flex: none !important;
    width: 100% !important;
  }
  
  .usecase-content > div:first-child > div {
    width: 100% !important;
    height: 250px !important;
  }
  
  .usecase-content > div:last-child {
    flex: none !important;
  }
  
  .usecase-content h2 {
    font-size: 28px !important;
  }
  
  .usecase-content p {
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  .usecase-content {
    gap: 20px !important;
  }
  
  .usecase-content > div:first-child > div {
    max-width: 100% !important;
    height: 200px !important;
  }
  
  .usecase-content h2 {
    font-size: 24px !important;
  }
  
  .usecase-content p {
    font-size: 14px !important;
  }
}

/* Hero CTA Buttons - Drag and Drop Area Styling */
.hero-cta-flex .dnd-section {
  display: flex !important;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-cta-flex .dnd-column {
  flex: 0 0 auto !important;
  width: auto !important;
  margin: 0 !important;
}

.hero-cta-flex .hs-cta-wrapper {
  margin: 0 !important;
}

/* Video Module Styling */
.video-wrapper {
  overflow: hidden;
}

/* Interactive Video Section Styling */
.video-module {
  transition: opacity 0.3s ease-in-out;
  /* Aspect ratio for 1440x1080 = 4:3 */
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 600px;
}

.video-module:not(.active-video) {
  display: none !important;
}

.active-video {
  display: flex !important;
}

#video-container {
  width: 100%;
  max-width: 600px;
}

/* Mobile responsiveness for video switcher */
@media (max-width: 768px) {
  /* Reduce padding above 'See it in Action' section */
  section[style*="padding: 50px 40px 100px 40px"] {
    padding: 25px 20px 50px 20px !important; /* Reduced top padding from 50px to 25px */
  }
  
  /* Stack video and use cases vertically on mobile */
  #video-interactive-section {
    flex-direction: column !important;
    gap: 15px !important; /* Reduced from 30px */
  }
  
  #video-container {
    max-width: 100%;
    min-width: auto !important;
  }
  
  .video-module {
    max-width: 100%;
    padding: 15px !important;
    aspect-ratio: 4 / 3;
  }
  
  /* Make use cases list mobile friendly */
  #use-cases-list {
    flex: none !important;
    max-width: 100% !important;
  }
  
  .use-case-item {
    padding: 15px !important;
  }
  
  /* Video indicators mobile styling */
  .video-indicator {
    width: 30px !important;
    height: 8px !important;
  }
}

@media (max-width: 480px) {
  #video-interactive-section {
    gap: 10px !important; /* Reduced from 20px */
  }
  
  .video-module {
    padding: 10px !important;
    aspect-ratio: 4 / 3;
  }
  
  .use-case-item {
    padding: 12px !important;
    font-size: 14px !important;
  }
  
  .use-case-item h4 {
    font-size: 16px !important;
  }
  
  .use-case-item p {
    font-size: 12px !important;
  }
}

/* Fix for use case images - ensure full visibility */
.use-case-item img {
  flex-shrink: 0;
  object-fit: contain;
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}

.video-wrapper .hs_cos_wrapper_widget {
  width: 100% !important;
  height: 100% !important;
}

/* Ensure HubSpot video elements display properly */
.video-module [class*="hs-"],
.video-module video,
.video-module iframe,
.video-module .hs_cos_wrapper_widget {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  height: 100% !important;
}

.video-module .hs_cos_wrapper_widget > * {
  width: 100% !important;
  height: 100% !important;
}

/* Video module styling */
.video-module {
  border: 2px solid var(--global-color-primary);
  border-radius: 12px;
  overflow: hidden;
}

.active-video {
  border-color: var(--global-color-primary);
  box-shadow: 0 4px 12px rgba(39, 50, 103, 0.15);
}

.video-wrapper iframe,
.video-wrapper video {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  border-radius: 8px;
}

/* Responsive video container */
@media (max-width: 768px) {
  .video-wrapper {
    height: 300px !important;
    padding: 15px !important;
  }
  
  #video-container {
    min-width: auto !important;
  }
}