:root {
    --primary: #5e22e6;
    --secondary: #0a1f44;
    --primary-invert: #fff;
    --secondary-invert: #fff;

    --gradient-primary: linear-gradient(230deg, #7445ff, #520df4);
    --gradient-secondary: linear-gradient(230deg, #0a1f44, #020024);

    /* DEFAULT COLOR OF TEXTS */
    --text-primary: #0a1f44;

    /* FOR BUTTONS & INPUTS */
    --elements-roundness: 4px;

    --space-between-blocks: 4rem;
    /* for mobiles */
    --space-between-blocks-small-screens: 2.6rem;

    --formnx-body-bg: white !important;
  }

  body {
    font-family: "Poppins", sans-serif;
    color: var(--text-primary);
  }

  .space-between-blocks {
    padding-top: var(--space-between-blocks-small-screens);
    padding-bottom: var(--space-between-blocks-small-screens);
  }

  @media (min-width: 992px) {
    .space-between-blocks {
      padding-top: var(--space-between-blocks);
      padding-bottom: var(--space-between-blocks);
    }
  }

  /* Buttons */

  button {
    color: inherit;
    padding: 0;
    background: none;
    border: none;
  }

  button:focus {
    outline: none;
    box-shadow: none;
  }

  .btn {
    font-size: 0.87rem;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: var(--elements-roundness);
    transition: 0.2s all;
  }

  @media (min-width: 992px) {
    .btn {
      padding: 0.8rem 2rem;
    }
  }

  .btn,
  .btn:hover,
  .btn:focus {
    border: none;
    box-shadow: none;
    outline: none;
  }

  .btn:hover,
  .btn:focus {
    transform: scale(1.05);
  }

  .btn-primary,
  .btn-primary:hover,
  .btn-primary:focus {
    background: var(--gradient-primary, --primary);
    color: var(--primary-invert);
  }

  .btn-secondary,
  .btn-secondary:hover,
  .btn-secondary:focus {
    background: var(--gradient-secondary, --secondary);
    color: var(--secondary-invert);
  }

  .btn-primary--empty,
  .btn-primary--empty:hover,
  .btn-primary--empty:focus {
    color: var(--primary);
  }

  .btn-sm {
    padding: 0.8rem;
  }

  .highlight {
    color: var(--primary)
  }

  /* block header */

  .block__header {
    margin-bottom: 4rem;
  }

  .block__title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4;
  }

  @media(min-width: 992px) {
    .block__title {
      font-size: 2.5rem;
    }

    .block__title--big {
      font-size: 3rem;
      line-height: 1.1;
    }
  }

  @media(min-width: 1200px) {
    .block__title--big {
      font-size: 3.5rem;
      line-height: 1.2;
    }
  }

  .block__paragraph {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: .9;
  }

  @media(min-width: 992px) {
    .block__paragraph--big {
      font-size: 1.2rem;
      line-height: 1.6;
    }
  }

  /* Icons */

  .fr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 5px;
    background: rgba(0,0,0,0.04);
    margin-bottom: 1.5rem;
    transition: .5s;
  }

  .fr-icon--medium {
    font-size: 1.5rem;
    height: 3rem;
    width: 3rem;
  }

  .fr-icon--large {
    font-size: 1.2rem;
    height: 3.25rem;
    width: 3.25rem;
  }

  @media (min-width: 992px) {
    .fr-icon--large {
      height: 3.8rem;
      width: 3.8rem;
      font-size: 1.9rem;
    }
  }

