@charset "UTF-8";
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
body {
  background: #272727;
  color: #FFFFFF;
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.5px;
  font-style: normal;
}

strong {
  color: #693BEB;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Figtree", sans-serif;
  line-height: 1.2;
}

h1 {
  font-family: "Figtree", sans-serif;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.188rem);
  font-weight: 800;
  letter-spacing: 5%;
  line-height: 100%;
}

h2 {
  font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.875rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.125rem, 1.25vw + 0.75rem, 1.563rem);
}

h4 {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
}

h5 {
  font-size: clamp(0.875rem, 0.75vw + 0.5rem, 1rem);
}

.mediumText {
  font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.875rem);
  font-weight: 600;
}

.largeText {
  font-size: clamp(1.2rem, 0.4293rem + 3.3461vw, 5rem);
  font-weight: 600;
}
@media (max-width: 480px) {
  .largeText {
    font-size: clamp(1rem, 5vw, 2rem);
  }
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover, a:focus, a:active {
  color: #000000;
  text-decoration: none;
}

p {
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .size-full {
    width: 100%;
    height: auto;
  }
}

.btn-primary, .button {
  background: #693BEB url("../images/icons/button-arrow.svg") no-repeat scroll 98% center;
  border-color: #693BEB;
  color: #FFFFFF;
  border-radius: 100px;
  border: 1px solid #693BEB;
  padding: 0.625rem 55px 0.625rem 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 1.4px;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .button:hover, .button:focus, .button:active {
  background-color: #693BEB;
  background-position: 99% center;
  border: 1px solid #693BEB;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .btn-primary, .button {
    padding: 0.625rem 30px 0.625rem 1.25rem;
  }
}

.btn-secondary {
  background: #3f7f36;
  border: none;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  background: #000000;
  border: none;
}
@media (max-width: 768px) {
  .btn-secondary {
    padding: 0.625rem 30px 0.625rem 1.25rem;
  }
}

.btn-purple .wp-block-button__link {
  background: #693BEB url("../images/icons/button-arrow.svg") no-repeat scroll 98% center;
  border-color: #693BEB;
  color: #FFFFFF;
  border-radius: 100px;
  padding: 0.625rem 55px 0.625rem 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 1.4px;
}
.btn-purple .wp-block-button__link:hover, .btn-purple .wp-block-button__link:focus, .btn-purple .wp-block-button__link:active {
  background-position: 99% center;
  border-color: #693BEB;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .btn-purple .wp-block-button__link {
    padding: 0.625rem 30px 0.625rem 1.25rem;
  }
}

.btnCircle {
  border: 1px solid #4AE7BA;
  border-radius: 25px;
  padding: 0.5rem;
  width: 73px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4AE7BA;
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 4.2px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.wp-block-button__link {
  background: #FFBE67 url("../images/icons/button-arrow.svg") no-repeat scroll 98% center;
  color: #272727;
  border-radius: 100px;
  padding: 0.625rem 55px 0.625rem 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 1.4px;
}
.wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link:active {
  background-position: 99% center;
  border: none;
  color: #272727;
}
@media (max-width: 768px) {
  .wp-block-button__link {
    padding: 0.625rem 55px 0.625rem 1.25rem;
  }
}

[class$=__cta-btn] .wp-block-button__link {
  background-color: transparent;
}

.bgWhite {
  background: #FFFFFF !important;
  color: #272727 !important;
}

.whiteText {
  color: #FFFFFF !important;
}

.blackText {
  color: #272727 !important;
}

.bgGray {
  background: #272727 !important;
  color: #ffffff !important;
}
.bgGray .wp-block-button__link {
  background-color: #693BEB;
  color: #ffffff;
}
.bgGray .wp-block-button__link:hover, .bgGray .wp-block-button__link:focus, .bgGray .wp-block-button__link:active {
  color: #ffffff;
}
.bgGray h1, .bgGray h2, .bgGray h3, .bgGray h4, .bgGray h5, .bgGray h6, .bgGray strong {
  color: #ffffff;
}

.bgInspire {
  background: #693BEB !important;
  color: #ffffff !important;
}
.bgInspire .wp-block-button__link {
  background-color: #FFFFFF;
}
.bgInspire .wp-block-button__link:hover, .bgInspire .wp-block-button__link:focus, .bgInspire .wp-block-button__link:active {
  color: #272727;
}
.bgInspire h1, .bgInspire h2, .bgInspire h3, .bgInspire h4, .bgInspire h5, .bgInspire h6, .bgInspire strong {
  color: #ffffff;
}

.maxWidth {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1400px;
}

.bgFlow {
  background: #4AE7BA !important;
}
.bgFlow .wp-block-button__link {
  background-color: #FFFFFF;
}
.bgFlow .wp-block-button__link:hover, .bgFlow .wp-block-button__link:focus, .bgFlow .wp-block-button__link:active {
  color: #272727;
}
.bgFlow h1, .bgFlow h2, .bgFlow h3, .bgFlow h4, .bgFlow h5, .bgFlow h6, .bgFlow strong {
  color: #ffffff;
}

.colorBlack {
  color: #000000 !important;
}
.colorBlack strong {
  color: #000000 !important;
}

.colorFlow {
  color: #4AE7BA !important;
}

.bgBridge {
  background: #FFBE67 !important;
  color: #ffffff !important;
}
.bgBridge .wp-block-button__link {
  background-color: #FFFFFF;
  color: #272727;
}
.bgBridge .wp-block-button__link:hover, .bgBridge .wp-block-button__link:focus, .bgBridge .wp-block-button__link:active {
  color: #272727;
}
.bgBridge h1, .bgBridge h2, .bgBridge h3, .bgBridge h4, .bgBridge h5, .bgBridge h6, .bgBridge strong {
  color: #ffffff;
}

.overflowElement {
  position: absolute;
}
@media (max-width: 768px) {
  .overflowElement {
    position: relative;
  }
}

.overflowWrap {
  margin-bottom: 150px;
  min-height: 575px;
  padding: 50px !important;
}
@media (max-width: 768px) {
  .overflowWrap {
    margin-bottom: 50px;
    min-height: auto;
    padding: 15px !important;
  }
}

.Circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: transparent;
  background-size: contain;
  border: 1px solid #ffffff;
  border-radius: 50%;
}

.has-dark-background-color {
  background-color: #272727 !important;
}

.flexDiv {
  min-height: 400px;
  align-content: center;
}

.mt-6 {
  padding: 6.5rem 1rem 5rem;
}

.p-6 {
  padding: 5rem !important;
}
@media (max-width: 768px) {
  .p-6 {
    padding: 2rem 1rem !important;
  }
}

.section-pad {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .section-pad {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.section-pad-lg {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media (max-width: 768px) {
  .section-pad-lg {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.bg-secondary {
  background-color: #FFBE67 !important;
}
.bg-secondary a {
  color: #272727;
}
.bg-secondary a:hover, .bg-secondary a:focus, .bg-secondary a:active {
  color: #272727;
}

@media (max-width: 768px) {
  .wp-block-group:not(.no-pad),
  .wp-block-cover:not(.no-pad),
  [class*=__section]:not(.no-pad),
  [class*=-section]:not(.no-pad) {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
#back-to-top {
  background-image: none;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
}
#back-to-top:hover > .fas {
  animation: bounce 1s ease;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
}
/**
 * Header Component Styles
 *
 * Responsive header navigation with backdrop blur effect,
 * logo, menu toggle, and chat button.
 *
 * @package IndieTech
 * @since 1.0.0
 */
/**
 * Main header container
 *
 * Sticky header with backdrop blur and semi-transparent background
 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: rgba(2, 0, 21, 0.5);
  /**
   * Header inner container
   *
   * Constrains content and manages flexbox layout
   */
}
.header__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

/**
 * Logo section
 *
 * Contains the IndieTech icon/logo
 */
.header__logo {
  position: relative;
  z-index: 10;
  /**
   * Logo link wrapper
   */
  /**
   * Logo image
   */
}
.header__logo-link {
  display: inline-block;
  line-height: 0;
  transition: opacity 0.3s ease;
}
.header__logo-link:hover, .header__logo-link:focus {
  opacity: 0.8;
}
.header__logo-link:focus {
  outline: 2px solid #4AE7BA;
  outline-offset: 4px;
}
@media (max-width: 768px) {
  .header__logo-link {
    max-width: 35px;
  }
}
.header__logo-image {
  display: block;
  width: 53px;
  height: auto;
  max-width: 100%;
}

/**
 * Navigation container
 *
 * Houses menu toggle and chat button
 */
.header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

/**
 * Menu toggle button
 *
 * Opens/closes the main navigation menu
 */
.header__menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 1rem 1.5rem;
  transition: opacity 0.3s ease;
  /**
   * Menu button text
   */
}
.header__menu-toggle:hover, .header__menu-toggle:focus {
  opacity: 0.8;
}
.header__menu-toggle:focus {
  outline: 2px solid #4AE7BA;
  outline-offset: 2px;
}
.header__menu-toggle-text {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 0.875rem;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  line-height: 1;
}

.header__menu-text {
  display: block;
}

/**
 * Chat button
 *
 * Opens the chat/contact interface
 */
.header__chat-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: none;
  border-radius: 50%;
  color: #693BEB;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  /**
   * Chat icon wrapper
   */
}
.header__chat-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: #4AE7BA;
  color: #FFFFFF;
}
.header__chat-button:focus {
  outline: 2px solid #4AE7BA;
  outline-offset: 2px;
}
.header__chat-button:active {
  transform: translateY(0);
}
.header__chat-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.header__chat-button-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/**
 * Tablet and below
 */
@media (max-width: 992px) {
  .header {
    height: 80px;
  }
  .header__container {
    padding: 0 1.5rem;
  }
  .header__logo-image {
    width: 45px;
  }
  .header__nav {
    gap: 1rem;
  }
  .header__menu-toggle {
    padding: 0.5rem 1rem;
  }
  .header__menu-toggle-text {
    font-size: 12px;
    letter-spacing: 1.8px;
  }
  .header__chat-button {
    width: 36px;
    height: 36px;
  }
  .header__chat-button-icon {
    width: 20px;
    height: 20px;
  }
}
/**
 * Mobile
 */
@media (max-width: 768px) {
  .header {
    height: 60px;
  }
  .header__container {
    padding: 0 1rem;
  }
  .header__logo-image {
    width: 40px;
  }
  .header__nav {
    gap: 0.5rem;
  }
  .header__menu-toggle {
    padding: 0.5rem;
  }
  .header__menu-toggle-text {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .header__chat-button {
    width: 32px;
    height: 32px;
  }
  .header__chat-button-icon {
    width: 18px;
    height: 18px;
  }
}
/**
 * Small mobile
 */
@media (max-width: 480px) {
  .header__container {
    padding: 0 1rem;
  }
  .header__logo-image {
    width: 35px;
  }
  .header__menu-toggle-text {
    font-size: 10px;
    letter-spacing: 1.2px;
  }
}
/**
 * Menu open state
 *
 * Applied when mobile menu is expanded
 */
.header--menu-open .header__menu-toggle {
  color: #4AE7BA;
}

/**
 * Scrolled state
 *
 * Applied when page is scrolled, can add additional effects
 */
.header--scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/**
 * Navigation menu overlay
 *
 * Full-screen navigation that appears when menu toggle is clicked.
 * Features centered navigation links, connect CTA, and watermark background.
 *
 * @since 1.0.0
 */
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  /**
   * Active state
   */
  /**
   * Overlay background
   */
}
.nav-menu--active {
  visibility: visible;
  opacity: 1;
}
.nav-menu__overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: #693BEB;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

/**
 * Navigation menu header
 *
 * Contains logo, close button, and chat button
 */
.nav-menu__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

/**
 * Navigation menu logo
 */
.nav-menu__logo {
  z-index: 10;
}
.nav-menu__logo-link {
  display: inline-block;
  line-height: 0;
  transition: opacity 0.3s ease;
}
.nav-menu__logo-link:hover, .nav-menu__logo-link:focus {
  opacity: 0.8;
}
.nav-menu__logo-link:focus {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}
.nav-menu__logo-image {
  display: block;
  width: 49px;
  height: auto;
}

/**
 * Close button
 */
.nav-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 1rem 1.5rem;
  margin-left: auto;
  margin-right: 1.5rem;
  transition: opacity 0.3s ease;
}
.nav-menu__close:hover, .nav-menu__close:focus {
  opacity: 0.8;
}
.nav-menu__close:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.nav-menu__close-text {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 0.875rem;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  line-height: 1;
}

