* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Albert Sans", sans-serif;
}

/* Semantic HTML Base Styles */
main {
  min-height: 100vh;
}

section {
  position: relative;
  box-sizing: border-box;
}

article {
  display: block;
}

header {
  display: block;
}

footer {
  display: block;
}

nav {
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  display: list-item;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  font-family: "Albert Sans", sans-serif;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: #4000a9;
}

/* Heading Styles */
h1 {
  font-size: 48px;
  line-height: 110%;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #290074;
}

h2 {
  font-size: 40px;
  line-height: 110%;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #290074;
}

h3 {
  font-size: 32px;
  line-height: 120%;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #290074;
}

h4 {
  font-size: 24px;
  line-height: 120%;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #290074;
}

h5 {
  font-size: 20px;
  line-height: 120%;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #290074;
}

h6 {
  font-size: 18px;
  line-height: 120%;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #290074;
}

p {
  margin: 0;
}

blockquote {
  margin: 0;
  padding: 0;
}
.white {
  color: #fff;
}
.header,
.site-header,
.footer-cta-header,
.site-footer,
main {
  max-width: 1280px;
  margin: 0 auto;
}

.main-container {
  width: 100%;
  position: relative;
  background-color: #eaeae8;
  border: 14px solid #fff;
  box-sizing: border-box;
  overflow-x: hidden;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding-top: 100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 667px;
  text-align: center;
}

.hero-title {
  font-family: "Albert Sans", sans-serif;
  line-height: 110%;
  font-weight: 700;
  margin: 0;
}

.hero-title__main {
  color: #290074;
}

.hero-title__highlight {
  color: #4000a9;
}

.hero-text {
  color: #494948;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  margin: 0;
}

/* ===== DROPDOWN MENU STYLES ===== */

/* Dropdown container */
.nav-item--dropdown {
  position: relative;
}

/* Dropdown menu - hidden by default */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  max-width: 300px;
  background: linear-gradient(
    133.01deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px;
  border: 1px solid #b1b1af;
  box-shadow: -4px 8px 20px 0px rgba(0, 0, 0, 0.25);
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  margin-top: 8px;
}

/* Show dropdown on hover */
.nav-item--dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown item */
.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: #616160;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Albert Sans", sans-serif;
  letter-spacing: -0.02em;
  transition: all 0.2s ease;
  border-radius: 4px;
  margin: 0 10px;
  white-space: nowrap;
}

/* Dropdown item hover */
.dropdown-item:hover {
  background: rgba(225, 0, 255, 0.1);
  color: #290074;
  transform: translateX(2px);
}

/* Dropdown arrow rotation - Desktop only */
.nav-item--dropdown .dropdown-icon {
  transition: transform 0.3s ease;
}

/* Desktop hover rotation - only apply above mobile breakpoint */
@media (min-width: 769px) {
  .nav-item--dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
  }
}

/* Mobile: Keep arrow rotation transitions but remove dropdown menu transitions */
@media (max-width: 768px) {
  .header,
  .site-header {
    justify-content: flex-start;
  }

  .dropdown-menu {
    transition: none;
  }
}

/* ===== HEADER STYLES ===== */

/* Header Styles - Updated with BEM naming */
.header,
.site-header {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 60px 100px 0px;
  box-sizing: border-box;
  gap: 20px;
  text-align: left;
  color: #494948;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  order: 1;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background-color: #494948;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

.logo-icon,
.site-logo {
  width: 217px;
  position: relative;
  max-height: 100%;
  overflow: hidden;
  flex-shrink: 0;
  order: 2;
}

.product,
.nav-link {
  position: relative;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: inherit;
}

.subtract-icon,
.dropdown-icon {
  width: 12px;
  position: relative;
  max-height: 100%;
}

.product-parent,
.nav-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}

.isolation-mode-icon,
.genai-badge {
  width: 16px;
  position: relative;
  height: 16px;
  overflow: hidden;
  flex-shrink: 0;
  object-fit: cover;
}

.genai-parent,
.nav-item--highlighted {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
}