/* Block */
.hero {
    --hero-nav-height: 100px;
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
    position: relative;
    display: flex;
    flex-direction: column
  }
  
  .hero-nav {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--hero-nav-height);
    display: flex;
    align-items: center;
    z-index: 2
  }
  
  .hero-nav__item {
    margin: auto;
    font-size: 1.1rem
  }
  
  @media (min-width:992px) {
    .hero-nav__item {
      margin: 0 1rem
    }
  }
  
  @media (min-width:992px) {
    .nav--lg-side {
      flex-direction: row-reverse
    }
  }
  
  .hero-nav__logo {
    height: 48px
  }

  /* Logo was tuned for the old square SVG. The current PNG is a wider
     icon+wordmark (198×81, ~2.44:1), so 48px height makes it visually small
     on phones. Bump on <lg so it sits in proportion with the hamburger. */
  @media (max-width: 991.98px) {
    .hero-nav__logo {
      height: 60px;
    }
  }
  
  .hero-nav__link {
    color: inherit;
    opacity: .9;
    text-decoration: none
  }
  
  .hero-nav__link:focus,
  .hero-nav__link:hover {
    color: inherit;
    text-decoration: none;
    opacity: 1
  }
  
  .ft-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2000;
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
  }
  
  @media (print),
  (prefers-reduced-motion:reduce) {
    .ft-menu {
      -webkit-animation-duration: 1ms !important;
      animation-duration: 1ms !important;
      -webkit-transition-duration: 1ms !important;
      transition-duration: 1ms !important;
      -webkit-animation-iteration-count: 1 !important;
      animation-iteration-count: 1 !important
    }
  }
  
  .ft-menu .hero-nav__item {
    width: 100%;
    margin-top: .75rem;
    margin-bottom: .75rem
  }
  
  @media (min-width:992px) {
    .ft-menu .hero-nav__item {
      width: auto;
      margin-top: 0;
      margin-bottom: 0
    }
  }
  
  .ft-menu--js-show {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: .5s;
    animation-duration: .5s
  }
  
  .ft-menu::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: var(--primary);
    opacity: .9;
    z-index: -1
  }
  
  @media (min-width:992px) {
    .ft-menu {
      -webkit-animation-name: none;
      animation-name: none;
      position: static;
      z-index: auto
    }
  
    .ft-menu::before {
      content: none
    }
  }
  
  .ft-menu__slider {
    --block-background: white;
    --block-text-color: var(--text-primary);
    color: var(--block-text-color);
    background: var(--block-background);
    width: 80%;
    height: 100%;
    overflow: hidden;
    transform: translateX(-100%);
    transition: .5s transform
  }
  
  @media (min-width:992px) {
    .ft-menu__slider {
      --block-background: transparent;
      --block-text-color: var(--block-text-color);
      width: auto;
      height: auto;
      background: 0 0;
      transform: none;
      display: flex;
      align-items: center
    }
  }
  
  .ft-menu--js-show .ft-menu__slider {
    transform: translateX(0)
  }
  
  .ft-menu__close-btn {
    color: var(--primary-invert);
    position: absolute;
    right: 0;
    top: 0;
    font-size: 2rem;
    margin: 1rem;
    transform: translateX(100%);
    transition: .5s transform
  }
  
  @media (min-width:992px) {
    .ft-menu__close-btn {
      display: none
    }
  }
  
  .ft-menu--js-show .ft-menu__close-btn {
    transform: translateX(0)
  }
  
  .ft-menu__close-btn:focus,
  .ft-menu__close-btn:hover {
    color: var(--primary-invert)
  }
  
  @-webkit-keyframes fadeIn {
    from {
      visibility: hidden;
      opacity: 0
    }
  
    to {
      visibility: visible;
      opacity: 1
    }
  }
  
  @keyframes fadeIn {
    from {
      visibility: hidden;
      opacity: 0
    }
  
    to {
      visibility: visible;
      opacity: 1
    }
  }
  
  @-webkit-keyframes fadeOut {
    from {
      visibility: visible;
      opacity: 1
    }
  
    to {
      visibility: hidden;
      opacity: 0
    }
  }
  
  @keyframes fadeOut {
    from {
      visibility: visible;
      opacity: 1
    }
  
    to {
      visibility: hidden;
      opacity: 0
    }
  }
  
  .fixed-nav-container {
    height: var(--hero-nav-height)
  }
  
  .hero-nav--is-sticky {
    --block-background: white;
    color: var(--block-text-color);
    background: var(--block-background);
    position: fixed !important;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    padding: 1rem !important;
    height: 60px;
    transition: .2s height;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
  }
  
  @media (min-width:992px) {
    .hero-nav--is-sticky {
      height: 80px;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      padding: 1rem 1.5rem !important
    }
  }
  
  .ft-menu__slider {
    color: var(--block-text-color)
  }
  
  .hero-nav--is-sticky .ft-menu__slider {
    color: var(--text-primary)
  }
  
  .hero-nav--is-sticky .btn {
    background: var(--gradient-primary, var(--primary));
    color: var(--primary-invert)
  }
  
  @-webkit-keyframes slideInDown {
    from {
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
      visibility: visible
    }
  
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0)
    }
  }
  
  @keyframes slideInDown {
    from {
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
      visibility: visible
    }
  
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0)
    }
  }
  
  .ft-menu__slider .hero-nav__item {
    font-size: 1.1rem;
    padding: 0 1rem
  }
  
  @media (min-width:992px) {
    .ft-menu__slider .hero-nav__item {
      padding: 0
    }
  }
  
  .hero-nav__link {
    display: flex;
    align-items: center;
    outline: 0 !important
  }
  
  .ft-menu__slider {
    overflow-x: hidden;
    overflow-y: auto
  }
  
  @media (min-width:992px) {
    .ft-menu__slider {
      overflow: visible
    }
  }
  
  .hero-nav__item--with-dropdown {
    position: relative;
    cursor: pointer
  }
  
  @media (min-width:992px) {
    .hero-nav__item--with-dropdown::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 176%
    }
  }
  
  .hero-nav__dropdown {
    position: static;
    width: 100%;
    height: auto;
    font-size: .9rem;
    border-top: 1px solid rgba(0, 0, 0, .1);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: .3s all;
    color: var(--text-primary);
    text-align: initial;
    cursor: auto
  }
  
  @media (min-width:992px) {
    .hero-nav__dropdown {
      position: absolute;
      top: 176%;
      left: 0;
      margin-top: 0;
      border-radius: 10px;
      border-top: none;
      box-shadow: 0 14px 50px 0 rgba(0, 0, 0, .1);
      background-color: #fff;
      z-index: 2;
      max-height: 0;
      padding: 2.3rem 3rem 2rem 2rem;
      overflow: visible;
      transition: .3s all
    }
  }
  
  .dropdown--important {
    position: absolute;
    width: auto !important;
    top: 176%;
    left: 0;
    margin-top: 0;
    border-radius: 10px;
    border-top: none;
    box-shadow: 0 14px 50px 0 rgba(0, 0, 0, .1);
    background-color: #fff;
    z-index: 2;
    max-height: 0;
    padding: 2rem;
    padding-right: 3rem;
    overflow: visible;
    transition: .3s all
  }
  
  @media (min-width:992px) {
    .dropdown--of-1-columns {
      width: 400px
    }
  
    .dropdown--of-2-columns {
      width: 700px
    }
  
    .dropdown--language-selector {
      width: 250px
    }
  }
  
  .hero-nav__item--show-dropdown .hero-nav__dropdown {
    margin-top: 1rem;
    visibility: visible;
    opacity: 1;
    max-height: 9999px;
    padding-top: 1rem
  }
  
  @media (min-width:992px) {
    .hero-nav__item--show-dropdown .hero-nav__dropdown {
      margin-top: 0;
      padding: 2.3rem 3rem 2rem 2rem
    }
  }
  
  .hero-nav__item-chevron {
    transition: .3s all
  }
  
  .hero-nav__item--show-dropdown .hero-nav__item-chevron {
    transform: rotate(180deg)
  }
  
  .hero-nav__item--dropdown-left .hero-nav__dropdown {
    transform: translateX(-15px) !important
  }
  
  .hero-nav__item--dropdown-left .hero-nav__dropdown::before {
    left: 15%;
    right: auto
  }
  
  .hero-nav__item--dropdown-right .hero-nav__dropdown {
    transform: translateX(15px) !important;
    left: auto;
    right: 0
  }
  
  .hero-nav__item--dropdown-right .hero-nav__dropdown::before {
    left: auto;
    right: 15%
  }
  
  @media (min-width:992px) {
    .hero-nav__item--lg-dropdown-left .hero-nav__dropdown {
      transform: translateX(-15px) !important;
      left: 0;
      right: auto
    }
  
    .hero-nav__item--lg-dropdown-left .hero-nav__dropdown::before {
      left: 15%;
      right: auto
    }
  
    .hero-nav__item--lg-dropdown-right .hero-nav__dropdown {
      transform: translateX(15px) !important;
      left: auto;
      right: 0
    }
  
    .hero-nav__item--lg-dropdown-right .hero-nav__dropdown::before {
      left: auto;
      right: 15%
    }
  }
  
  .dropdown--important::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6.85px 8.1px 6.85px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    margin: auto
  }
  
  @media (min-width:992px) {
    .hero-nav__dropdown::before {
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 6.85px 8.1px 6.85px;
      border-color: transparent transparent #fff transparent;
      position: absolute;
      top: -6px;
      left: 0;
      right: 0;
      margin: auto
    }
  }
  
  .dropdown__title {
    color: var(--text-primary);
    opacity: .7;
    font-weight: 600;
    font-size: .9rem;
    display: block;
    margin-top: .5rem;
    margin-bottom: 1.18rem
  }
  
  .dropdown__link {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    margin-bottom: 1.3rem;
    color: inherit;
    text-decoration: none
  }
  
  .dropdown__link:focus,
  .dropdown__link:hover {
    color: inherit;
    text-decoration: none
  }
  
  [javascript-language-selector] .dropdown__link {
    border-radius: .5rem;
    padding: .7rem;
    margin-bottom: 3px
  }
  
  .dropdown__link::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
  }
  
  .dropdown__link:last-child {
    margin: 0
  }
  
  [javascript-language-selector] .dropdown__link--selected,
  [javascript-language-selector] .dropdown__link:focus,
  [javascript-language-selector] .dropdown__link:hover {
    background: rgba(0, 0, 0, .06)
  }
  
  .dropdown__icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary, var(--primary));
    color: var(--primary-invert);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    font-size: 13px
  }
  
  @media (min-width:992px) {
    .dropdown__icon {
      width: 40px;
      height: 40px
    }
  }
  
  .dropdown__item {
    max-width: 250px
  }
  
  .dropdown__item-title {
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    z-index: -1
  }
  
  @media (min-width:992px) {
    .dropdown__item-title {
      white-space: nowrap
    }
  }
  
  .dropdown__item-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    width: 100%;
    background: var(--secondary);
    transform: translateY(2px);
    opacity: 0;
    transition: .2s
  }
  
  [javascript-language-selector] .dropdown__item-title {
    white-space: nowrap
  }
  
  [javascript-language-selector] .dropdown__item-title::before {
    display: none
  }
  
  .dropdown__link:focus .dropdown__item-title::before,
  .dropdown__link:hover .dropdown__item-title::before {
    height: 30%;
    transform: translateY(0);
    opacity: .4
  }
  
  .dropdown__item-description {
    font-size: .9rem;
    opacity: .9;
    margin-top: .3rem;
    margin-bottom: 0
  }
  
  .dropdown__item-description,
  .dropdown__item-title {
    width: 95%
  }
  
  .hero__content {
    text-align: initial
  }
  
  .hero__body {
    padding-top: 2rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 1
  }
  
  @media (min-width:992px) {
    .hero__body {
      padding-top: 4rem;
      padding-bottom: 6rem
    }
  }
  
  .hero__title {
    font-size: 2rem;
    font-weight: 900
  }
  
  .hero__paragraph {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: .98
  }
  
  @media (min-width:576px) {
    .hero__title {
      font-size: 2.5rem;
      line-height: 1.17
    }
  
    .hero__paragraph {
      width: 80%;
      margin: auto
    }
  }
  
  @media (min-width:768px) {
    .hero__title {
      font-size: 3rem
    }
  }
  
  @media (min-width:992px) {
    .hero__title {
      font-size: 3.1rem;
      line-height: 1.17
    }
  
    .hero__paragraph {
      font-size: 1.2rem;
      width: 100%
    }
  }
  
  @media (min-width:1200px) {
    .hero__title {
      font-size: 3.1rem;
      line-height: 1.25
    }
  }
  
  .hero__btns-container {
    margin-left: -.5rem;
    margin-right: -.5rem
  }

  .hero-feature-pills {
    max-width: 620px;
  }

  .hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a5568;
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.15);
    transition: all 0.2s ease;
  }

  .hero-pill:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    color: #4338ca;
    transform: translateY(-1px);
  }

  .hero-pill--more {
    background: rgba(102, 126, 234, 0.15);
    color: #4338ca;
    font-weight: 600;
  }
  
  .signup-form {
    border-radius: 8px;
    padding: 2rem;
    margin: 0 -.5rem;
    background: #fff;
    box-shadow: 0 11px 20px 13px rgba(0, 0, 0, .06);
    position: relative;
    z-index: 1
  }
  
  .signup-form__title {
    font-weight: 600;
    opacity: .8;
    text-align: center;
    margin-bottom: 31px;
    margin-top: 10px;
    font-size: 1.3rem
  }
  
  @media (min-width:992px) {
    .signup-form {
      margin: 0
    }
  }
  
  .signup-form__input {
    width: 100%;
    padding: .93rem 1.4rem;
    border-radius: 5px;
    border: 1px solid #e5e7eb;
    margin-bottom: 1.25rem
  }
  
  .signup-form__input:last-child {
    margin-bottom: 0
  }
  
  .signup-form__input:focus {
    border-color: var(--primary);
    background: rgba(0, 0, 0, .05);
    outline: 0;
    box-shadow: none
  }
  
  .signup-form__submit-btn {
    padding: .93rem 2rem;
    border-radius: 5px
  }
  
  .signup-form__hr {
    border-color: rgba(0, 0, 0, .15);
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
    transform: scaleX(1.5)
  }
  
  .signup-form__p {
    font-size: .87rem;
    line-height: 1.4;
    text-align: center;
    opacity: .9
  }
  
  .form-dots-svg {
    color: var(--primary);
    position: absolute;
    z-index: 0
  }
  
  .form-dots-svg--top-left {
    width: 250px;
    height: 250px;
    transform: translate(-1.3rem, -2.3rem);
    left: 0;
    top: 0
  }
  
  .form-dots-svg--bottom-right {
    width: 300px;
    height: 300px;
    transform: translate(2.3rem, 3.3rem);
    right: 0;
    bottom: 0
  }

  .hero-nav--is-sticky {
    box-shadow: none;
  }

  .hero-nav--is-sticky::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: white;
    width: 99999%;
    margin-left: -999%;
    z-index: -1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  }