/**
 * Navigation menu chat button
 */
.nav-menu__chat-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  color: #693BEB;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.nav-menu__chat-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: #4AE7BA;
  color: #ffffff;
}
.nav-menu__chat-button:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.nav-menu__chat-button:active {
  transform: translateY(0);
}
.nav-menu__chat-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.nav-menu__chat-button-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/**
 * Navigation links container
 */
.nav-menu__links {
  position: relative;
  z-index: 10;
  margin-bottom: 4rem;
}

/**
 * Navigation list
 */
.nav-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 4rem;
}

/**
 * Navigation list item
 */
.nav-menu__item {
  margin: 0;
  padding: 0;
}

/**
 * Navigation link
 */
.nav-menu__link {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 4.2px;
  line-height: 1;
  transition: all 0.3s ease;
  position: relative;
  /**
   * Link text spans
   */
}
.nav-menu__link:hover, .nav-menu__link:focus {
  color: #4AE7BA;
  transform: translateY(-2px);
}
.nav-menu__link:focus {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}
.nav-menu__link-text--bold {
  font-weight: 900;
}

.current_page_item > .nav-menu__link, .current-menu-item > .nav-menu__link {
  color: #4AE7BA;
}

/**
 * Connect CTA container
 */
.nav-menu__cta {
  position: relative;
  z-index: 10;
  margin-top: 2.5rem;
}

/**
 * Connect CTA button
 */
.nav-menu__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  color: #272727;
  border: none;
  border-radius: 100px;
  padding: 1rem 2rem;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.nav-menu__cta-button:hover, .nav-menu__cta-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  background: #4AE7BA;
  color: #ffffff;
}
.nav-menu__cta-button:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.nav-menu__cta-button:active {
  transform: translateY(0);
}

/**
 * Connect CTA text
 */
.nav-menu__cta-text {
  display: block;
  line-height: 1;
}

/**
 * Connect CTA icon
 */
.nav-menu__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #272727;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}
.nav-menu__cta-icon i {
  background: transparent url("../images/icons/arrow-circle-white.svg") center center no-repeat;
  width: 24px;
  height: 24px;
  display: block;
}
.nav-menu__cta-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-menu__cta-button:hover .nav-menu__cta-icon,
.nav-menu__cta-button:focus .nav-menu__cta-icon {
  background: #ffffff;
  color: #4AE7BA;
}
.nav-menu__cta-button:hover .nav-menu__cta-icon i,
.nav-menu__cta-button:focus .nav-menu__cta-icon i {
  background-image: url("../images/icons/arrow-circle-black.svg");
}

/**
 * Background watermark
 *
 * Large "indietech" text in background with reduced opacity
 */
.nav-menu__watermark {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1436px;
  height: auto;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}
.nav-menu__watermark-image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

/**
 * Tablet and below
 */
@media (max-width: 992px) {
  .nav-menu__overlay {
    padding: 2rem;
  }
  .nav-menu__header {
    padding: 1.5rem;
  }
  .nav-menu__logo-image {
    width: 42px;
  }
  .nav-menu__close {
    padding: 0.5rem 1rem;
    margin-right: 1rem;
  }
  .nav-menu__close-text {
    font-size: 12px;
    letter-spacing: 1.8px;
  }
  .nav-menu__chat-button {
    width: 36px;
    height: 36px;
  }
  .nav-menu__chat-button-icon {
    width: 20px;
    height: 20px;
  }
  .nav-menu__list {
    gap: 2rem 2.5rem;
  }
  .nav-menu__link {
    font-size: 2rem;
    letter-spacing: 3.2px;
  }
  .nav-menu__cta {
    margin-top: 2rem;
  }
}
/**
 * Mobile
 */
@media (max-width: 768px) {
  .nav-menu__overlay {
    padding: 1.5rem;
  }
  .nav-menu__header {
    padding: 1rem 1.5rem;
  }
  .nav-menu__logo-image {
    width: 38px;
  }
  .nav-menu__close {
    padding: 0.5rem;
  }
  .nav-menu__close-text {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .nav-menu__chat-button {
    width: 32px;
    height: 32px;
  }
  .nav-menu__chat-button-icon {
    width: 18px;
    height: 18px;
  }
  .nav-menu__links {
    margin-bottom: 2.5rem;
  }
  .nav-menu__list {
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-menu__link {
    font-size: 1.875rem;
    letter-spacing: 3.2px;
  }
  .nav-menu__cta {
    margin-top: 1.5rem;
  }
  .nav-menu__cta-button {
    padding: 0.5rem 1.5rem;
    font-size: 12px;
    letter-spacing: 1.2px;
  }
  .nav-menu__cta-icon {
    width: 20px;
    height: 20px;
  }
}
/**
 * Small mobile
 */
@media (max-width: 480px) {
  .nav-menu__overlay {
    padding: 1rem;
  }
  .nav-menu__logo-image {
    width: 32px;
  }
  .nav-menu__close-text {
    font-size: 10px;
    letter-spacing: 1.2px;
  }
  .nav-menu__link {
    font-size: 1.625rem;
    letter-spacing: 1.6px;
  }
  .nav-menu__cta-button {
    font-size: 11px;
  }
  .nav-menu__watermark {
    max-width: 100%;
    bottom: -50px;
  }
}
/**
 * Top bar (topbar-header sidebar) inside the header.
 * Hidden at mobile to prevent layout disruption inside the fixed-height header.
 */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/**
    * Navigation Styles
*/
#topBar {
  color: white;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  #topBar .fa-solid {
    font-size: 1.5rem;
  }
}

.navigation {
  padding: 20px 0;
}
.navigation .nav-links {
  display: flex;
  font-size: 1rem;
  justify-content: space-between;
  align-items: center;
}
.navigation .nav-links .nav-previous {
  text-align: left;
  padding-left: 20px;
}
@media (max-width: 500px) {
  .navigation .nav-links .nav-previous {
    padding-left: 10px;
  }
}
.navigation .nav-links .nav-next {
  text-align: right;
  padding-right: 20px;
}
@media (max-width: 500px) {
  .navigation .nav-links .nav-next {
    padding-right: 10px;
  }
}

.navbar-nav .nav-link {
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  position: relative;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus, .navbar-nav .nav-link:active {
  color: #000000 !important;
  text-decoration: none;
}
.navbar-nav .nav-link:hover:after, .navbar-nav .nav-link:focus:after, .navbar-nav .nav-link:active:after {
  width: 100%;
}
.navbar-nav .nav-link:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3f7f36;
  transition: width 0.3s ease;
  -webkit-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
}
.navbar-nav .current-menu-item > .nav-link {
  color: #000000 !important;
}
.navbar-nav .current-menu-item > .nav-link:after {
  width: 100%;
}

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

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

.grid-x {
  display: flex;
  flex-wrap: wrap;
}
.grid-x .small-6 {
  width: 50%;
}
@media screen and (max-width: 639px) {
  .grid-x .small-6 {
    width: 100%;
  }
}

.faq-sidebar {
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 4px;
}
.faq-sidebar h3 {
  margin-bottom: 0.5rem;
  color: #693BEB;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  font-weight: 700;
}

.faq-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.faq-category-list li {
  margin-bottom: 0.5rem;
}
.faq-category-list li:last-child {
  margin-bottom: 0;
}
.faq-category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 3px;
  transition: all 0.2s ease;
  color: #272727;
}
.faq-category-list li a:hover {
  background: rgba(250, 250, 250, 0.1);
  padding-left: 1rem;
  text-decoration: none;
}
.faq-category-list li.is-active a {
  font-weight: 700;
  color: #fafafa;
  background: rgba(250, 250, 250, 0.05);
}
.faq-category-list .badge {
  background: rgba(108, 117, 125, 0.1);
  margin-left: auto;
  font-size: 0.75rem;
}

.accordion {
  list-style: none outside none;
  margin-left: 0;
}