.menu,
.nav-menu {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-content: center;
  gap: 20px 28px;
  max-width: 715px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cta-text,
.cta-button__text {
  position: relative;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.cta,
.cta-button {
  box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.6) inset;
  border-radius: 60px;
  background: radial-gradient(50% 50% at 50% 50%, #e100ff, #4000a9);
  border: 1px solid #b700ff;
  box-sizing: border-box;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}

.cta:hover,
.header-cta:hover,
.cta-button:hover {
  box-shadow: 0px 0px 16px rgba(255, 255, 255, 0.8) inset;
  transform: translateY(-1px);
}

.navbar,
.main-navigation {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  order: 3;
}

.header-cta {
  order: 4;
  flex-shrink: 0;
}

/* ===== FOOTER CTA STYLES ===== */

/* Footer CTA Section - Enhanced Typography */
.footer-cta-title {
  align-self: stretch;
  position: relative;
  line-height: 120%;
  font-weight: 700;
  text-align: center;
  color: #290074;
  font-size: 48px;
  margin: 0;
}

.footer-cta-text {
  width: 100%;
  position: relative;
  font-size: 16px;
  line-height: 150%;
  color: #494948;
  display: inline-block;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
  min-height: 0;
}

.footer-cta-text--hidden {
  display: none;
}

.footer-cta-header {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.no-text {
  display: none;
}

/* ===== FOOTER NAVIGATION STYLES ===== */

/* Footer Navigation Styles - Enhanced Typography */
.footer,
.site-footer {
  background: #fff;
  padding: 0;
  width: 100%;
}

/* ===== FOOTER WRAPPER STYLES ===== */
.footer-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 80px;
  margin: 0 auto;
  padding: 60px 30px;
  box-sizing: border-box;
}

.footer-left,
.footer-left-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  max-width: 318px;
  align-items: center;
}

/* ===== NEWSLETTER STYLES ===== */

.newsletter-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.newsletter-cta {
  margin-bottom: 20px;
}

.newsletter-description {
  color: #494948;
  margin: 0;
  line-height: 1.5;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  width: 100%;
}

.newsletter-input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #4000a9;
  border-radius: 60px;
  font-size: 16px;
  font-family: inherit;
  height: 48px;
  box-sizing: border-box;
  text-align: center;
}