/* Block */
.steps-block {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color)
  }
  
  .the-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
    position: relative
  }
  
  .the-step__content {
    padding: 0 1.4rem;
    text-align: center
  }
  
  @media (min-width:992px) {
    .the-step__symbol-container {
      margin-bottom: 1.2rem
    }
  }
  
  .the-step__symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4.25rem;
    width: 4.25rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    background: rgba(0, 0, 0, .08);
    border-radius: 5px
  }
  
  .the-step__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem
  }
  
  @media (min-width:992px) {
    .the-step__title {
      font-size: 1.5rem;
      line-height: 1.5
    }
  }
  
  .the-step__paragraph {
    font-size: 1rem;
    line-height: 1.6;
    opacity: .95;
    margin: 0
  }
  
  .the-step__arrow {
    display: none
  }
  
  @media (min-width:992px) {
    .the-step__arrow {
      display: block;
      position: absolute;
      top: 17px;
      right: 0;
      left: auto;
      bottom: 0;
      font-size: 2rem;
      transform: translateX(32px);
      width: 50px
    }
  
    .the-step:last-of-type .the-step__arrow {
      display: none
    }
  }

/* Block */
.block-5 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color)
  }
  
  .card-2 {
    margin-bottom: 2.1rem
  }
  
  .card-2:last-child {
    margin-bottom: 0
  }
  
  .card-2__title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5
  }
  
  .card-2__paragraph {
    font-size: .95rem;
    line-height: 1.6;
    opacity: .95
  }
  
  @media(min-width:992px) {

    .card-2__paragraph,
    .card-2__title {
      margin: 0 .5rem
    }
  }

  /* Pain/problem cards — shared by feature-detail problems section and alternatives _why_switch */
  .pain-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  .pain-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
  }
  .pain-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #fee2e2;
    color: #dc2626;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  .pain-card__icon svg {
    width: 24px;
    height: 24px;
  }
  .pain-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }
  .pain-card__desc {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
  }

  /* Block */