.faq-item {
  border-bottom: 1px solid #e6e6e6;
  border-left: none;
  border-right: none;
  border-top: none;
  transition: background-color 0.2s ease;
}
.faq-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.faq-item.is-active {
  border-bottom: 2px solid #693BEB;
}
.faq-item.is-active .accordion-title:before {
  transform: translateY(-50%) rotate(-90deg);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item.faq-featured {
  background: #fffbf0;
}
.faq-item.faq-featured .accordion-title {
  font-weight: 600;
}
.faq-item.search-hidden {
  display: none;
}

.faq-star {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1rem;
  vertical-align: middle;
}

.faq-category-badge {
  display: inline-block;
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 400;
  padding: 0.25rem 0.5rem;
  background: rgba(108, 117, 125, 0.1);
  border-radius: 3px;
  margin-left: 0.5rem;
}
@media screen and (max-width: 639px) {
  .faq-category-badge {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.faq-accordion .accordion-title,
.faq-shortcode-accordion .accordion-title,
.faq-widget-accordion .accordion-title {
  display: block;
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  line-height: normal;
  padding: 1rem 1.5rem 1rem 0;
  background: #272727;
  border: none;
  color: #ffffff;
  transition: all 0.2s ease;
  position: relative;
}
.faq-accordion .accordion-title:hover,
.faq-shortcode-accordion .accordion-title:hover,
.faq-widget-accordion .accordion-title:hover {
  background: #272727;
  color: #693BEB;
}
.faq-accordion .accordion-title:focus,
.faq-shortcode-accordion .accordion-title:focus,
.faq-widget-accordion .accordion-title:focus {
  background: #272727;
  border-top: 2px solid #693BEB;
  outline: none;
}
.faq-accordion .accordion-title::before,
.faq-shortcode-accordion .accordion-title::before,
.faq-widget-accordion .accordion-title::before {
  background: transparent url("../images/icons/button-arrow-white.svg") no-repeat scroll top center;
  background-size: cover;
  border-radius: 50%;
  content: " ";
  height: 35px;
  width: 35px;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.25s ease;
}
.faq-accordion .accordion-content,
.faq-shortcode-accordion .accordion-content,
.faq-widget-accordion .accordion-content {
  display: none;
  padding: 0 1.5rem 1.5rem;
  background: #272727;
  border: none;
  color: #ffffff;
  line-height: 1.7;
}
.faq-accordion .accordion-content p,
.faq-shortcode-accordion .accordion-content p,
.faq-widget-accordion .accordion-content p {
  margin-bottom: 1rem;
}
.faq-accordion .accordion-content p:last-child,
.faq-shortcode-accordion .accordion-content p:last-child,
.faq-widget-accordion .accordion-content p:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion-content ul, .faq-accordion .accordion-content ol,
.faq-shortcode-accordion .accordion-content ul,
.faq-shortcode-accordion .accordion-content ol,
.faq-widget-accordion .accordion-content ul,
.faq-widget-accordion .accordion-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.faq-accordion .accordion-content a:hover,
.faq-shortcode-accordion .accordion-content a:hover,
.faq-widget-accordion .accordion-content a:hover {
  color: rgb(224.5, 224.5, 224.5);
}
.faq-accordion .accordion-content .faq-helpful,
.faq-shortcode-accordion .accordion-content .faq-helpful,
.faq-widget-accordion .accordion-content .faq-helpful {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e6e6e6;
}
.faq-accordion .accordion-content .faq-helpful small,
.faq-shortcode-accordion .accordion-content .faq-helpful small,
.faq-widget-accordion .accordion-content .faq-helpful small {
  color: #693BEB;
}

.faq-search {
  margin-bottom: 1.5rem;
}
.faq-search .input-group {
  margin-bottom: 0;
}
.faq-search .input-group-field {
  border-radius: 4px 0 0 4px;
  border-right: none;
}
.faq-search .input-group-field:focus {
  border-color: #fafafa;
  box-shadow: 0 0 0 1px #fafafa;
}
.faq-search .input-group-button .button {
  margin-bottom: 0;
  border-radius: 0 4px 4px 0;
}
.faq-search .input-group-button .button .fa-search {
  font-size: 1rem;
}

.faq-no-results {
  animation: fadeIn 0.3s ease;
}
.faq-no-results h4 {
  color: #ffc107;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.faq-related-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e6e6e6;
}
.faq-related-list li:last-child {
  border-bottom: none;
}
.faq-related-list a {
  display: block;
  transition: padding-left 0.2s ease;
  color: #272727;
}
.faq-related-list a:hover {
  padding-left: 0.5rem;
  color: #fafafa;
  text-decoration: none;
}
.faq-related-list a .fa-question-circle {
  margin-right: 0.5rem;
  color: #fafafa;
}

.gchh-faq-widget .widget-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.gchh-faq-widget .menu {
  margin-bottom: 1rem;
}
.gchh-faq-widget .menu li a {
  padding: 0.5rem 0;
}
.gchh-faq-widget .menu li a .fa-question-circle {
  margin-right: 0.5rem;
  color: #fafafa;
}
.gchh-faq-widget .menu li a small {
  display: block;
  margin-top: 0.25rem;
  color: #693BEB;
}
.gchh-faq-widget .accordion {
  margin-bottom: 1rem;
}
.gchh-faq-widget .accordion .accordion-title {
  font-size: 1rem;
  padding: 0.75rem 1rem;
}
.gchh-faq-widget .accordion .accordion-content {
  padding: 1rem;
  font-size: 0.9rem;
}
.gchh-faq-widget .button {
  margin-top: 1rem;
}

.faq-shortcode-wrapper {
  margin: 2rem 0;
}
.faq-shortcode-wrapper ul {
  list-style: none outside none;
  margin-left: 0;
  padding: 0;
}
.faq-shortcode-wrapper .faq-shortcode-list li a {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e6e6e6;
  display: block;
  transition: padding-left 0.2s ease;
}
.faq-shortcode-wrapper .faq-shortcode-list li a:hover {
  padding-left: 0.5rem;
  text-decoration: none;
}
.faq-shortcode-wrapper .faq-shortcode-list li a .fa-question-circle {
  margin-right: 0.5rem;
  color: #fafafa;
}
.faq-shortcode-wrapper .faq-shortcode-list li a small {
  display: block;
  margin-top: 0.25rem;
  color: #693BEB;
}
.faq-shortcode-wrapper .grid-x .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.faq-shortcode-wrapper .grid-x .card.faq-featured {
  border-top: 3px solid #f0b849;
}
.faq-shortcode-wrapper .grid-x .card .card-section:first-child {
  flex: 1;
}
.faq-shortcode-wrapper .grid-x .card .card-section h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.faq-shortcode-wrapper .grid-x .card .card-section .badge {
  margin-right: 0.5rem;
}

.faq-content {
  font-size: 1.05rem;
  line-height: 1.8;
}
.faq-content h2, .faq-content h3, .faq-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.faq-content p {
  margin-bottom: 1.25rem;
}
.faq-content ul, .faq-content ol {
  margin-left: 2rem;
  margin-bottom: 1.25rem;
}
.faq-content ul li, .faq-content ol li {
  margin-bottom: 0.5rem;
}
.faq-content code {
  background: #f8f9fa;
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  font-size: 0.9em;
}
.faq-content pre {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
}

.breadcrumbs {
  margin-bottom: 1.5rem;
  padding: 0.75rem 0;
}
.breadcrumbs li {
  color: #693BEB;
}
.breadcrumbs li:not(:last-child)::after {
  color: #ced4da;
}
.breadcrumbs li a {
  color: #fafafa;
}
.breadcrumbs li a:hover {
  text-decoration: underline;
}

.callout {
  padding: 20px;
}
.callout.primary {
  border-left: 4px solid #fafafa;
}
.callout.primary h3, .callout.primary h4, .callout.primary h5 {
  color: #fafafa;
}
.callout.secondary {
  border-left: 4px solid #6c757d;
}
.callout.warning {
  border-left: 4px solid #ffc107;
}

@media screen and (max-width: 639px) {
  .faq-sidebar {
    margin-bottom: 1.5rem;
  }
  .faq-accordion .accordion-title,
  .faq-shortcode-accordion .accordion-title {
    font-size: 1rem;
    padding: 0.875rem 3rem 0.875rem 1rem;
  }
  .faq-accordion .accordion-title::before,
  .faq-shortcode-accordion .accordion-title::before {
    right: 1rem;
  }
  .faq-accordion .accordion-content,
  .faq-shortcode-accordion .accordion-content {
    padding: 1rem;
  }
  .callout.primary .button {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .callout.primary .button:last-child {
    margin-bottom: 0;
  }
  .faq-search .input-group {
    flex-wrap: wrap;
  }
  .faq-search .input-group .input-group-field,
  .faq-search .input-group .input-group-button {
    width: 100%;
  }
  .faq-search .input-group .input-group-field {
    border-radius: 4px 4px 0 0;
    border-right: 1px solid #ced4da;
  }
  .faq-search .input-group .input-group-button .button {
    border-radius: 0 0 4px 4px;
    width: 100%;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .faq-category-badge {
    font-size: 0.7rem;
  }
  .faq-accordion .accordion-title {
    font-size: 1rem;
  }
}
@media print {
  .faq-sidebar,
  .faq-search,
  .button,
  .callout.primary,
  .faq-category-badge,
  .faq-star,
  .breadcrumbs {
    display: none !important;
  }
  .faq-accordion .accordion-content,
  .faq-shortcode-accordion .accordion-content {
    display: block !important;
    padding: 0 0 1rem 0;
  }
  .faq-accordion .accordion-title,
  .faq-shortcode-accordion .accordion-title {
    font-weight: 700;
    padding: 0.5rem 0;
    background: none !important;
  }
  .faq-accordion .accordion-title::before,
  .faq-shortcode-accordion .accordion-title::before {
    display: none !important;
  }
  .faq-item {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    page-break-inside: avoid;
    border-bottom: 2px solid #ccc;
    padding: 0.5rem 0;
  }
  a {
    text-decoration: none;
    color: #000;
  }
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
}
.faq-accordion .accordion-title:focus-visible,
.faq-shortcode-accordion .accordion-title:focus-visible {
  outline: 3px solid #fafafa;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-contrast: high) {
  .faq-item {
    border-bottom-width: 2px;
  }
  .faq-accordion .accordion-title:focus {
    outline-width: 3px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.faq-archive-wrapper {
  margin-bottom: 2rem;
}

.faq-search-section {
  margin-bottom: 2rem;
}
.faq-search-section .input-group {
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.faq-search-section .input-group .input-group-field {
  font-size: 1.05rem;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e6e6e6;
  border-right: none;
  border-radius: 4px 0 0 4px;
}
.faq-search-section .input-group .input-group-field:focus {
  border-color: #fafafa;
  box-shadow: none;
}
.faq-search-section .input-group .input-group-field::-moz-placeholder {
  color: rgb(175.8333333333, 151.5555555556, 244.4444444444);
}
.faq-search-section .input-group .input-group-field::placeholder {
  color: rgb(175.8333333333, 151.5555555556, 244.4444444444);
}
.faq-search-section .input-group .input-group-button .button {
  background-image: none;
  font-size: 1.05rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 0;
  transition: all 0.2s ease;
}
.faq-search-section .input-group .input-group-button .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(250, 250, 250, 0.3);
}
.faq-search-section .input-group .input-group-button .button .fa {
  margin-right: 0.25rem;
}

.faq-category-tabs {
  margin-bottom: 2rem;
}
.faq-category-tabs .tabs {
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  list-style: none outside none;
  padding: 0;
}
.faq-category-tabs .tabs .tabs-title {
  margin-bottom: 0;
}
.faq-category-tabs .tabs .tabs-title a {
  padding: 0.875rem 1.5rem;
  color: #ffffff;
  border-bottom: 3px solid transparent;
  display: block;
  transition: all 0.2s ease;
  font-weight: 500;
}
.faq-category-tabs .tabs .tabs-title a:hover {
  background: #272727;
  color: #fafafa;
}
.faq-category-tabs .tabs .tabs-title a .badge {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  background: rgba(108, 117, 125, 0.1);
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
}
.faq-category-tabs .tabs .tabs-title.is-active a {
  color: #fafafa;
  border-bottom-color: #fafafa;
  font-weight: 700;
}
@media screen and (max-width: 639px) {
  .faq-category-tabs .tabs .tabs-title a {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  .faq-category-tabs .tabs .tabs-title a .badge {
    font-size: 0.7rem;
  }
}

.faq-help-section {
  margin-top: 3rem;
  text-align: center;
}
.faq-help-section h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.faq-help-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.faq-help-section .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(250, 250, 250, 0.3);
}

.faq-single .faq-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e6e6e6;
}
.faq-single .faq-meta span {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  color: #693BEB;
}
.faq-single .faq-meta span .fa {
  margin-right: 0.5rem;
  color: #fafafa;
}
.faq-single .faq-meta .faq-featured-badge {
  background: #fffbf0;
  color: #f0b849;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  font-weight: 600;
}
.faq-single .faq-question h1, .faq-single h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 639px) {
  .faq-single .faq-question h1, .faq-single h2 {
    font-size: 1.5rem;
  }
}
.faq-single .faq-answer {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.faq-related-section {
  margin: 1rem 0;
  padding: 1rem;
  background: #f5f5f5;
  border-radius: 8px;
}
.faq-related-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq-navigation {
  margin: 1rem 0;
}
.faq-navigation .button .fa {
  transition: transform 0.2s ease;
}
.faq-navigation .button:hover .fa-arrow-left {
  transform: translateX(-4px);
}
.faq-navigation .button:hover .fa-arrow-right {
  transform: translateX(4px);
}

.widget_indietech_faq_widget .widgettitle {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #fafafa;
}
.widget_indietech_faq_widget .faq-widget-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget_indietech_faq_widget .faq-widget-list li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e6e6e6;
}
.widget_indietech_faq_widget .faq-widget-list li:last-child {
  border-bottom: none;
}
.widget_indietech_faq_widget .faq-widget-list li a {
  display: flex;
  align-items: center;
  transition: padding-left 0.2s ease;
}
.widget_indietech_faq_widget .faq-widget-list li a:hover {
  padding-left: 0.5rem;
  color: #fafafa;
  text-decoration: none;
}
.widget_indietech_faq_widget .faq-widget-card {
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.widget_indietech_faq_widget .faq-widget-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.widget_indietech_faq_widget .faq-widget-card.faq-featured {
  border-top: 2px solid #f0b849;
}

.faq-shortcode-wrapper .faq-list-simple {
  list-style: none;
  margin: 0;
  padding: 0;
}
.faq-shortcode-wrapper .faq-list-simple li a {
  display: flex;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid #e6e6e6;
  transition: padding-left 0.2s ease;
}
.faq-shortcode-wrapper .faq-list-simple li a:hover {
  padding-left: 0.75rem;
  color: #fafafa;
  text-decoration: none;
}
.faq-shortcode-wrapper .faq-card {
  height: 100%;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.faq-shortcode-wrapper .faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.faq-shortcode-wrapper .faq-card.faq-featured {
  border-top: 4px solid #f0b849;
}

.faq-category-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(108, 117, 125, 0.1);
  padding: 0.25rem 0.625rem;
  border-radius: 12px;
  margin-left: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 639px) {
  .faq-category-label {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.faq-accordion .accordion-content,
.faq-widget-accordion .accordion-content {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-featured .fa-star {
  animation: pulse 2s ease-in-out infinite;
  color: #f0b849;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.faq-loading {
  text-align: center;
  padding: 2rem;
}
.faq-loading::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border: 3px solid #e6e6e6;
  border-top-color: #fafafa;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/**
 * Offers Hero Component
 *
 * Full-width hero section for the Offerings page. Features a dark abstract
 * background image with a semi-transparent overlay, centered headline block,
 * a three-column plan teaser grid (indieCORE, indieCARE, indieGUARD), and
 * a purple pill CTA button linking to the plan comparison table below.
 *
 * Figma Source: IndieTech-Website — Node 2014:446 (Offerings frame, hero region)
 *
 * BEM Structure:
 *   .offers-hero
 *   .offers-hero__bg
 *   .offers-hero__bg-image
 *   .offers-hero__bg-overlay
 *   .offers-hero__content
 *   .offers-hero__header
 *   .offers-hero__title
 *   .offers-hero__subtitle
 *   .offers-hero__plans
 *   .offers-hero__plan  [--core | --care | --guard]
 *   .offers-hero__plan-name
 *   .offers-hero__plan-tagline
 *   .offers-hero__plan-label
 *   .offers-hero__plan-features
 *   .offers-hero__plan-divider
 *   .offers-hero__plan-separator  [--down | --up]
 *   .offers-hero__separator-icon
 *   .offers-hero__cta
 *   .offers-hero__cta-btn
 *   .offers-hero__cta-btn-text
 *   .offers-hero__cta-btn-icon
 *   .offers-hero__cta-btn-circle
 *
 * @package risbootstrap
 * @since 1.0.0
 */
.carousel-content {
  left: 60%;
  max-width: 575px;
  position: relative;
  transform: translateX(-20%);
}
@media (max-width: 768px) {
  .carousel-content {
    left: 0;
    padding: 1rem;
    text-align: center;
    transform: translateX(0);
  }
  .carousel-content br {
    display: none;
  }
}

.wp-block-cover.has-parallax .wp-block-cover__inner-container {
  left: 60vw;
  max-width: 575px;
  position: absolute;
}
@media (max-width: 768px) {
  .wp-block-cover.has-parallax .wp-block-cover__inner-container {
    left: 0;
    padding: 1rem;
    text-align: center;
  }
  .wp-block-cover.has-parallax .wp-block-cover__inner-container br {
    display: none;
  }
}

.wp-block-cover.fullWidth .wp-block-cover__inner-container {
  left: 0;
  max-width: 100%;
  position: relative;
}

.indie-hero-logo {
  background-color: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
  background-image: url("../images/Indie-Tech-WBG.png") !important;
  background-size: 100% auto !important;
  background-repeat: no-repeat !important;
  background-position: center bottom !important;
}
@media (min-width: 1500px) {
  .indie-hero-logo {
    background-size: 95% !important;
    background-position: center 90% !important;
  }
}
@media (min-width: 1600px) {
  .indie-hero-logo {
    background-size: 90% !important;
    background-position: center 85% !important;
  }
}

.offers-hero {
  position: relative;
  width: 100%;
  min-height: 943px;
  background-color: #272727;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
@media (max-width: 992px) {
  .offers-hero {
    min-height: auto;
    padding-bottom: 4rem;
  }
}

/**
 * Background image container — positioned absolute to fill the hero.
 * aria-hidden="true" so assistive tech ignores the decorative elements.
 */
.offers-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/**
 * Background image — oversized to cover the section at all viewports.
 * Image extends beyond bounds; overflow: hidden on parent clips it.
 */
.offers-hero__bg-image {
  position: absolute;
  width: 136.59%;
  height: 117.29%;
  left: -21.94%;
  top: -17.29%;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

/**
 * Dark multiply overlay — mirrors Figma's rgba(0,0,0,0.30) + mix-blend-multiply.
 */
.offers-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  mix-blend-mode: multiply;
}

/**
 * WordPress Cover block renders its overlay via .wp-block-cover__background with
 * has-background-dim-0 (opacity:0). Override to 0.3 to match Figma.
 */
.offers-hero.wp-block-cover .wp-block-cover__background {
  opacity: 0.3 !important;
}

/**
 * Sits above the background layer (z-index: 1).
 * Max-width container, centered, with padding to match Figma's 73px gutters.
 */
.offers-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 73px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1200px) {
  .offers-hero__content {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .offers-hero__content {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .offers-hero__content {
    padding: 0 1rem;
  }
}

/**
 * Centered text block positioned at the top of the hero.
 * Figma: title at y=161, subtitle at y=218 within 943px hero.
 */
.offers-hero__header {
  text-align: center;
  padding-top: 161px;
  padding-bottom: 8rem;
  margin: auto;
  max-width: 551px;
  width: 100%;
}
@media (max-width: 992px) {
  .offers-hero__header {
    padding-top: 4rem;
    padding-bottom: 2rem;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .offers-hero__header {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }
}

/**
 * Main headline — Figtree ExtraBold, 32px, 1.6px letter-spacing.
 * Figma: node 2014:498
 */
.offers-hero__title {
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 1.6px;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .offers-hero__title {
    font-size: 1.875rem;
    letter-spacing: 0.9px;
  }
}

/**
 * Subtitle paragraph — Avenir Light, 18px, 0.9px letter-spacing.
 * Figma: node 2014:499
 */
.offers-hero__subtitle {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.9px;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .offers-hero__subtitle {
    font-size: 1rem;
  }
}

/**
 * Three-column flex layout for plan teasers.
 * Columns: indieCORE | separator | indieCARE | separator | indieGUARD
 * Figma: columns at x=73, 528, 982 within 1440px frame.
 */
.offers-hero__plans {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  margin-top: 4rem;
  padding-bottom: 3rem;
}
@media (max-width: 992px) {
  .offers-hero__plans {
    flex-direction: column;
    align-items: stretch;
    margin-top: 3rem;
    gap: 2rem;
  }
}

/**
 * Each plan column — flexible width, equal distribution.
 * Contains: plan name, tagline, label, feature list, and divider line.
 */
.offers-hero__plan {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .offers-hero__plan {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .offers-hero__plan:last-child {
    border-bottom: none;
  }
}

/**
 * Plan name — Figtree ExtraBold, 26px.
 * Figma: nodes 2022:108, 2022:112, 2022:113
 */
.offers-hero__plan-name {
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  font-size: 1.625rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
}
@media (max-width: 768px) {
  .offers-hero__plan-name {
    font-size: 1.5625rem;
  }
}

/**
 * Short tagline under the plan name.
 * Figma: nodes 2022:121, 2022:114, 2022:122 — Avenir Light, 19px
 */
.offers-hero__plan-tagline {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0 0 1rem;
}

/**
 * "INCLUDES" label — uppercase, Avenir Light, 20px.
 * Figma: nodes 2022:124, 2022:125, 2022:126
 */
.offers-hero__plan-label {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 2.1px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

/**
 * Features bullet list — Avenir Light, 14px.
 * Figma: node 2022:132 (indieCARE list)
 */
.offers-hero__plan-features {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #FFFFFF;
  list-style: disc;
  padding-left: 1rem;
  margin: 0 0 1rem;
  flex: 1;
}
.offers-hero__plan-features li {
  margin-bottom: 0.5rem;
}
.offers-hero__plan-features li:last-child {
  margin-bottom: 0;
}
.offers-hero__plan-features li:first-child {
  list-style: none;
  margin-left: -1rem;
  margin-bottom: 0.5rem;
}

/**
 * Horizontal rule separator at the bottom of each plan column.
 * Figma: imgLine1 asset, lines at y=583, 745, 583.
 */
.offers-hero__plan-divider {
  border: none;
  border-top: 1px solid #FFFFFF;
  opacity: 0.5;
  margin: 0;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .offers-hero__plan-divider {
    display: none;
  }
}

/**
 * Decorative vertical arrow between columns.
 * Arrows alternate direction: down → up → down.
 */
.offers-hero__plan-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  flex-shrink: 0;
  padding-top: 2.5rem;
}
@media (max-width: 992px) {
  .offers-hero__plan-separator {
    display: none;
  }
}

.offers-hero__separator-icon {
  display: block;
  flex-shrink: 0;
}

/**
 * CTA container — centered below the plans grid.
 * Figma: Group 12 at y=830.
 */
.offers-hero__cta {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offers-hero__cta .wp-block-button__link {
  background: #693BEB url("../images/icons/button-arrow.svg") no-repeat scroll 98% center;
  border-color: #693BEB;
  color: #FFFFFF;
  border-radius: 100px;
  padding: 0.625rem 55px 0.625rem 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 1.4px;
  height: auto;
}
.offers-hero__cta .wp-block-button__link:hover, .offers-hero__cta .wp-block-button__link:focus, .offers-hero__cta .wp-block-button__link:active {
  background-position: 99% center;
  color: #FFFFFF;
}

/**
 * Pill-shaped CTA button — purple background, white text.
 * Figma: bg #693BEB, border-radius 100px, height 40px.
 * Figma: text "Compare Plans" — Avenir Light, 14px, 1.4px tracking.
 */
.offers-hero__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #693BEB;
  border-radius: 100px;
  text-decoration: none;
  color: #FFFFFF;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.offers-hero__cta-btn:active {
  transform: translateY(0);
}

/**
 * Button label text — Avenir Light, 14px, 1.4px letter-spacing.
 * Figma: node 2014:502
 */
.offers-hero__cta-btn-text {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 1.4px;
  color: #FFFFFF;
  white-space: nowrap;
}

/**
 * Icon slot — wraps the circular arrow icon.
 */
.offers-hero__cta-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/**
 * Circular background for the arrow icon.
 * Figma: Ellipse 1 — 32px circle (imgEllipse1 asset).
 */
.offers-hero__cta-btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}
.offers-hero__cta-btn:hover .offers-hero__cta-btn-circle {
  background-color: rgba(255, 255, 255, 0.25);
}
.offers-hero__cta-btn-circle svg {
  display: block;
}

/**
 * Per-plan color accent modifiers.
 * These match the accent highlight colors from the comparison table below.
 * indieCORE  = $color-inspire  (purple)
 * indieCARE  = $color-flow     (teal)
 * indieGUARD = $color-bridge   (orange/yellow)
 */
/**
    *  Accordion Styles
    */
.wp-block-accordion-item > .wp-block-accordion-heading .wp-block-accordion-heading__toggle-icon {
  background: transparent url("../images/icons/arrow-right.svg") no-repeat center;
  width: 50px;
  height: 50px;
  text-indent: -999em;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.wp-block-accordion-item.is-open > .wp-block-accordion-heading .wp-block-accordion-heading__toggle-icon {
  transform: rotate(0deg);
}

.wp-block-accordion-panel {
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.wp-block-accordion-panel[aria-hidden=true], .wp-block-accordion-panel[inert] {
  display: block;
  height: 0;
  opacity: 0;
}

@media (max-width: 768px) {
  .page-id-1236 .bgGray .wp-block-columns.pt-3 {
    padding-top: 2rem !important;
  }
}

/**
 * At 375px the three plan columns stack vertically inside the cover block,
 * creating a 1300px+ hero. Collapse verbose plan details at mobile to reduce
 * the hero to a scrollable-without-pain height.
 */
@media (max-width: 768px) {
  .offers-hero .offers-hero__plan-label,
  .offers-hero .offers-hero__plan-features {
    display: none;
  }
  .offers-hero .offers-hero__plan {
    padding: 0.5rem 0;
  }
  .offers-hero .offers-hero__plans {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
  .offers-hero .offers-hero__cta {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
/**
 * Products Comparison Component
 *
 * Side-by-side plan comparison table for the Offerings page.
 * Displays all 16 features across indieCORE, indieCARE, and indieGUARD plans
 * with check/dash icons indicating inclusion per plan.
 *
 * Figma Source: IndieTech-Website — Node 2027-555 (PLAN SIDE BY SIDE)
 *
 * @package IndieTech
 * @since   1.0.0
 */
.products-comparison {
  width: 100%;
  padding: 4rem 1rem;
  background-color: #FFFFFF;
  overflow-x: hidden;
}
@media (min-width: 992px) {
  .products-comparison {
    padding: 4rem 2rem;
  }
}
@media (min-width: 1200px) {
  .products-comparison {
    padding: 80px 73px;
  }
}

.products-comparison__header {
  margin: 0 auto 4rem;
  text-align: center;
}

.products-comparison__title {
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.4px;
  color: #272727;
  margin: 0 0 1rem;
}
@media (min-width: 992px) {
  .products-comparison__title {
    font-size: 3.125rem;
  }
}

.products-comparison__subtitle {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.625;
  letter-spacing: 0.9px;
  color: #272727;
  margin: 0 0 2.5rem;
}

.products-comparison__cta {
  display: flex;
  justify-content: center;
}

.products-comparison__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #693BEB;
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1.4px;
  text-decoration: none;
  border-radius: 100px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.products-comparison__cta-btn a {
  color: #ffffff;
}
.products-comparison__cta-btn a:focus, .products-comparison__cta-btn a:hover {
  color: #ffffff;
}

.products-comparison__cta-btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.products-comparison__table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(39, 39, 39, 0.08);
}

.products-comparison__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background-color: #FFFFFF;
  table-layout: fixed;
}

.products-comparison__thead {
  border-bottom: 2px solid rgba(39, 39, 39, 0.1);
}

.products-comparison__feature-col-head {
  width: 40%;
  padding: 1.5rem 1rem;
}
@media (min-width: 992px) {
  .products-comparison__feature-col-head {
    width: 44%;
    padding: 1.5rem 2rem;
  }
}

.products-comparison__plan-head {
  width: 20%;
  padding: 1.5rem 0.5rem;
  text-align: center;
  vertical-align: top;
  border-left: 1px solid rgba(39, 39, 39, 0.08);
  height: 162px;
}
.products-comparison__plan-head.products-comparison__plan-head--core {
  background: transparent url("../images/products/ppurple.png") no-repeat center top;
}
.products-comparison__plan-head.products-comparison__plan-head--care {
  background: transparent url("../images/products/pgreen.png") no-repeat center top;
}
.products-comparison__plan-head.products-comparison__plan-head--guard {
  background: transparent url("../images/products/porange.png") no-repeat center top;
}
@media (min-width: 992px) {
  .products-comparison__plan-head {
    padding: 1.5rem 1rem;
  }
}

.products-comparison__plan-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.products-comparison__plan-label:hover, .products-comparison__plan-label:focus {
  cursor: pointer;
  transform: translate3d(0, 22px, 0);
}

.products-comparison__plan-name {
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 0.4px;
  line-height: 1.2;
}
.products-comparison__plan-head--core .products-comparison__plan-name {
  color: #FFFFFF;
}
.products-comparison__plan-head--care .products-comparison__plan-name {
  color: #FFFFFF;
}
.products-comparison__plan-head--guard .products-comparison__plan-name {
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .products-comparison__plan-name {
    font-size: 1.5625rem;
  }
}

.products-comparison__plan-price-wrap {
  display: flex;
  align-items: center;
  gap: 2px;
}

.products-comparison__plan-price {
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  font-size: 1.625rem;
  color: #FFFFFF;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .products-comparison__plan-price {
    font-size: 1.875rem;
  }
}

.products-comparison__plan-period {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.products-comparison__tbody .products-comparison__row:nth-child(even) {
  background-color: rgba(39, 39, 39, 0.025);
}

.products-comparison__row {
  border-bottom: 1px solid rgba(39, 39, 39, 0.08);
  transition: background-color 0.15s ease;
}
.products-comparison__row:hover {
  background-color: rgba(105, 59, 235, 0.04);
}
.products-comparison__row:last-child {
  border-bottom: none;
}

.products-comparison__feature {
  padding: 1rem 1rem 1rem 1rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #272727;
  vertical-align: middle;
}
@media (min-width: 992px) {
  .products-comparison__feature {
    padding: 1rem 1.5rem 1rem 2rem;
    font-size: 1rem;
  }
}

.products-comparison__check {
  padding: 1rem 0.5rem;
  text-align: center;
  vertical-align: middle;
  border-left: 1px solid rgba(39, 39, 39, 0.08);
  min-height: 60px;
}

.products-comparison__check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(39, 39, 39, 0.25);
  border-radius: 50%;
  height: 22px;
  width: 22px;
  position: relative;
}

.products-comparison__check--no .products-comparison__check-icon {
  border: 1px solid transparent;
}

/* Included */
.products-comparison__check--yes svg {
  margin-top: -4px;
  position: absolute;
  width: 27px;
  height: 27px;
  margin-left: 7px;
}
.products-comparison__check--yes:nth-child(2) {
  background-color: rgba(105, 59, 235, 0.2) !important;
  display: block;
}
.products-comparison__check--yes:nth-child(3) {
  background-color: rgba(74, 231, 186, 0.2) !important;
}
.products-comparison__check--yes:nth-child(4) {
  background-color: rgba(255, 190, 103, 0.2) !important;
}
.products-comparison__check--yes .products-comparison__check-icon {
  color: #693BEB;
}

/* Not included */
.products-comparison__check--no:nth-child(2) {
  background-color: rgba(105, 59, 235, 0.2) !important;
}
.products-comparison__check--no:nth-child(3) {
  background-color: rgba(74, 231, 186, 0.2) !important;
}
.products-comparison__check--no:nth-child(4) {
  background-color: rgba(255, 190, 103, 0.2) !important;
}
.products-comparison__check--no .products-comparison__check-icon {
  color: rgba(39, 39, 39, 0.25);
}

/* Optional */
.products-comparison__check--optional svg {
  margin-top: -4px;
  position: absolute;
  width: 27px;
  height: 27px;
  margin-left: 7px;
}
.products-comparison__check--optional:nth-child(2) {
  background-color: rgba(105, 59, 235, 0.2) !important;
}
.products-comparison__check--optional:nth-child(3) {
  background-color: rgba(74, 231, 186, 0.2) !important;
}
.products-comparison__check--optional:nth-child(4) {
  background-color: rgba(255, 190, 103, 0.2) !important;
}
.products-comparison__check--optional .products-comparison__check-icon {
  color: #693BEB;
}

.products-comparison__optional-label {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: rgba(39, 39, 39, 0.5);
  margin-top: 2px;
  line-height: 1;
}

@media (min-width: 1200px) {
  .products-comparison__feature-col-head,
  .products-comparison__feature {
    position: sticky;
    left: 0;
    background-color: #FFFFFF;
    z-index: 1;
  }
  .products-comparison__row:nth-child(even) .products-comparison__feature {
    background-color: rgb(249.6, 249.6, 249.6);
  }
}
@media (max-width: 767px) {
  .products-comparison__table-wrapper {
    overflow-x: visible;
    border-radius: 0;
    box-shadow: none;
  }
  .products-comparison__table {
    display: block;
    min-width: 0;
  }
  .products-comparison__tbody {
    display: block;
  }
  .products-comparison__thead {
    display: none;
  }
  .products-comparison__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(39, 39, 39, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: #FFFFFF;
  }
  .products-comparison__row:nth-child(even) {
    background-color: #FFFFFF;
  }
  .products-comparison__row:hover {
    background-color: #FFFFFF;
  }
  .products-comparison__row:last-child {
    border-bottom: 1px solid rgba(39, 39, 39, 0.1);
  }
  .products-comparison__feature {
    grid-column: 1/-1;
    display: block;
    background-color: rgba(39, 39, 39, 0.04);
    border-bottom: 1px solid rgba(39, 39, 39, 0.08);
    border-left: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
  }
  .products-comparison__check {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0.5rem 4px 1rem;
    border-left: 1px solid rgba(39, 39, 39, 0.06);
    text-align: center;
  }
  .products-comparison__check:nth-child(2) {
    border-left: none;
  }
  .products-comparison__check::before {
    display: block;
    font-family: "Figtree", sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.4px;
    line-height: 1.4;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  .products-comparison__check:nth-child(2)::before {
    content: "indieCORE";
    color: #FFFFFF;
    background-color: #693BEB;
  }
  .products-comparison__check:nth-child(3)::before {
    content: "indieCARE";
    color: #272727;
    background-color: #4AE7BA;
  }
  .products-comparison__check:nth-child(4)::before {
    content: "indieGUARD";
    color: #272727;
    background-color: #FFBE67;
  }
  .products-comparison__optional-label {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .giantCircle {
    height: auto;
    min-height: auto !important;
  }
}

/**
 * Blog Category Component
 *
 * Insights Hub (indieBRIDGE) blog category landing page styles.
 * Displays category header and list of blog posts with thumbnails and excerpts.
 *
 * Figma Source: IndieTech-Website — Node 2038:592 (Insights Hub)
 *
 * @package IndieTech
 * @since   1.0.0
 */
.blog-category {
  width: 100%;
  min-height: 100vh;
  background-color: #272727;
  padding: 4rem 1rem;
  overflow-x: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.blog-category a {
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.blog-category a:hover, .blog-category a:focus-visible {
  opacity: 0.8;
}
.blog-category a:hover .blog-category__post-link-icon {
  transform: translateX(5px);
}
@media (min-width: 992px) {
  .blog-category {
    padding: 4rem 2rem;
  }
}
@media (min-width: 1200px) {
  .blog-category {
    padding: 100px 73px 80px;
  }
}

.blog-category__header {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .blog-category__header {
    margin-bottom: 25px;
  }
}

.blog-category__title {
  font-family: "Figtree", sans-serif;
  font-size: 2rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 1rem;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .blog-category__title {
    font-size: 3.125rem;
  }
}

.blog-category__title-indie {
  font-weight: 600;
}

.blog-category__title-bridge {
  font-weight: 800;
}

.blog-category__subtitle {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-size: 1.5625rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 1.5rem;
  line-height: 0;
}
@media (min-width: 992px) {
  .blog-category__subtitle {
    font-size: 1.875rem;
  }
}

.blog-category__description {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.9px;
  color: #FFFFFF;
  margin: 0;
  max-width: 584px;
  margin-left: auto;
  margin-right: auto;
}

.blog-category__posts {
  max-width: 1440px;
  margin: 0 auto;
}

.blog-category__post {
  border-bottom: 1px solid #ffffff;
  position: relative;
  display: grid;
  grid-template-columns: minmax(40px, 73px) minmax(120px, 199px) 1fr minmax(140px, 260px);
  grid-template-rows: auto auto;
  gap: 0 1.5rem;
  align-items: center;
  padding: 40px 0;
  min-height: 200px;
}
.blog-category__post:last-child {
  border-bottom: none;
}
@media (max-width: 992px) {
  .blog-category__post {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .blog-category__post {
    padding: 25px 0;
  }
}

.blog-category__post-badge {
  grid-column: 1/2;
  grid-row: 1/-1;
  align-self: start;
  justify-self: center;
  width: 80px;
  height: 37px;
  border: 1px solid #4AE7BA;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 4.2px;
  color: #4AE7BA;
  line-height: 0;
}
@media (max-width: 992px) {
  .blog-category__post-badge {
    grid-column: 1/2;
    grid-row: 1/2;
    height: 30px;
    font-size: 0.75rem;
  }
}

.blog-category__post-thumbnail {
  grid-column: 2/3;
  grid-row: 1/-1;
  width: 199px;
  height: 200px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .blog-category__post-thumbnail {
    grid-column: 1/3;
    grid-row: 2/3;
    width: 100%;
    height: auto;
    aspect-ratio: 199/200;
  }
}

.blog-category__post-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.blog-category__post-content {
  grid-column: 3/4;
  grid-row: 1/-1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 992px) {
  .blog-category__post-content {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}

.blog-category__post-title {
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  font-size: 1.5625rem;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}
@media (min-width: 992px) {
  .blog-category__post-title {
    font-size: 1.625rem;
  }
}

.blog-category__post-excerpt {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}
@media (min-width: 992px) {
  .blog-category__post-excerpt {
    font-size: 1.125rem;
    max-width: 415px;
  }
}

.blog-category__post-link {
  grid-column: 4/5;
  grid-row: 1/-1;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #FFFFFF;
  transition: opacity 0.2s ease;
}
.blog-category__post-link:hover, .blog-category__post-link:focus-visible {
  opacity: 0.8;
}
@media (max-width: 992px) {
  .blog-category__post-link {
    grid-column: 1/3;
    grid-row: 4/5;
    justify-content: flex-start;
  }
}

.blog-category__post-link-text {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 0;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .blog-category__post-link-text {
    font-size: 1rem;
  }
}

.blog-category__post-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.blog-category__post-link-icon svg {
  width: 38px;
  height: 38px;
}
@media (max-width: 992px) {
  .blog-category__post-link-icon {
    width: 32px;
    height: 32px;
  }
  .blog-category__post-link-icon svg {
    width: 24px;
    height: 24px;
  }
}

.blog-category__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0;
  width: 100%;
}

.blog-page {
  background: #ffffff;
  color: #000000;
  padding: 6rem 1rem;
}
.blog-page .entry-title {
  margin-top: 15px;
}
.blog-page .row {
  max-width: 1440px;
  margin: 0 auto;
}
.blog-page .cat-links {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #693BEB;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.blog-page .cat-links a {
  color: #693BEB;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.blog-page .cat-links a:hover, .blog-page .cat-links a:focus-visible {
  opacity: 0.8;
}

.blog-post {
  padding: 0;
}

.post-meta-container .byline {
  font-weight: 500;
}
.post-meta-container .byline a {
  color: #693BEB;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.post-meta-container .byline a:hover, .post-meta-container .byline a:focus-visible {
  opacity: 0.8;
}
.post-meta-container .posted-on {
  display: block;
  font-size: 14px;
  font-weight: 300;
}

.entry-footer strong {
  color: #272727;
}

.wp-block-search__input {
  border-radius: 100px;
  border: 1px solid #4AE7BA;
}

.btn-search {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  right: 25px;
  margin: 2px 0;
}
.btn-search:hover, .btn-search:focus, .btn-search:active {
  color: #4AE7BA;
}

#secondary .search-form {
  position: relative;
  margin-bottom: 30px;
}

.widget_block {
  margin-bottom: 0;
}
.widget_block .bgFlow {
  color: #272727;
  margin-bottom: 0;
  padding: 15px;
}
.widget_block .wp-block-latest-posts li a {
  display: inline-block;
  width: 100%;
}
.widget_block .wp-block-latest-posts li a:after {
  content: "";
  display: inline-block;
  float: right;
  margin-left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #272727;
  background-image: url("../images/icons/arrow-right-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  vertical-align: middle;
}
.widget_block a {
  color: #272727;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.post-meta-container, .social-share-container {
  border-top: 2px solid #272727;
  border-bottom: 2px solid #272727;
  padding: 15px;
}

.page-link {
  background-color: #272727;
  color: #ffffff;
}
.page-link:hover, .page-link:focus {
  background-color: #4AE7BA;
  border-color: #4AE7BA;
  color: #ffffff;
}

.pagination {
  justify-content: center;
  margin-top: 20px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.active > .page-link, .page-link.active {
  background-color: #4AE7BA;
  border-color: #4AE7BA;
}

/**
 * Forms
 **/
.md-form {
  margin-top: 1.5rem;
  position: relative;
}

.wpcf7-form .container-fluid .form-control {
  background-color: transparent;
  border-color: #4AE7BA;
}
.wpcf7-form .container-fluid input[type=text],
.wpcf7-form .container-fluid input[type=email],
.wpcf7-form .container-fluid input[type=tel] {
  border-radius: 100px;
  min-height: 40px;
}
.wpcf7-form .container-fluid textarea {
  border-radius: 20px;
  min-height: 80px;
}
.wpcf7-form .container-fluid .wpcf7-form-control-wrap {
  z-index: 1;
}
.wpcf7-form .container-fluid label {
  position: absolute;
  top: -5px;
  left: 10px;
  font-size: 1rem;
  color: #ffffff;
  cursor: text;
  text-overflow: ellipsis;
  transition: transform 0.2s ease-out, color 0.2s ease-out;
  transform: translateY(12px);
  transform-origin: 0 100%;
  -webkit-transform-origin: 0 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 0;
}
.wpcf7-form .container-fluid label.active {
  color: #3f7f36;
  font-size: 1rem;
  transform: translateY(-20px) scale(0.8);
}

.footer-widgets {
  margin-bottom: 0 !important;
}
.footer-widgets .widget {
  margin-bottom: 15px !important;
}
.footer-widgets .widget p {
  margin-bottom: 5px !important;
}

.footer__legal ul {
  display: flex;
  gap: 20px;
  justify-content: center;
  list-style: none outside none;
}

.site-footer {
  margin-top: 0 !important;
}

.site-info {
  padding-top: 10px !important;
}

.copyrights {
  font-size: 0.9rem;
  color: #91979C;
}
.copyrights a {
  color: #ffffff;
}
.copyrights a:hover {
  color: #91979C;
}

/**
 * Footer Component
 *
 * Comprehensive footer section with logo, navigation, contact information,
 * newsletter signup, and call-to-action.
 *
 * @package IndieTech
 * @since 1.0.0
 */
.footer {
  background-color: #272727;
  color: #FFFFFF;
  padding: 0;
  width: 100%;
  /**
   * Top section containing logo, tagline, main heading, and CTA button
   */
  /**
   * Middle section with navigation, location, contact, and newsletter
   */
  /**
   * Bottom section with copyright and legal links
   */
}
.footer .widget_block a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .footer__container {
    padding: 0 3rem;
  }
}
@media (min-width: 1024px) {
  .footer__container {
    padding: 0 4rem;
  }
}
.footer__top {
  padding: 1rem 0;
}
@media (min-width: 768px) {
  .footer__top {
    padding: 2.5rem 0;
  }
}
.footer__top .footer__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .footer__top .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .footer__top .footer__container {
    gap: 4rem;
  }
}
.footer__branding {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__logo {
  max-width: 350px;
}
@media (min-width: 768px) {
  .footer__logo {
    max-width: 420px;
  }
}
.footer__logo-image {
  width: 100%;
  height: auto;
  display: block;
}
.footer__tagline {
  font-family: "Figtree", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  .footer__tagline {
    font-size: 1.625rem;
  }
}
.footer__cta-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
.footer__heading {
  font-family: "Figtree", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .footer__heading {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .footer__heading {
    font-size: 3.125rem;
  }
}
.footer__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.625rem 1.25rem;
  background-color: #693BEB;
  color: #FFFFFF;
  border-radius: 100px;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 1.4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.footer__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(105, 59, 235, 0.3);
  color: #FFFFFF;
}
.footer__cta-button:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .footer__cta-button {
    margin-top: 15px;
    padding: 0.625rem 15px 0.625rem 1.25rem;
  }
}
.footer__cta-text {
  white-space: nowrap;
}
.footer__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer__cta-icon svg {
  display: block;
  width: 32px;
  height: 32px;
}
.footer__middle {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .footer__middle {
    padding: 4rem 0;
  }
}
.footer__middle .footer__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer__middle .footer__container {
    grid-template-columns: auto 1fr;
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .footer__middle .footer__container {
    grid-template-columns: auto 1fr 1fr;
    gap: 4rem;
  }
}
.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__nav-item {
  margin: 0;
}
.footer__nav-link {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__nav-link:hover {
  color: #693BEB;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer__info {
    gap: 3rem;
  }
}
.footer__info-title {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  color: #FFFFFF;
}
.footer__location {
  margin: 0;
}
.footer__address {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 1.4px;
  line-height: 1.625;
  margin: 0;
  color: #FFFFFF;
}
.footer__contact {
  margin: 0;
}
.footer__contact p {
  margin: 0;
  line-height: 1.625;
}
.footer__contact a {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1.4px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__contact a:hover {
  color: #693BEB;
}
.footer__contact-email a {
  text-decoration: underline;
}
.footer__newsletter {
  max-width: 400px;
}
@media (min-width: 1024px) {
  .footer__newsletter {
    margin-left: auto;
  }
}
.footer__newsletter-title {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  color: #FFFFFF;
}
.footer__newsletter-description {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 1.4px;
  line-height: 1.625;
  margin: 0 0 1.5rem 0;
  color: #FFFFFF;
}
.footer__newsletter-form {
  width: 100%;
}
.footer__newsletter-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.5rem;
  transition: border-color 0.3s ease;
}
.footer__newsletter-input-wrapper:focus-within {
  border-color: #4AE7BA;
}
.footer__newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  padding: 0.5rem 0;
  outline: none;
}
.footer__newsletter-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.4px;
}
.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.4px;
}
.footer__newsletter-input:focus {
  outline: none;
}
.footer__newsletter-submit {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.footer__newsletter-submit:hover {
  transform: scale(1.1);
}
.footer__newsletter-submit:active {
  transform: scale(0.95);
}
.footer__newsletter-submit svg {
  display: block;
  width: 32px;
  height: 32px;
}
.footer__bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__bottom .footer__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom .footer__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__copyright {
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  margin: 0;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .footer__copyright {
    order: 1;
  }
}
.footer__legal {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__legal {
    order: 2;
    margin-left: auto;
  }
}
.footer__legal-link {
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__legal-link:hover {
  color: #693BEB;
  text-decoration: underline;
}

/**
 * Footer stacks to ~1322px at 375px. Tighten padding and grid gaps on mobile
 * to reduce the overall footer height.
 */
@media (max-width: 768px) {
  .footer__top {
    padding: 1rem 0;
  }
  .footer__middle {
    padding: 2.5rem 0;
  }
  .footer__middle .footer__container {
    gap: 1.5rem;
  }
  .footer__top .footer__container {
    gap: 1.5rem;
  }
  .footer__info {
    gap: 1.5rem;
  }
}
/**
 * Content 
 **/
/**
 * Full width pages
 **/
.fullWidth {
  max-width: 100% !important;
}
.fullWidth .wp-block-columns {
  padding: 0 25px;
}
.fullWidth .wp-block-columns .wp-block-columns {
  padding: 15px 0;
}
.fullWidth .fullWidth {
  margin: 0;
}
@media (max-width: 768px) {
  .fullWidth {
    margin: 0;
  }
  .fullWidth .wp-block-columns {
    margin: 0;
    padding: 0 30px;
  }
}

/* Inner wrapper - constrained, centered */
.contentWrapper {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 0rem;
}

/* Columns inside wrapper */
.contentWrapper .wp-block-column {
  flex: 1;
}

/* Responsive stacking on mobile */
@media (max-width: 768px) {
  .contentWrapper {
    flex-direction: column;
  }
}
/**
 * Testimonials Styles
 */
.risbootstrap-testimonial-slider {
  position: relative;
  margin-bottom: 2rem;
}
.risbootstrap-testimonial-slider .fa-chevron-left {
  background: transparent url("../images/icons/arrow-right-right.svg") no-repeat center center;
  width: 25px;
  height: 25px;
  transform: rotate(180deg);
}
.risbootstrap-testimonial-slider .fa-chevron-left:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.risbootstrap-testimonial-slider .fa-chevron-right {
  background: transparent url("../images/icons/arrow-right-right.svg") no-repeat center center;
  width: 25px;
  height: 25px;
}
.risbootstrap-testimonial-slider .fa-chevron-right:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.risbootstrap-testimonial-slider .testimonial-slider-title {
  font-family: "Lato", sans-serif;
  font-size: 25px;
  font-weight: 300;
  margin-right: 1rem;
}
.risbootstrap-testimonial-slider .testimonial-slides {
  position: relative;
  overflow: hidden;
  border-radius: 0.375rem;
  min-height: 250px;
  padding: 5px 25px;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 200px;
  transition: all 0.6s easeInOut;
  -webkit-transition: all 0.6s easeInOut;
  -moz-transition: all 0.6s easeInOut;
  -o-transition: all 0.6s easeInOut;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide:not(.active) {
  display: none;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-image {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-content .testimonial-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-content .testimonial-rating {
  color: #ffc107;
  margin-bottom: 1rem;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-content .testimonial-rating .fa-star {
  margin: 0 0.125rem;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-content .testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-content .testimonial-text p:first-child {
  display: inline;
}
.risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-content .testimonial-text::before, .risbootstrap-testimonial-slider .testimonial-slides .testimonial-slide .testimonial-content .testimonial-text::after {
  content: '"';
  display: inline-block;
  font-size: 1.5rem;
  color: #0E2E3E;
}
.risbootstrap-testimonial-slider .testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.risbootstrap-testimonial-slider .testimonial-navigation .prev-testimonial,
.risbootstrap-testimonial-slider .testimonial-navigation .next-testimonial {
  background: #693BEB;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.25rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.risbootstrap-testimonial-slider .testimonial-navigation .prev-testimonial:hover,
.risbootstrap-testimonial-slider .testimonial-navigation .next-testimonial:hover {
  background-color: rgb(84.5833333333, 32.3222222222, 232.2777777778);
  color: #ffffff;
}
.risbootstrap-testimonial-slider .testimonial-navigation .prev-testimonial.no-indicators {
  margin-right: 1rem;
}
.risbootstrap-testimonial-slider .testimonial-navigation .testimonial-indicators {
  display: flex;
  margin: 0 0.5rem;
}
.risbootstrap-testimonial-slider .testimonial-navigation .testimonial-indicators .testimonial-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #ced4da;
  margin: 0 0.25rem;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.risbootstrap-testimonial-slider .testimonial-navigation .testimonial-indicators .testimonial-indicator.active {
  background-color: #0E2E3E;
}
.risbootstrap-testimonial-slider .testimonial-navigation .testimonial-indicators .testimonial-indicator:hover {
  background-color: #6c757d;
}

.risbootstrap-sortable-testimonials .testimonial-item .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.risbootstrap-sortable-testimonials .testimonial-item .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.risbootstrap-sortable-testimonials .testimonial-item .card .testimonial-image {
  max-width: 100px;
  margin: 0 auto;
}
.risbootstrap-sortable-testimonials .testimonial-item .card .testimonial-rating {
  font-size: 1rem;
}
.risbootstrap-sortable-testimonials .testimonial-item .card .testimonial-text {
  font-style: italic;
}
.risbootstrap-sortable-testimonials .testimonial-item .card .testimonial-text::before, .risbootstrap-sortable-testimonials .testimonial-item .card .testimonial-text::after {
  content: '"';
  color: #0E2E3E;
}

.risbootstrap-testimonial-form .rating-stars label {
  transition: color 0.2s ease;
}

@media (max-width: 768px) {
  .risbootstrap-testimonial-slider .testimonial-slides {
    padding: 1.5rem;
  }
  .risbootstrap-testimonial-slider .testimonial-slider-title {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
/**
 * Marquee Component Styles
 *
 * Smooth scrolling image marquee with GSAP animation
 *
 * @package RisBootstrap
 * @since 1.0.0
 */
.ris-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
}
.ris-marquee--fade-edges::before, .ris-marquee--fade-edges::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ris-marquee--fade-edges::before {
  left: 0;
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.ris-marquee--fade-edges::after {
  right: 0;
  background: linear-gradient(to left, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.ris-marquee__track {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  will-change: transform;
}
.ris-marquee__content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ris-marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ris-marquee__item a {
  display: block;
  line-height: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ris-marquee__item a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.ris-marquee__item a:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.ris-marquee__image {
  width: auto;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.ris-marquee--loading .ris-marquee__track {
  opacity: 0;
}
.ris-marquee--loaded .ris-marquee__track {
  opacity: 1;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .ris-marquee--fade-edges::before, .ris-marquee--fade-edges::after {
    width: 50px;
  }
}
@media (prefers-color-scheme: dark) {
  .ris-marquee--fade-edges::before {
    background: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  }
  .ris-marquee--fade-edges::after {
    background: linear-gradient(to left, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  }
}
.dark-mode .ris-marquee--fade-edges::before,
.theme-dark .ris-marquee--fade-edges::before,
[data-theme=dark] .ris-marquee--fade-edges::before {
  background: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}
.dark-mode .ris-marquee--fade-edges::after,
.theme-dark .ris-marquee--fade-edges::after,
[data-theme=dark] .ris-marquee--fade-edges::after {
  background: linear-gradient(to left, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}

@media (prefers-reduced-motion: reduce) {
  .ris-marquee__track {
    animation: none !important;
    transform: none !important;
  }
  .ris-marquee__content:nth-child(2) {
    display: none;
  }
}
.risbootstrap-marquee-widget .widget-title {
  margin-bottom: 1rem;
}
.risbootstrap-marquee-widget .marquee-no-images {
  padding: 1rem;
  text-align: center;
  color: #666;
  font-style: italic;
}

.ris-marquee--grayscale .ris-marquee__image {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.ris-marquee--grayscale:hover .ris-marquee__image,
.ris-marquee--grayscale .ris-marquee__item:hover .ris-marquee__image {
  filter: grayscale(0%);
}
.ris-marquee--logos .ris-marquee__item {
  padding: 0 1rem;
}
.ris-marquee--logos .ris-marquee__image {
  max-width: 150px;
  height: auto;
  max-height: 80%;
}
.ris-marquee--full-bleed .ris-marquee__item {
  margin-right: 0 !important;
}
.ris-marquee--shadow .ris-marquee__image {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.ris-marquee--rounded .ris-marquee__image {
  border-radius: 8px;
}
.ris-marquee--circle .ris-marquee__image {
  border-radius: 50%;
}

/**
 * Social Share Buttons Styles
 */
.sa-social-share {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .sa-social-share {
    flex-direction: row;
    align-items: center;
    gap: 0px;
  }
}
.sa-social-share .sa-share-label {
  color: #272727;
  margin: 0;
  white-space: nowrap;
}
.sa-social-share .sa-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}
.sa-social-share .sa-share-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  background-color: #ffffff;
  text-decoration: none;
  color: #272727;
  transition: all 0.3s ease;
  cursor: pointer;
}
.sa-social-share .sa-share-button i {
  transition: transform 0.3s ease;
}
.sa-social-share .sa-share-button span {
  display: none;
}
.sa-social-share .sa-share-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.sa-social-share .sa-share-button:hover i {
  transform: scale(1.1);
}
.sa-social-share .sa-share-button.sa-share-facebook:hover {
  background-color: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}
.sa-social-share .sa-share-button.sa-share-twitter:hover {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.sa-social-share .sa-share-button.sa-share-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #bc1888;
  color: #ffffff;
}
.sa-social-share .sa-share-button.sa-share-email:hover {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}
@media (max-width: 768px) {
  .sa-social-share .sa-share-button {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    min-width: 140px;
  }
  .sa-social-share .sa-share-button span {
    font-size: 16px;
  }
}

.parallax-container {
  overflow: hidden;
  position: relative;
}

[class*=parallax-] {
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  [class*=parallax-] {
    transform: none !important;
    will-change: auto;
    animation: none !important;
  }
}

.parallax-bg {
  background-attachment: scroll;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@supports (-webkit-overflow-scrolling: touch) {
  .parallax-bg {
    background-attachment: scroll !important;
  }
}

.parallax-pin {
  position: relative;
  z-index: 1;
}

.parallax-scale {
  transform-origin: center center;
  backface-visibility: hidden;
}

.parallax-rotate {
  transform-origin: center center;
  backface-visibility: hidden;
}

.parallax-fade {
  transition: opacity 0.3s ease-out;
}

@media (max-width: 767px) {
  [class*=parallax-]:not(.parallax-mobile-enabled) {
    transform: none !important;
    will-change: auto !important;
  }
  .parallax-bg {
    background-attachment: scroll;
  }
}
@media (prefers-reduced-motion: reduce) {
  [class*=parallax-] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
html.no-gsap [class*=parallax-] {
  transform: none !important;
  will-change: auto;
}

.parallax-smooth {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.parallax-optimized {
  contain: layout style paint;
  content-visibility: auto;
}

html.parallax-debug [class*=parallax-] {
  outline: 2px dashed rgba(255, 0, 0, 0.5);
  outline-offset: -2px;
}
html.parallax-debug .parallax-slow::before {
  content: "SLOW";
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  z-index: 10000;
  pointer-events: none;
}
html.parallax-debug .parallax-medium::before {
  content: "MEDIUM";
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 165, 0, 0.8);
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  z-index: 10000;
  pointer-events: none;
}
html.parallax-debug .parallax-fast::before {
  content: "FAST";
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 128, 0, 0.8);
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  z-index: 10000;
  pointer-events: none;
}

.page-id-1318 .bgBridge h2.wp-block-heading:not(.largeText):not(.offers-hero__plan-name),
.page-id-1318 .bgWhite h2.wp-block-heading:not(.largeText):not(.offers-hero__plan-name),
.page-id-1318 .bgFlow h2.wp-block-heading:not(.largeText):not(.offers-hero__plan-name) {
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 3.125rem;
  line-height: 1.2;
  letter-spacing: 5px;
}
@media (max-width: 992px) {
  .page-id-1318 .bgBridge h2.wp-block-heading:not(.largeText):not(.offers-hero__plan-name),
  .page-id-1318 .bgWhite h2.wp-block-heading:not(.largeText):not(.offers-hero__plan-name),
  .page-id-1318 .bgFlow h2.wp-block-heading:not(.largeText):not(.offers-hero__plan-name) {
    font-size: clamp(1.875rem, 4vw + 1rem, 3.125rem);
  }
}
@media (max-width: 768px) {
  .page-id-1318 .bgBridge h2.wp-block-heading:not(.largeText):not(.offers-hero__plan-name),
  .page-id-1318 .bgWhite h2.wp-block-heading:not(.largeText):not(.offers-hero__plan-name),
  .page-id-1318 .bgFlow h2.wp-block-heading:not(.largeText):not(.offers-hero__plan-name) {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
}
.page-id-1318 .bgBridge p:not(.offers-hero__plan-tagline),
.page-id-1318 .bgWhite p:not(.offers-hero__plan-tagline),
.page-id-1318 .bgFlow p:not(.offers-hero__plan-tagline) {
  font-size: 1.25rem;
  line-height: 1.625;
}
.page-id-1318 .bgBridge li,
.page-id-1318 .bgWhite li,
.page-id-1318 .bgFlow li {
  font-size: 1.25rem;
}
.page-id-1318 .bgWhite li {
  line-height: 35px;
}
.page-id-1318 .bgFlow li {
  line-height: 45px;
}
.page-id-1318 .bgGray:not(.wp-block-cover) h2.wp-block-heading:not(.largeText) {
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  font-size: 1.625rem;
  line-height: 1.2;
  letter-spacing: 0.4px;
}
.page-id-1318 .bgGray:not(.wp-block-cover) p, .page-id-1318 .bgGray:not(.wp-block-cover) li {
  font-size: 1.25rem;
}
.page-id-1318 .parallax-bg h2.wp-block-heading {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 3.2px;
}
.page-id-1318 .parallax-bg p {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .page-id-1318 .bgBridge,
  .page-id-1318 .bgWhite,
  .page-id-1318 .bgFlow,
  .page-id-1318 .bgGray:not(.wp-block-cover) {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.page-id-1409 .wp-block-cover .wp-block-cover__background {
  opacity: 0.5 !important;
}
.page-id-1409 .wp-block-cover__inner-container {
  padding-right: 3rem;
}
@media (max-width: 768px) {
  .page-id-1409 .wp-block-cover__inner-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.page-id-1409 .wp-block-cover p {
  font-size: 1.125rem;
  letter-spacing: 0.9px;
}
.page-id-1409 .wp-block-cover .wp-block-button__link {
  background: #693BEB url("../images/icons/button-arrow.svg") no-repeat scroll 98% center;
  border-color: #693BEB;
  color: #FFFFFF;
  border-radius: 100px;
  padding: 0.625rem 55px 0.625rem 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 1.4px;
}
.page-id-1409 .wp-block-cover .wp-block-button__link:hover, .page-id-1409 .wp-block-cover .wp-block-button__link:focus, .page-id-1409 .wp-block-cover .wp-block-button__link:active {
  background-position: 99% center;
  border-color: #693BEB;
  color: #FFFFFF;
}
.page-id-1409 .bgGray .colorFlow.wp-block-heading {
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  font-size: 1.625rem;
  letter-spacing: 0.9px;
  line-height: 1.2;
}
.page-id-1409 .bgGray p {
  font-size: 1.25rem;
  line-height: 1.625;
}
.page-id-1409 .bgWhite h2.wp-block-heading:not(.largeText) {
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 3.125rem;
  line-height: 1.2;
  letter-spacing: 5px;
}
@media (max-width: 992px) {
  .page-id-1409 .bgWhite h2.wp-block-heading:not(.largeText) {
    font-size: clamp(1.875rem, 4vw + 1rem, 3.125rem);
  }
}
@media (max-width: 768px) {
  .page-id-1409 .bgWhite h2.wp-block-heading:not(.largeText) {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
}
.page-id-1409 .bgWhite p {
  font-size: 1.25rem;
  line-height: 1.625;
}
.page-id-1409 .bgWhite ol li {
  font-size: 1.25rem;
  line-height: 50px;
}
.page-id-1409 .bgGray h2.wp-block-heading:not(.colorFlow) {
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 3.125rem;
  line-height: 1.2;
  letter-spacing: 5px;
}
@media (max-width: 992px) {
  .page-id-1409 .bgGray h2.wp-block-heading:not(.colorFlow) {
    font-size: clamp(1.875rem, 4vw + 1rem, 3.125rem);
  }
}
@media (max-width: 768px) {
  .page-id-1409 .bgGray h2.wp-block-heading:not(.colorFlow) {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
}
@media (max-width: 768px) {
  .page-id-1409 .bgGray,
  .page-id-1409 .bgWhite {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 992px) {
  .page-id-1409 .wp-block-column .wp-block-image img,
  .page-id-1409 .wp-block-columns .wp-block-image img {
    min-width: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    display: block;
  }
}
@media (max-width: 768px) {
  .page-id-1409 .wp-block-column .wp-block-image img {
    max-height: 450px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}