.newsletter-button {
  box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.6) inset;
  border-radius: 60px;
  background: radial-gradient(50% 50% at 50% 50%, #e100ff, #4000a9);
  border: 1px solid #b700ff;
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  padding: 12px 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  height: 48px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Newsletter Button Enabled State */
.newsletter-button--enabled,
.newsletter-button.newsletter-button--enabled {
  opacity: 1 !important;
}

/* Newsletter Button Disabled State */
.newsletter-button:disabled,
.newsletter-button[disabled] {
  opacity: 0.5 !important;
  cursor: not-allowed;
}

.newsletter-button:hover {
  box-shadow: 0px 0px 16px rgba(255, 255, 255, 0.8) inset;
  transform: translateY(-1px);
}

/* Footer Right Section */
.footer-right,
.footer-right-wrapper {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logo,
.footer-logo-icon {
  width: 200px;
  height: auto;
}

.footer-navigation {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Unified Navigation Styles */
.footer-navigation--unified {
  width: 100%;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Remove the old unified list styles since we're back to columns */
.footer-nav-list--unified {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 40px;
  align-items: flex-start;
  text-align: left;
  justify-content: flex-start;
}

.footer-nav-item--category {
  flex-basis: 100%;
  margin-top: 30px;
}

.footer-nav-item--category:first-child {
  margin-top: 0;
}

.footer-nav-category {
  font-weight: 600;
  color: #290074;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  display: block;
  margin-bottom: 10px;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 140px;
  align-items: flex-start;
  text-align: left;
}

/* First column (Product) should be larger */

/* Other columns auto-sized */
.footer-nav-column:not(:first-child) {
  flex: 1;
  min-width: 140px;
}

.footer-nav-title {
  font-weight: 600;
  color: #290074;
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  text-align: left;
}

.footer-nav-item {
  margin: 0;
  margin-bottom: 15px;
}

.footer-nav-link {
  text-decoration: none;
  color: #494948;
  transition: color 0.2s;
  font-size: 16px;

  text-align: left;
  display: block;
  width: 100%;
}

.footer-nav-link:hover {
  color: #4000a9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 43px;
  opacity: 0.5;
}

.footer-copyright {
  color: #666;
  margin: 0;
  font-size: 16px;
}

.footer-legal-link {
  color: #666;
  text-decoration: none;
  font-size: 16px;
}

.footer-legal-link:hover {
  color: #4000a9;
}

/* Backward Compatibility for Old Footer Classes */

.footer-logo-icon {
  width: 200px;
  height: auto;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.footer-newsletter-input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #ccc;
  border-radius: 60px;
  font-size: 16px;
  font-family: inherit;
  height: 48px;
  box-sizing: border-box;
}

.footer-newsletter-button-group {
  box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.6) inset;
  border-radius: 60px;
  background: radial-gradient(50% 50% at 50% 50%, #e100ff, #4000a9);
  border: 1px solid #b700ff;
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  padding: 12px 20px;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

/* Footer Newsletter Button Enabled State */
.footer-newsletter-button-group.newsletter-button--enabled {
  opacity: 1 !important;
}

/* Footer Newsletter Button Disabled State */
.footer-newsletter-button-group:disabled,
.footer-newsletter-button-group[disabled] {
  opacity: 0.5 !important;
  cursor: not-allowed;
}

.footer-newsletter-button-group:hover {
  box-shadow: 0px 0px 16px rgba(255, 255, 255, 0.8) inset;
  transform: translateY(-1px);
}

.footer-menu-wrapper {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* ===== FOOTER MENU STYLES ===== */
.footer-menu,
.footer-menu1,
.footer-menu2,
.footer-menu3 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  min-width: 140px;
  text-align: left;
}

.footer-menu {
  min-width: 252px;
}

.footer-menu1 {
  min-width: 107px;
}

.footer-menu2 {
  min-width: 150px;
}

.footer-menu3 {
  min-width: 148px;
}

.footer-menu-title {
  font-weight: 600;
  color: #290074;
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
}

.footer-menu-ul,
.footer-menu-ul3 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  color: #494948;
  text-align: left;
}

.footer-menu-ul3 {
  align-self: stretch;
}

.footer-menu-item {
  margin: 0;
  color: #494948;
  font-size: 16px;
  line-height: 1.4;
  transition: color 0.2s;
  text-align: left;
  display: block;
  width: 100%;
}

.footer-menu-item:hover {
  color: #4000a9;
}

.footer-copyright-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.footer-copyright-left {
  color: #666;
  margin: 0;
  font-size: 16px;
}

.footer-right-wrapper {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
/* CTA Button Styles - Restored Original Gradient Design */
.cta-button {
  border-radius: 4px;
  background-color: #eaeae8;
  border: 1px solid #494948;
  box-sizing: border-box;
  height: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  color: #494948;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.cta-button--primary {
  box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.8) inset;
  border-radius: 60px;
  background: radial-gradient(
    54.93% 131.82% at 49.74% 140.91%,
    #e100ff 0%,
    #4000a9 100%
  );
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-top: none;
  color: white;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
}

.cta-button--primary:hover {
  box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.8) inset,
    0px 10px 20px rgba(202, 22, 248, 0.8);
  transform: translateY(-1px);
}

.cta-button--secondary {
  background: #ffffff;
  border-radius: 60px;
  border-style: solid;
  border-color: #4000a9;
  border-width: 1px;
  padding: 20px 32px 20px 32px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 58px;
  min-width: 100px;
  position: relative;
}

.cta-button--secondary:hover {
  background: #f5f5f5;
  border: 1px solid #494948;
  color: #494948;
}

/* Custom Outline Button for Schedule a Call */
.cta-button--outline {
  background: transparent;
  border: 1px solid #494948;
  color: #494948;
  border-radius: 4px;
  box-shadow: none;
  height: 40px;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.cta-button--outline:hover {
  background: #f5f5f5;
  border: 1px solid #494948;
  color: #494948;
  transform: none;
}

.cta-button__text {
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
  font-weight: 600;
}

/* Footer CTA Button Group - Original Gradient Style */
.footer-cta-button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}

.footer-cta-button-group1 {
  box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.6) inset;
  border-radius: 60px;
  background: radial-gradient(50% 50% at 50% 50%, #e100ff, #4000a9);
  border: 1px solid #b700ff;
  box-sizing: border-box;
  height: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  min-width: 190px;
  z-index: 1;
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.footer-cta-button-group1:hover {
  box-shadow: 0px 0px 16px rgba(255, 255, 255, 0.8) inset;
  transform: translateY(-1px);
}

/* Primary Button Group */
.primary-button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}

/* Button Blur Effect */
.cta-button--primary::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background: radial-gradient(
    54.93% 131.82% at 49.74% 140.91%,
    #e100ff 0%,
    #4000a9 100%
  );
  border-radius: 60px;
  filter: blur(10px);
  z-index: -1;
}

.button-text {
  flex: 1;
  position: relative;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-icon-arrow {
  width: 21px;
  height: 10px;
}

/* ===== ACCORDION STYLES ===== */
.accordion {
  border: 1px solid #ccccca;
  border-left: none;
  border-right: none;
  display: flex;
  flex-direction: column;
  font-family: "Albert Sans", sans-serif;
}

.accordion-item {
  border-bottom: 1px solid #ccccca;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.accordion-item-header {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  margin: 0;
}

.accordion-item.active .accordion-item-header {
  opacity: 1;
}

.accordion-item-title {
  font-family: "Albert Sans", sans-serif;
  font-size: 32px;
  line-height: 120%;
  font-weight: 700;
  color: #290074;
  letter-spacing: -0.02em;
  flex: 1;
  transition: color 0.2s ease;
}

/* Accordion content styles moved to ai-nudge.css for better organization */

.accordion-icon {
  width: 40px;
  height: 40px;
  overflow: hidden;
  flex-shrink: 0;
}

/* ===== PLACEHOLDER STYLES ===== */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #ccccca;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 20px 20px 30px 0px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 0;
}

.placeholder__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* ===== FEATURE STYLES ===== */
.feature {
  padding: 0px 100px;
  display: flex;
  gap: 52px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1550px;
  position: relative;
}

.feature--column {
  flex-direction: column;
  gap: 80px;
  padding: 0px 70px;
}

.feature__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  min-width: 400px;
}

.feature__title {
  font-family: "Albert Sans", sans-serif;
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;
  margin: 0;
}

.feature__title--main {
  color: #290074;
}

.feature__title--highlight {
  color: #4000a9;
}

.feature__title--secondary {
  color: #342e77;
}

.feature__text {
  color: #616160;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  margin: 0;
}

.feature__label {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  border: 1px solid #4000a9;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.feature__label-text {
  color: #4000a9;
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .feature {
    padding: 0px 30px;
    flex-direction: column;
    gap: 40px;
  }

  .feature--column {
    padding: 0px 30px;
  }

  .feature__title {
    font-size: 28px;
  }

  .accordion-item-title {
    font-size: 24px;
  }

  .quiz-placeholder {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }

  .banners-placeholder {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }

  .badges-placeholder {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
  .badges-placeholder img,
  .quiz-placeholder img,
  .banners-placeholder img {
    width: 100%;
  }
}

/* ===== BUTTON SHADOW AND TEXT STYLES ===== */
.button-shadow {
  width: 100%;
  margin: 0 !important;
  position: absolute;
  right: 0px;
  bottom: -2px;
  left: 0px;
  filter: blur(6px);
  border-radius: 60px;
  background: radial-gradient(50% 50% at 50% 50%, #e100ff, #4000a9);
  border: 1px solid #b700ff;
  box-sizing: border-box;
  height: 48px;
  z-index: 0;
  opacity: 0.3;
  transition: opacity 0.2s ease;
  display: none;
}

.button-text,
.button-text2 {
  flex: 1;
  position: relative;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.button-text2 {
  white-space: pre-wrap;
  text-align: center;
}

.footer-cta-button-group:hover .button-shadow {
  opacity: 0.6;
}

/* ===== BUTTON STYLES ===== */
.large-button,
.large-button9 {
  border-radius: 60px;
  border: 1px solid #494948;
  box-sizing: border-box;
  height: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  min-width: 100px;
  color: #494948;
  background: transparent;
  outline: none;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.large-button:hover,
.large-button9:hover {
  background: #f5f5f5;
  border: 1px solid #494948;
  color: #494948;
}

.footer-cta-buttons {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 16px;
  color: #fff;
  font-family: "Albert Sans";
  flex-wrap: wrap;
}

.footer-cta-container {
  align-self: stretch;
  background-color: rgba(204, 204, 202, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.footer-cta {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-logo-icon {
  width: 271px;
  position: relative;
  max-height: 100%;
  overflow: hidden;
}

.join-3000-leaders {
  align-self: stretch;
  position: relative;
  line-height: 150%;
}

.enter-you-email {
  position: relative;
  line-height: 150%;
}

.footer-newsletter-input {
  width: 100%;
  border-radius: 60px;
  background-color: #fff;
  border: 1px solid #4000a9;
  box-sizing: border-box;
  height: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.footer-newsletter-button-shado {
  width: 100%;
  margin: 0 !important;
  position: absolute;
  right: 0px;
  bottom: -14px;
  left: 0px;
  filter: blur(6px);
  border-radius: 60px;
  background: radial-gradient(50% 50% at 50% 50%, #e100ff, #4000a9);
  border: 1px solid #b700ff;
  box-sizing: border-box;
  height: 60px;
  z-index: 1;
  display: none;
}

.footer-newsletter-button-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0.5;
  text-align: center;
  color: #fff;
}

.button-group {
  box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.6) inset;
  border-radius: 60px;
  background: radial-gradient(50% 50% at 50% 50%, #e100ff, #4000a9);
  border: 1px solid #b700ff;
  box-sizing: border-box;
  height: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  gap: 10px;
  width: 100%;
  z-index: 2;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-group:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 15px rgba(64, 0, 169, 0.3);
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  text-align: left;
  color: rgba(64, 0, 169, 0.5);
  width: 100%;
}

.footer-newsletter {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}

.footer-left-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0px 40px 0px 0px;
  gap: 60px;
}

.footer-menu-title {
  position: relative;
  line-height: 150%;
  font-weight: 500;
}

.footer-menu-item {
  position: relative;
  line-height: 200%;
}

.footer-menu-item6 {
  position: relative;
  line-height: 200%;
  white-space: pre-wrap;
}

.footer-menu-ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  color: #494948;
}

.footer-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  min-width: 252px;
}

.footer-menu-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 40px;
  min-width: 250px;
}

.footer-copyright-left {
  position: relative;
  letter-spacing: -0.02em;
  line-height: 140%;
}

.footer-copyright-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0px;
  color: rgba(73, 73, 72, 0.5);
  font-family: Inter;
}

.footer {
  align-self: stretch;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 80px 0px;
  box-sizing: border-box;
  min-width: 968px;
  font-size: 16px;
  color: #494948;
  font-family: "Albert Sans";
}

.footer-container {
  position: relative;
  width: 100%;
  margin: 132px auto 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 42px;
  font-family: Inter;
}

.button-icon {
  width: 20px;
  position: relative;
  max-height: 100%;
  overflow: hidden;
  flex-shrink: 0;
  margin-left: 10px;
}

.footer-cta-button-group1 {
  box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.6) inset;
  border-radius: 60px;
  background: radial-gradient(50% 50% at 50% 50%, #e100ff, #4000a9);
  border: 1px solid #b700ff;
  box-sizing: border-box;
  height: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  min-width: 100px;
  z-index: 1;
  position: relative;
}

.primary-button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}

.newsletter-description {
  color: #494948;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

.newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.newsletter-button__shadow {
  display: none;
}

.newsletter-button__text {
  font-weight: 600;
}

/* Footer Container and CTA Section Styles */
.footer-container {
  width: 100%;
  background: #fff;
}

.footer-cta {
  width: 100%;
  background-color: rgba(204, 204, 202, 0.5);
  padding: 0;
}

.footer-cta-wrapper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
  box-sizing: border-box;
}

.footer-cta-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* Additional Footer Styling */
.no-text {
  display: none;
}

/* Button Shadow Effects */
.button-shadow {
  position: absolute;
  top: 2px;
  left: 2px;
  right: -2px;
  bottom: -2px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: inherit;
  z-index: -1;
  display: none;
}

/* ===== BACKGROUND GRID PATTERN ===== */
.bg-grid {
  width: 100%;
  position: absolute;
  margin: 0 !important;
  height: auto;
  min-height: 100%;
  top: 0px;
  right: 0px;
  left: 0px;
  z-index: 0;
}

.bg-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  background-repeat: repeat;
  z-index: 0;
  pointer-events: none;
  /* Fade effect from opacity 1 to 0 at 1500px */
  mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-size: 2000px 600px;
  mask-position: top;
  mask-repeat: no-repeat;
}

/* Alternative implementation using opacity gradient */
.bg-grid--fade {
  position: relative;
  overflow: hidden;
}

.bg-grid--fade::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      to right,
      rgba(73, 73, 72, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(73, 73, 72, 0.1) 1px, transparent 1px);
  background-size: 10px 10px;
  background-repeat: repeat;
  z-index: 0;
  pointer-events: none;
  /* Radial fade from center outward */
  background-blend-mode: multiply;
  opacity: 1;
}

.bg-grid--fade::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1920px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    transparent 0%,
    transparent 750px,
    rgba(255, 255, 255, 1) 1500px
  );
  z-index: 1;
  pointer-events: none;
}