.block-10 {
    background: var(--gradient-secondary);
    color: var(--text-primary)
  }
  
  .block-10__row {
    height: 300px
  }
  
  @media(min-width:992px) {
    .block-10__row {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      height: 100%
    }
  }
  
  .block-10__image-column {
    height: 100%;
    background-position: center;
    background-size: cover
  }
  
  @media(min-width:992px) {
    .block-10__image-column {
      margin: 0 !important
    }
  }
  
  .block-10__card {
    border-radius: 5px;
    margin-top: -100px;
    padding: 3.3rem 2rem;
    background: #fff;
    position: relative;
    z-index: 2
  }
  
  @media(min-width:470px) {
    .block-10__card {
      padding: 3.3rem
    }
  }
  
  @media(min-width:992px) {
    .block-10__card {
      margin-top: 0
    }
  }
  
  .block-10__li {
    font-size: 1rem;
    font-weight: 600;
    opacity: .9;
    margin-bottom: 1.0rem;
    line-height: 1.4
  }
  
  .block-10__li:last-child {
    margin-bottom: 0
  }
  
  .block-10__li-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 5px;
    background: rgba(0, 0, 0, .04);
    margin-bottom: 1.5rem
  }

  /* Block */
.feature-block-video {
    --space-between-blocks: 2rem;
    --space-between-blocks-small-screens: 2rem;
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
    background-position: bottom right;
    background-repeat: no-repeat
  }
  
  .feature-block-video__video {
    width: 100%;
    min-height: 200px;
    border-radius: 15px;
    box-shadow: 0 10px 36px 0 rgba(0, 0, 0, .1);
    background: 0 0;
    border: 1px solid #eee;
    border-top: none
  }
  
  @media(min-width:992px) {
    .feature-block-video__video {
      min-height: 457px
    }
  }

  /* Block */
.block-68 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color)
  }
  
  .testimonial-card-1 {
    padding: 2.2rem;
    border-radius: 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 0
  }
  
  .testimonial-card-1::before {
    background: #fff;
    border: 1px solid #e4e5e7;
    border-radius: 5px;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 9%);
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .5
  }
  
  .testimonial-card-1 * {
    position: relative;
    z-index: 2
  }
  
  .testimonial-card-1__paragraph {
    flex-grow: 1;
    font-size: .95rem;
    opacity: .9;
    line-height: 1.7;
    padding-bottom: 1.5rem
  }
  
  .flex-testimonials-block-person {
    display: flex;
    align-items: center;
    margin-top: -1rem
  }
  
  .flex-testimonials-block-person__avatar {
    width: 56px;
    height: 56px;
    border-radius: 10rem
  }
  
  .flex-testimonials-block-person__name {
    font-size: .87rem;
    font-weight: 600
  }
  
  .flex-testimonials-block-person__info {
    font-size: .87rem;
    opacity: .9
  }
  
  @media (min-width:1400px) {
    #block__container {
      max-width: 87%
    }
  }

/* Block */
.faq-accordion-block {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background)
  }
  
  .faq-accordion__list {
    padding-left: 0;
    list-style: none
  }
  
  .faq-accordion {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: .9;
    border-top: 1px solid #e5e6ed;
    padding: 1.1rem 0;
    cursor: pointer;
    position: relative
  }
  
  .faq-accordion__title {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: .9;
    margin: 0;
    padding-right: 40px
  }
  
  .faq-accordion__paragraph {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: .9;
    padding: 0 40px 1.1rem 0;
    margin: 0;
    border-bottom: 1px solid #e5e6ed
  }
  
  .faq-accordion__section--open .faq-accordion__paragraph {
    border-bottom: none
  }
  
  @media (min-width:992px) {
    .faq-accordion {
      font-size: 1.5rem
    }
  }
  
  .faq-accordion-block-accordion .faq-accordion__section--open .faq-accordion .faq-accordion__icon {
    transform: rotate(180deg)
  }
  
  .faq-accordion .faq-accordion__icon {
    position: absolute;
    right: 20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    transition: .3s all
  }
  
  .faq-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: .4s all
  }

 /* Block */
.block-41 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
    font-size: .87rem
  }
  
  .block-41__logo {
    height: 36px
  }
  
  .block-41__brand-story {
    font-size: .87rem;
    line-height: 1.7
  }
  
  @media(min-width:768px) {
    .block-41__brand-story {
      width: 90%
    }
  }
  
  .block-41__li-heading {
    font-weight: 600;
    margin-top: .5rem;
    margin-bottom: 1.2rem;
    font-size: .8rem;
    text-transform: uppercase
  }
  
  .block-41__li {
    margin-bottom: .7rem;
    font-size: 1rem
  }
  
  .block-41__extra-link,
  .block-41__li-link {
    color: var(--block-text-color);
    text-decoration: none
  }
  
  .block-41__extra-link:focus,
  .block-41__extra-link:hover,
  .block-41__li-link:focus,
  .block-41__li-link:hover {
    color: inherit;
    text-decoration: underline
  }
  
  .block-41__divider {
    margin: 2.4rem 0;
    color: #88909b
  }
  
  .block-41__extra-links {
    justify-content: center
  }
  
  @media(min-width:768px) {
    .block-41__extra-links {
      justify-content: flex-start
    }
  }
  
  .block-41__copyrights {
    width: 90%;
    margin: auto;
    text-align: center
  }
  
  @media(min-width:768px) {
    .block-41__copyrights {
      width: auto;
      text-align: initial
    }
  }

/* Block */
.block-8-iph {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color)
  }
  
  .block-8-iph__li {
    font-size: 1rem;
    font-weight: 600;
    opacity: .9;
    margin-bottom: .8rem
  }
  
  .block-8-iph__li:last-child {
    margin-bottom: 0
  }
  
  .plan-features__icon {
    width: 1.1rem;
    height: 1.1rem;
    color: #33c58d
  }
  
  .block-8-iph__li-icon {
    color: #33c58d;
    transform: scale(1.5)
  }
  
  .block-8-iph__list {
    margin-top: 1.3rem
  }
  
  .iphone-mockup {
    width: 50%;
    margin: auto;
    position: relative;
    z-index: 1
  }
  
  @media (min-width:524px) {
    .iphone-mockup {
      width: 30%
    }
  }
  
  @media (min-width:992px) {
    .iphone-mockup {
      width: 250px
    }
  }
  
  .iphone-mockup::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 92%;
    height: 97%;
    background: repeating-linear-gradient(-65deg, rgba(255, 255, 255, .2), rgba(0, 0, 0, .05) 50%);
    z-index: 0;
    margin: auto;
    border-radius: 2rem
  }
  
  .iphone-mockup__img {
    height: auto;
    width: 100%;
    position: relative;
    z-index: 1
  }
  
  .iphone-mockup__screenshot {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 84%;
    height: 93%;
    margin: auto
  }
  
  .block-8-iph-iph-blob-svg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    transform: scale(.8);
    color: var(--primary)
  }
  
  @media(min-width:524px) {
    .block-8-iph-iph-blob-svg {
      transform: scale(.5)
    }
  }
  
  @media(min-width:992px) {
    .block-8-iph-iph-blob-svg {
      transform: scale(.85)
    }
  }
  
  ./* Block */ {
    color: var(--primary);
    position: absolute;
    bottom: 0;
    width: 250px;
    height: 150px;
    transform: translate(-85px, 55px);
    clip-path: polygon(24% 62%, 100% 62%, 100% 100%, 0 100%, 0 0, 24% 0)
  }
  
  @media (min-width:992px) {
    ./* Block */ {
      transform: translate(-85px, 55px);
      clip-path: polygon(24% 62%, 100% 62%, 100% 100%, 0 100%, 0 0, 24% 0)
    }
  }

  /*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-24 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
    margin-bottom: 4rem
  }
  
  .block-24__logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
  }
  
  .block-24__img {
    height: 35px;
    max-width: 50%;
    max-height: 150px;
    opacity: .8;
    transition: .2s all;
    margin: 0 2rem;
    margin-bottom: 2rem
  }
  
  @media(max-width:500px) {
    .block-24__img {
      flex: 0 0 auto;
      max-width: 40%;
      padding: 15px;
      margin: 0;
      width: auto;
      height: auto
    }
  }
  
  @media(min-width:992px) {
    .block-24__img {
      max-width: 150px
    }
  }
  
  .block-24__img:focus,
  .block-24__img:hover {
    opacity: 1
  }

  .leaf-container {
    
    
    display: flex;
    align-items: center;
}
.leaf {
    width: 100%;
    height: 105px !important;
    opacity: 0.7;
}

.rating {
    font-size: 0.9rem;
}

/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-38 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color)
  }
  
  .block__header {
    margin-bottom: 4rem
  }
  
  .block__pre-title {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600
  }
  
  .block__title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4
  }
  
  @media(min-width:992px) {
    .block__title {
      font-size: 2.5rem
    }
  }
  
  .block__paragraph {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: .9
  }
  
  .stats {
    background: var(--gradient-secondary);
    color: var(--secondary-invert);
    border-radius: .5rem;
    --stats-li-border-color: rgba(255, 255, 255, 0.2)
  }
  
  .stats__li {
    border-bottom: 1px solid var(--stats-li-border-color);
    padding: 1.5rem 0 !important
  }
  
  .stats__li:last-child {
    border-bottom: none
  }
  
  .stats__li {
    border-right: 1px solid var(--stats-li-border-color);
    padding: 1.5rem 0 !important
  }
  
  .stats__li:nth-child(3),
  .stats__li:nth-child(4) {
    border-bottom: none
  }
  
  .stats__li:nth-child(even) {
    border-right: none
  }
  
  @media(min-width:992px) {
    .stats__li {
      border-bottom: none;
      border-right: 1px solid var(--stats-li-border-color) !important;
      padding: 0 !important
    }
  
    .stats__li:last-child {
      border-right: none !important
    }
  }
  
  .stats__number {
    font-size: 2.5rem;
    font-weight: 900
  }
  
  .stats__text {
    width: 90%;
    margin: auto;
    font-size: .87rem;
    opacity: .9
  }
  
  @media(min-width:992px) {
    .stats__text {
      width: 100%
    }
  }

  /*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-6 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color)
  }
  
  .card-2 {
    margin-bottom: 2.1rem
  }
  
  .card-2:last-child {
    margin-bottom: 0
  }
  
  .card-2__title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.46
  }
  
  @media(min-width:992px) {
    .card-2__title {
      margin: 0 .5rem
    }
  }

  
  /*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-18 {
    --elements-roundness: 5px;
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
    padding-top: 5.8rem;
    padding-bottom: 5.8rem
  }
  
  .block-18__card {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .09)
  }
  
  .testimonial-card-3 {
    background: var(--gradient-secondary);
    color: var(--secondary-invert);
    padding: 2rem;
    position: relative
  }
  
  @media(min-width:992px) {
    .testimonial-card-3 {
      padding: 3.1rem
    }
  }
  
  .testimonial-card-3__paragraph {
    font-size: .92rem;
    opacity: .9;
    line-height: 1.7
  }
  
  .person__avatar {
    padding: 3px;
    width: 68px;
    height: 68px;
    background: #fff;
    border-radius: 10rem
  }
  
  .person__rating {
    font-size: .75rem;
    color: #ffe200
  }
  
  .person__name {
    font-size: .87rem;
    font-weight: 600
  }
  
  .person__info {
    font-size: .8rem;
    opacity: .9
  }
  
  .cta-card {
    padding: 2rem
  }
  
  @media(min-width:992px) {
    .cta-card {
      padding: 3.1rem
    }
  }
  
  .cta-card__title {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.4
  }
  
  @media(min-width:768px) {
    .cta-card__title {
      font-size: 3.1rem
    }
  }

  /*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-3 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color)
  }
  
  .card-3 {
    text-align: center
  }
  
  .card-3__title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5
  }
  
  .card-3__paragraph {
    font-size: .95rem;
    line-height: 1.6;
    opacity: .95
  }

  /*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-7 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color)
  }
  
  .block__header {
    margin-bottom: 4rem
  }
  
  .block__pre-title {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600
  }
  
  .block__title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4
  }
  
  @media (min-width:992px) {
    .block__title {
      font-size: 2.5rem
    }
  }
  
  .block__paragraph {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: .9
  }
  
  .card-2 {
    margin-bottom: 2.1rem
  }
  
  .card-2:last-child {
    margin-bottom: 0
  }
  
  .card-2__title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.46
  }
  
  .card-2__paragraph {
    font-size: 1rem;
    line-height: 1.6;
    opacity: .95;
    margin: 0
  }

  .affiliate-ref-message{
    background-color: #5918f6;
    color: white;
    text-align: center;
    padding: 10px;
    position: sticky;
    bottom: 10px;
    width: 45%;
    margin: 0px auto;
    border-radius: 7px;
    z-index: 3;
    box-shadow: 0 0 20px #5918f6;
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .affiliate-ref-message .message{
    padding-top: 5px;
    font-size: larger;
  }

  #copy-ref-link{
    padding: 5px;
  }
  #copy-ref-link:hover{
    color: #000;
  }

  @media only screen and (max-width: 600px) {
    .affiliate-ref-message{
      width: 85%;
    }
    .affiliate-ref-message .message{
      padding-top: 2px;
      font-size: unset;
    }
  }

  @media only screen and (min-width: 768px) {
    .affiliate-ref-message{
      width: 85%;
    }
  }
  @media only screen and (min-width: 992px) {
    .affiliate-ref-message{
      width: 65%;
    }
  }
  @media only screen and (min-width: 1200px) {
    .affiliate-ref-message{
      width: 45%;
    }
  }

/* Trusted companies section start */
.trusted-companies-section {
    background: #f8f9fb;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.logo-scroll-wrapper {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-scroll-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: logoScroll 60s linear infinite;
}