/* Content positioning */
.bg-grid > *:not(::before):not(::after),
.bg-grid--fade > *:not(::before):not(::after) {
  position: relative;
  z-index: 2;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
/* Organized in mobile-first approach to prevent overriding conflicts */
/* All media queries moved to bottom of file to prevent cascade issues */

/* Mobile Styles - max-width: 768px */
@media (max-width: 768px) {
  .header,
  .site-header {
    padding: 20px 10px;
    gap: 5px;
    justify-content: flex-start;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 0;
  }

  .site-logo {
    width: 150px;
    order: 1;
    margin-left: 0;
    flex-shrink: 0;
    margin-top: 5px;
  }

  .header-cta {
    order: 3;
    flex-shrink: 0;
    margin-left: auto;
  }

  .main-navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
      133.01deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.8) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: -4px 8px 20px 0px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: all 0.3s ease;
    order: 4;
  }

  .main-navigation.mobile-active {
    display: flex;
  }

  .main-navigation.mobile-active .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    max-width: none;
    justify-content: flex-start;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: 100px;
  }

  .main-navigation.mobile-active .nav-item {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: calc(100% - 40px);
    justify-content: space-between;
    max-width: 300px;
  }

  .main-navigation.mobile-active .nav-link {
    font-size: 18px;
    text-align: left;
    flex: 1;
    max-width: calc(100% - 32px);
  }

  /* Mobile dropdown styles */
  .nav-item--dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
  }

  .nav-item--dropdown .nav-link {
    width: auto;
    pointer-events: auto;
  }

  .nav-item--dropdown .dropdown-icon {
    pointer-events: auto;
    cursor: pointer;
    display: block;
    opacity: 1;
    visibility: visible;
  }

  /* Ensure dropdown icons are always visible in mobile navigation */
  .main-navigation.mobile-active .nav-item--dropdown .dropdown-icon {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 12px;
    height: auto;
    flex-shrink: 0;
    margin-left: auto;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    background: linear-gradient(
      133.01deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.8) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    border: 1px solid #b1b1af;
    margin: 8px 0;
    box-shadow: -4px 8px 20px 0px rgba(0, 0, 0, 0.25);
    display: none;
    padding: 20px 0;
    margin-left: 0;
  }

  .nav-item--dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    padding: 16px 24px;
    font-size: 16px;
    font-family: "Albert Sans", sans-serif;
    font-weight: 400;
    color: #616160;
    letter-spacing: -0.02em;
    text-align: left;
    margin: 0;
    border-radius: 4px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
  }

  .dropdown-item:hover {
    background: rgba(225, 0, 255, 0.15);
    color: #290074;
    transform: none;
  }

  /* Mobile dropdown arrow */
  .nav-item--dropdown .dropdown-icon {
    transform: rotate(0deg);
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.2s ease;
  }

  .nav-item--dropdown.active .dropdown-icon {
    transform: rotate(180deg);
  }

  .navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
      133.01deg,
      rgba(245, 245, 245, 0.5) 0%,
      rgba(255, 255, 255, 0.8) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: -4px 8px 20px 0px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: all 0.3s ease;
  }

  .navbar.mobile-active {
    display: flex;
  }

  .navbar.mobile-active .menu {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: none;
  }

  .navbar.mobile-active .product-parent {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .navbar.mobile-active .product {
    font-size: 18px;
    text-align: center;
  }

  .navbar.mobile-active .cta {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 16px;
  }

  .navbar {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .menu {
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
    align-items: center;
  }
  .menu,
  .nav-menu {
    justify-content: flex-start;
    margin-top: 150px;
  }
  .logo-icon {
    width: 150px;
  }

  .footer {
    padding: 40px 20px;
    min-width: auto;
  }
  .footer-container {
    margin-top: 80px;
  }

  .footer-wrapper {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }

  .footer-left,
  .footer-left-wrapper {
    padding: 0;
    align-items: center;
    width: 318px;
    align-self: center;
  }

  .footer-right,
  .footer-right-wrapper {
    width: 100%;
  }

  .footer-logo,
  .footer-logo-icon {
    width: 318px;
  }

  .footer-navigation,
  .footer-menu-wrapper {
    flex-direction: row;
    gap: 20px;
    min-width: auto;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-navigation--unified {
    width: 100%;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-nav-column {
    min-width: calc(25% - 15px);
    flex: 1;
  }

  .footer-nav-list--unified {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .footer-nav-item--category {
    margin-top: 20px;
    width: 100%;
  }

  .footer-nav-item--category:first-child {
    margin-top: 0;
  }

  .footer-nav-column,
  .footer-menu {
    min-width: calc(33.33% - 15px);
    flex: 1;
    margin-top: 20px;
  }

  .footer-cta-container {
    padding: 60px 20px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .footer-cta-wrapper {
    max-width: 100%;
    padding: 0 10px;
  }

  .footer-cta-title {
    font-size: 32px !important;
  }

  .footer-cta-text {
    font-size: 16px;
  }

  .footer-cta-buttons {
    flex-direction: row;
    gap: 20px;
  }

  .cta-button,
  .large-button9 {
    max-width: 325px;
  }

  .newsletter-section {
    align-items: center;
    text-align: center;
  }

  .footer-newsletter {
    align-items: center;
    text-align: center;
  }

  .newsletter-form,
  .footer-newsletter-form {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 318px;
    margin: 0 auto;
  }

  .newsletter-input,
  .footer-newsletter-input {
    width: 100%;
    height: 52px;
  }

  .newsletter-button,
  .footer-newsletter-button-group {
    width: 100%;
    height: 52px;
  }

  /* Maintain opacity behavior for all screen sizes */
  .newsletter-button--enabled,
  .newsletter-button.newsletter-button--enabled,
  .footer-newsletter-button-group.newsletter-button--enabled {
    opacity: 1 !important;
  }

  .newsletter-button:disabled,
  .newsletter-button[disabled],
  .footer-newsletter-button-group:disabled,
  .footer-newsletter-button-group[disabled] {
    opacity: 0.5 !important;
  }

  .footer-bottom,
  .footer-copyright-wrapper {
    flex-direction: row;
    gap: 20px;
    text-align: center;
    justify-content: space-between;
  }
}

/* Tablet Styles - Medium responsive design (769px-1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header {
    padding: 40px 50px;
  }

  .footer {
    padding: 60px 30px;
  }

  .footer-cta-container {
    padding: 60px 30px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .footer-cta-wrapper {
    max-width: 100%;
  }

  .footer-navigation--unified {
    gap: 40px;
  }

  .footer-nav-column {
    min-width: calc(50% - 20px);
  }

  .footer-nav-list--unified {
    gap: 15px 30px;
  }

  .footer-nav-item--category {
    margin-top: 25px;
  }
}

/* Desktop Styles - Base desktop design (≥1025px) */
@media screen and (min-width: 1025px) {
  /* Footer Navigation - Desktop specific styling - use columns for better layout */
  .footer-navigation,
  .footer-menu-wrapper {
    flex-direction: row;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-navigation--unified {
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }

  .footer-nav-column {
    min-width: 140px;
    flex: 1;
    max-width: calc(25% - 45px);
  }

  /* First column (Product) larger on desktop */
  .footer-nav-column:first-child {
    flex: 1.5;
    min-width: 180px;
    max-width: calc(34% - 45px);
  }

  /* Other columns auto-sized on desktop */
  .footer-nav-column:not(:first-child) {
    flex: 1;
    min-width: 140px;
    max-width: calc(22% - 45px);
  }

  .footer-nav-list--unified {
    column-count: 4;
    column-gap: 40px;
    column-fill: auto;
  }

  .footer-nav-item--category {
    break-inside: avoid;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .footer-nav-item--category:first-child {
    margin-top: 0;
  }

  .footer-nav-item {
    break-inside: avoid;
  }

  /* Footer CTA - Desktop padding and layout containment */
  .footer-cta-container {
    padding: 80px 40px;
    overflow: hidden;
    box-sizing: border-box;
  }
}

/* Desktop Large - Specific constraints (1025px-1280px) */
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .footer {
    padding: 80px 0px;
  }
}

/* Desktop Extra Large - Maximum width styles (≥1281px) */
@media screen and (min-width: 1281px) {
  .footer {
    padding: 80px 40px;
  }
}

/* Extra Small Screens - Specific mobile navigation adjustments (≤576px) */
@media (max-width: 576px) {
  .hero-section {
    margin-top: 0px;
  }
  .main-navigation.mobile-active .nav-menu {
    padding-left: 0;
    padding-right: 100px;
  }
  .footer-bottom,
  .footer-copyright-wrapper {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    text-align: left !important;
    justify-content: flex-start;
  }
}

/* Responsive Heading Styles */
@media (max-width: 768px) {
  .hero-section {
    margin-top: 0px;
  }
  h1 {
    font-size: 36px;
    line-height: 110%;
  }

  h2 {
    font-size: 32px;
    line-height: 110%;
  }

  h3 {
    font-size: 28px;
    line-height: 120%;
  }

  h4 {
    font-size: 22px;
    line-height: 120%;
  }

  h5 {
    font-size: 18px;
    line-height: 120%;
  }

  h6 {
    font-size: 16px;
    line-height: 120%;
  }
  .main-container {
    border: 0px;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 14px !important;
  }

  h1 {
    font-size: 30px;
    line-height: 110%;
  }

  h2 {
    font-size: 26px;
    line-height: 110%;
  }

  h3 {
    font-size: 22px;
    line-height: 120%;
  }

  h4 {
    font-size: 20px;
    line-height: 120%;
  }

  h5 {
    font-size: 18px;
    line-height: 120%;
  }

  h6 {
    font-size: 16px;
    line-height: 120%;
  }
  .main-container {
    border: 0px;
  }
  .footer-container {
    margin-top: 80px;
  }
  .nudge-card {
    padding: 7px !important;
  }
  .hero-text,
  .footer-nav-link,
  .footer-cta-text,
  .nudge-banner__text,
  .engine-text,
  .accordion-content,
  .nudge-feature-description,
  .nudge-feature-card-text,
  .nudge-feature-footer-text,
  .nudge-card-text__focus,
  .nudge-card-text__description,
  .nudge-card-inside-out-text,
  .nudge-inside-out-footer-text,
  .newsletter-description,
  .cta-button--outline {
    font-size: 14px !important;
  }
  .nudge-card-inside-out-title {
    font-size: 18px !important;
  }
  .accordion {
    align-items: center;
  }
  /* Center accordion content on small screens while maintaining icon-text alignment */
  .accordion-item-header,
  .accordion-item--active {
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 42px;
    line-height: 110%;
  }

  h2 {
    font-size: 36px;
    line-height: 110%;
  }

  h3 {
    font-size: 30px;
    line-height: 120%;
  }

  h4 {
    font-size: 26px;
    line-height: 120%;
  }

  h5 {
    font-size: 22px;
    line-height: 120%;
  }

  h6 {
    font-size: 20px;
    line-height: 120%;
  }
}
.cta-button--footer {
  background: transparent;
  border: 1px solid #494948;
  color: #494948;
  border-radius: 60px;
}

.cta-button--footer:hover {
  background: #f5f5f5;
  border: 1px solid #494948;
  color: #494948;
}

/* ===== MODAL STYLES ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  z-index: 10001;
}

.modal-close:hover {
  color: #000;
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    max-height: 95%;
  }

  .frame-1000008413 {
    height: auto;
    min-height: 751px;
  }

  .frame-1000008163,
  .frame-1000008169,
  .frame-1000008171,
  .frame-1000008414,
  .frame-1000008168,
  .frame-1000008165,
  .frame-10000084142 {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% - 80px);
    margin: 20px 40px;
  }

  .frame-10000084132 {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% - 40px);
    margin: 20px;
    text-align: center;
  }

  ._00-200 {
    left: auto;
    right: 20px;
    top: auto;
    bottom: 20px;
  }
}