.logo-scroll-track:hover {
    animation-play-state: paused;
}

.logo-scroll-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    min-width: 100px;
    max-width: 200px;
}

.logo-scroll-item img {
    max-height: 45px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-scroll-item img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-scroll-item {
        height: 45px;
        min-width: 80px;
        max-width: 160px;
        padding: 4px 8px;
    }

    .logo-scroll-item img {
        max-height: 40px;
        max-width: 140px;
    }

    .logo-scroll-track {
        gap: 2rem;
        animation-duration: 45s;
    }
}

/* Trusted companies section end */

/* ========================================
   CTA Section (shared across pages)
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 70%),
                      radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-title {
    color: white;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}
.cta-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 2.5rem;
}
.cta-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}
.cta-button svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.cta-button:hover svg {
    transform: translateX(3px);
}
@media (max-width: 768px) {
    .cta-title {
        font-size: 1.75rem;
    }
}

/* ========================================
   Enhanced Card (shared across pages)
   ======================================== */
.enhanced-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 1.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    /* margin-bottom: 2rem; */
}
.enhanced-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.enhanced-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.enhanced-card:hover::before {
    transform: scaleX(1);
}
.enhanced-card .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}
.enhanced-card .icon-wrapper::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.enhanced-card:hover .icon-wrapper::after {
    opacity: 0.3;
}
.enhanced-card .icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: white;
}
.enhanced-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}
.enhanced-card p {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   Feature Detail Page
   ======================================== */

/* Hero icon badge */
.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}
.feature-icon svg {
    width: 45px;
    height: 45px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Hero bullet checkmarks */
.hero-checkmarks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
}
.hero-checkmarks span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: #718096;
}
.hero-checkmarks svg {
    color: var(--formnx-success, #10b981);
    flex-shrink: 0;
}

/* Long-form prose content */
.fd-prose {
    max-width: 800px;
    margin: 0 auto;
}
.fd-prose h2, .fd-prose h3 {
    color: #2d3748;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.fd-prose h2 { font-size: 1.6rem; }
.fd-prose h3 { font-size: 1.3rem; }
.fd-prose p {
    color: #718096;
    line-height: 1.75;
    font-size: 1.02rem;
    margin-bottom: 1.25rem;
}
.fd-prose ul {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.fd-prose li {
    color: #718096;
    line-height: 1.75;
    font-size: 1.02rem;
    margin-bottom: 0.35rem;
}

/* Video embed container */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Responsive for feature detail */
@media (max-width: 768px) {
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-right: 1.5rem;
    }
    .feature-icon svg {
        width: 35px;
        height: 35px;
    }
    .hero-title-row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }
    .hero-title-row .feature-icon {
        margin-bottom: 1.5rem;
        margin-right: 0;
    }
    .hero-checkmarks {
        justify-content: center;
    }
}


/* ========================================
   Alternatives / Comparison Pages
   Used by /alternatives/{competitor} pages and the
   shared partials in resources/views/external_pages/alternatives/
   ======================================== */

/* -- Page-level scoping for /alternatives/* detail pages -- */
.alternative-detail-page {
    --template-theme-color: var(--formnx-success, #10b981);
    --template-theme-hover: #059669;
}
.alternative-detail-page .hero-title {
    line-height: 1.3;
}
.alternative-detail-page .block__title {
    color: var(--formnx-gray-800, #2d3748);
}
.alternative-detail-page .hero-feature-pills {
    max-width: none;
}

/* -- Long-form prose blocks inside an alt page (e.g. "How FormNX solves it") -- */
.alt-prose h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--formnx-gray-800, #2d3748);
}
.alt-prose p {
    margin-bottom: 1rem;
    line-height: 1.7;
}
.alt-prose ul {
    margin-bottom: 1rem;
}
.alt-prose li {
    margin-bottom: 0.5rem;
}

/* -- Screenshot figures inside the feature-by-feature prose -- */
.alt-prose .alt-screenshot {
    margin: 1.5rem 0;
}
.alt-prose .alt-screenshot img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.alt-prose .alt-screenshot figcaption {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.5rem;
    text-align: center;
}

/* -- Hero VS banner: simple wide image with both logos and "VS",
   placed between Hero section and At-a-glance comparison table. */
.alt-vs-banner {
    margin: 2.5rem auto 0;
    padding: 0 16px;
    max-width: 1200px;
    text-align: center;
}
.alt-vs-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}
.alt-vs-banner figcaption {
    margin-top: 12px;
    color: #6b7280;
    font-size: 0.88rem;
}

/* -- Comparison tables: at-a-glance, plans & limits, integrations --
   Bootstrap 5.3's `.table > :not(caption) > * > *` rule applies
   background-color via --bs-table-bg, which silently overrides any
   tint we set on individual cells. We use !important + high
   specificity + an explicit --bs-table-bg override per column to
   guarantee the FormNX (col 2) and competitor (col 3) tints stick. */

/* The site-wide Hope UI / Pro UI CSS applies `text-transform: uppercase`
   to `.table thead th`, which corrupts brand names ("FormNX" → "FORMNX",
   "Jotform" → "JOTFORM"). Force normal casing throughout our comparison
   tables so brand names render exactly as written. */
table.alt-comparison-table,
table.alt-comparison-table thead th,
table.alt-comparison-table thead th *,
table.alt-comparison-table tbody td,
table.alt-comparison-table tbody td * {
    text-transform: none !important;
    letter-spacing: normal !important;
}

table.alt-comparison-table > thead > tr > th:nth-child(2),
table.alt-comparison-table > tbody > tr > td:nth-child(2) {
    background-color: rgba(16, 185, 129, 0.06) !important; /* FormNX green tint */
    border-left: 2px solid rgba(16, 185, 129, 0.25) !important;
    border-right: 2px solid rgba(16, 185, 129, 0.25) !important;
    --bs-table-bg: rgba(16, 185, 129, 0.06);
}
table.alt-comparison-table > thead > tr > th:nth-child(2) {
    background-color: rgba(16, 185, 129, 0.12) !important;
    border-top: 2px solid rgba(16, 185, 129, 0.35) !important;
}
table.alt-comparison-table > thead > tr > th:nth-child(3),
table.alt-comparison-table > tbody > tr > td:nth-child(3) {
    background-color: rgba(108, 117, 125, 0.04) !important; /* Neutral grey for competitor */
    --bs-table-bg: rgba(108, 117, 125, 0.04);
}
table.alt-comparison-table > thead > tr > th:nth-child(3) {
    background-color: rgba(108, 117, 125, 0.10) !important;
}

/* -- Cell content: bold headline + smaller grey sub-line below -- */
table.alt-comparison-table tbody tr td strong {
    color: #1f2937 !important;
    font-weight: 700 !important;
}
table.alt-comparison-table tbody tr td .cell-sub {
    color: #6b7280 !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    display: block !important;
    margin-top: 4px !important;
}
/* Hide the <br> we inject before .cell-sub as a structural fallback -
   the block-level span already creates the line break, so the <br>
   would otherwise add an extra blank line. */
table.alt-comparison-table tbody tr td br {
    display: none;
}

/* -- Table header brand block (logo + brand name, side by side) -- */
.alt-comparison-table .col-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}
.alt-comparison-table .col-brand img {
    height: 24px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}
.alt-comparison-table .col-brand .brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #ffe5d5;
    color: #ff6100;
    font-weight: 700;
    font-size: 0.85rem;
}

/* -- Side-by-side vendor compare cards inside .alt-prose --
   Used to break each comparison topic into a 2-column "Jotform vs FormNX"
   pair so scanners can read the bold lead sentences in parallel and get
   the gist without reading the body. Stacks on mobile. */
.alt-prose .vs-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 1.5rem 0 2.5rem;
}
.alt-prose .vs-card {
    border-radius: 14px;
    padding: 28px 30px;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.alt-prose .vs-card--competitor {
    background: rgba(108, 117, 125, 0.05);
    border-left: 4px solid #9ca3af;
}
.alt-prose .vs-card--formnx {
    background: rgba(16, 185, 129, 0.06);
    border-left: 4px solid #10b981;
}
.alt-prose .vs-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1f2937;
    font-size: 0.95rem;
}
.alt-prose .vs-card__header img {
    height: 20px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
}
.alt-prose .vs-card__header .brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background: #ffe5d5;
    color: #ff6100;
    font-weight: 700;
    font-size: 0.72rem;
}
.alt-prose .vs-card__lead {
    font-weight: 700;
    color: #111827;
    font-size: 1.05rem;
    line-height: 1.45;
    margin-bottom: 10px;
}
.alt-prose .vs-card__body {
    color: #4b5563;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}
.alt-prose .vs-card__body a {
    color: #059669;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.alt-prose .vs-card__body a:hover {
    color: #047857;
}
@media (max-width: 991px) {
    .alt-prose .vs-compare-grid {
        gap: 20px;
    }
    .alt-prose .vs-card {
        padding: 22px 24px;
    }
}
@media (max-width: 768px) {
    .alt-prose .vs-compare-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 1.25rem 0 1.5rem;
    }
}

/* -- Customer quote row under a vs-compare-grid pair --
   Supports the FormNX side of the argument with a real testimonial.
   Centred, green-tinted to telegraph allegiance, italic body, attribution
   below. Sits visually subordinate to the cards above. */
.alt-prose .vs-quote {
    margin: -0.5rem auto 2.5rem;
    padding: 22px 28px 20px;
    max-width: 760px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 12px;
    text-align: center;
    position: relative;
}
.alt-prose .vs-quote::before {
    content: '\201C'; /* Left double quotation mark */
    position: absolute;
    top: -2px;
    left: 18px;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(16, 185, 129, 0.35);
    font-family: Georgia, "Times New Roman", serif;
}
.alt-prose .vs-quote__text {
    font-style: italic;
    color: #374151;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}
.alt-prose .vs-quote__attribution {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}
.alt-prose .vs-quote__attribution strong {
    color: #059669;
    font-weight: 700;
}
@media (max-width: 768px) {
    .alt-prose .vs-quote {
        padding: 18px 20px 16px;
        margin-bottom: 2rem;
    }
    .alt-prose .vs-quote__text {
        font-size: 0.95rem;
    }
}

/* -- Cost stack: Google Forms add-on stack vs FormNX one subscription
   Used on /alternatives/google-forms (and any future alt page where we
   want to show "real total cost when you stitch together the workarounds"). */
.cost-stack-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 1.5rem 0 0;
}
.cost-stack {
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.cost-stack--competitor { border-left: 4px solid #9ca3af; }
.cost-stack--formnx     { border-left: 4px solid #10b981; }
.cost-stack__header {
    padding: 18px 24px;
    background: rgba(108, 117, 125, 0.06);
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e5e7eb;
}
.cost-stack--formnx .cost-stack__header {
    background: rgba(16, 185, 129, 0.08);
}
.cost-stack__header img { height: 22px; width: auto; }
.cost-stack__items {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cost-stack__items li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    font-size: 0.94rem;
}
.cost-stack__items li:last-child { border-bottom: 0; }
.cost-stack__item-label { flex: 1; margin-right: 12px; }
.cost-stack__item-price {
    font-variant-numeric: tabular-nums;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
}
.cost-stack__total {
    padding: 14px 24px;
    background: rgba(220, 38, 38, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
}
.cost-stack__total > span { color: #6b7280; font-size: 0.9rem; }
.cost-stack__total strong { color: #dc2626; font-size: 1.15rem; }
.cost-stack__total--win {
    background: rgba(16, 185, 129, 0.1);
    justify-content: center;
    text-align: center;
}
.cost-stack__total--win span {
    color: #047857;
    font-weight: 700;
    font-size: 1rem;
}
.cost-stack__hidden,
.cost-stack__included {
    padding: 16px 24px 20px;
    flex: 1;
}
.cost-stack__hidden { background: rgba(220, 38, 38, 0.025); border-top: 1px solid #fee2e2; }
.cost-stack__hidden-title {
    font-weight: 700;
    color: #b91c1c;
    margin: 0 0 8px;
    font-size: 0.9rem;
}
.cost-stack__included > p {
    font-weight: 700;
    margin: 0 0 10px;
    color: #1f2937;
    font-size: 0.92rem;
}
.cost-stack__hidden ul,
.cost-stack__included ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cost-stack__hidden ul li,
.cost-stack__included ul li {
    padding: 5px 0;
    color: #4b5563;
    font-size: 0.88rem;
    line-height: 1.5;
}
.cost-stack__included ul li { color: #1f2937; }
.cost-stack__included ul li::before {
    content: "✓";
    color: #10b981;
    font-weight: 700;
    margin-right: 8px;
}
@media (max-width: 991px) {
    .cost-stack-grid { gap: 20px; }
}
@media (max-width: 768px) {
    .cost-stack-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* -- Verified customer review block, used at section breaks throughout the
   /alternatives/{competitor} page. Reuses real testimonials (with verification
   link to Trustpilot or G2) pulled from the existing mini_testimonials partial. */
.alt-review-section {
    padding: 32px 0;
}
.alt-review-section + .alt-review-section,
.alt-review-section:has(+ .space-between-blocks),
.alt-review-section + .space-between-blocks {
    /* Slight breathing-room reset when a review sits between standard sections */
}
.alt-final-review {
    max-width: 760px;
    margin: 0 auto;
    padding: 32px 36px 28px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(16, 185, 129, 0.08);
    position: relative;
}
.alt-final-review__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 14px;
}
.alt-final-review__stars svg {
    width: 20px;
    height: 20px;
    color: #f59e0b;
}
.alt-final-review__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1f2937;
    font-style: italic;
    text-align: center;
    margin: 0 0 22px;
}
.alt-final-review__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.alt-final-review__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.alt-final-review__identity {
    text-align: left;
}
.alt-final-review__identity strong {
    display: block;
    font-size: 0.95rem;
    color: #111827;
    font-weight: 700;
}
.alt-final-review__identity small {
    color: #6b7280;
    font-size: 0.82rem;
}
.alt-final-review__verify {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 999px;
    color: #059669;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}
.alt-final-review__verify:hover {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
}
.alt-final-review__verify img {
    width: 16px;
    height: 16px;
}
@media (max-width: 575px) {
    .alt-final-review {
        padding: 24px 22px 22px;
    }
    .alt-final-review__text {
        font-size: 1rem;
    }
    .alt-final-review__footer {
        justify-content: flex-start;
    }
    .alt-final-review__verify {
        margin-left: 0;
        margin-top: 8px;
    }
}

/* Hero nav Solutions / Templates dropdowns — desktop hover bridge.
   Removes the gap between the toggle and the absolutely-positioned menu so the
   cursor never crosses dead space (which would fire mouseleave on the <li> and
   close the menu mid-traversal, blocking clicks on the second item).
   Desktop-only: on mobile/tablet the menu is tap-toggled, and a transparent
   bridge over the toggle would swallow the close-tap. */
@media (min-width: 992px) {
    .hero-nav__item.dropdown .dropdown-menu {
        margin-top: 0;
    }
    .hero-nav__item.dropdown .dropdown-menu::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -12px;
        height: 12px;
        background: transparent;
    }
}

/*----------------------------------------------------------------------------
 * Tool-page CTA card "Compare options?" pill link
 * Used in: /tools/qr-code-for-google-forms, /tools/google-forms-email-notifications,
 *          /tools/embed-google-form-on-website
 * Placed ABOVE the primary CTA button as a low-friction off-ramp for still-researching
 * readers. Sized so the main CTA stays visually dominant.
 *--------------------------------------------------------------------------*/
.cta-card__small--above { margin: 0 0 1rem; opacity: 1; }
.cta-card__small--above a {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(11, 45, 65, 0.25);
    color: #0b2d41;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
}
.cta-card__small--above a:hover {
    background: rgba(11, 45, 65, 0.05);
    text-decoration: none;
}

/*----------------------------------------------------------------------------
 * Tool-page "Real limitations" cards — amber-bordered warning cards used to
 * surface honest unsolvable limits of Google Forms (drives loss aversion ->
 * conversion to FormNX). Heading stays brand-dark so the page doesn't scream;
 * only the .hl "punch words" inside the body turn red, so the eye catches the
 * cost without the whole section feeling alarmist.
 *
 * Used in: /tools/google-forms-email-notifications,
 *          /tools/embed-google-form-on-website
 *--------------------------------------------------------------------------*/
.problem {
    background: #fff;
    border: 1px solid #f0e6d4;
    border-left: 3px solid #d97706;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 14px;
}
.problem h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #0b2d41;
}
.problem p {
    font-size: 0.95rem;
    color: #4a5560;
    margin: 0;
    line-height: 1.6;
}
.problem p .hl {
    color: #b02a37;
    font-weight: 600;
    background: rgba(192, 57, 43, 0.06);
    padding: 0 3px;
    border-radius: 3px;
}