@charset 'UTF-8';

@import url('https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css');

.fazier-badge {
  display: block;
  width: 270px;
  min-height: 57px;
  margin: 0 auto;
  background-color: #d5d5d5;
  border-radius: 12px;
}

.rating {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;

  .rating__stars > svg {
    width: 24px;
    height: 24px;
    color: rgb(234 179 8/1);
    margin-left: -4px;
  }
}

.beat-line {
  width: 80%;
  height: 3px;
  background: linear-gradient(to right, #0fd9de, #895bfe);
  position: relative;
  margin: 56px auto;
  border-radius: 10px;
  animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: scaleY(1);
  }
  40% {
    transform: scaleY(0.8);
  }
  60% {
    transform: scaleY(1.2);
  }
}

a:not(.button):not(.card-footer-item):not(.navbar-item) {
  color: #31629e;
  font-weight: 700;
}

a:not(.button):not(.card-footer-item):not(.navbar-item):hover {
  color: #4382d0;
  text-decoration: underline;
}

.button.is-white-space-normal {
  height: auto !important;
  white-space: normal !important;
}

.hero {
  position: relative;
  z-index: 2;
}

.hero .logo {
  max-width: 200px;
  border-radius: 8px;
}

.hero .image.is-desktop {
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 197 / 112;
}

.hero .image.is-desktop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero + .section {
  position: relative;
  z-index: 5;
  background-color: white;
}

.box,
.card {
  border-radius: 16px;
  overflow: hidden;
}

ul.has-diviser > li:not(:last-child) {
  border-bottom: 1px solid lightgrey;
}

.is-primary:not(.is-outlined) {
  background-color: #1972f5;
  border-color: #1972f5;
}

.button {
  border-radius: 32px;
}

.button.is-primary:not(.is-outlined),
.button.has-background-gradient {
  position: relative;
}

.button.is-primary:not(.is-outlined)::after,
.button.has-background-gradient::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(to left, rgba(15, 217, 222, 0.9), rgba(137, 91, 254, 0.9));
  opacity: 0;
  animation: sonar-pulse 2s infinite;
  pointer-events: none;
  z-index: -1;
}

.navbar .button.is-primary:not(.is-outlined)::after,
.navbar .button.has-background-gradient::after {
  display: none;
}

.section__entice .button.is-primary:not(.is-outlined)::after {
  filter: brightness(1.3);
}

@keyframes sonar-pulse {
  0% {
    transform: scaleX(1) scaleY(1);
    opacity: 0;
  }

  20% {
    transform: scaleX(1) scaleY(1);
    opacity: 0.8;
  }

  100% {
    transform: scaleX(1.15) scaleY(1.5);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button.is-primary:not(.is-outlined)::after,
  .button.has-background-gradient::after {
    animation: none;
  }
}

.button.is-primary.is-outlined {
  color: #1972f5;
  border-color: #1972f5;
}

.button.is-primary:not(.is-outlined):hover,
.button.is-primary.is-outlined:hover,
.button.is-primary:not(.is-outlined):focus,
.button.is-primary.is-outlined:focus,
.button.is-primary:not(.is-outlined):active,
.button.is-primary.is-outlined:active,
.button.is-primary:not(.is-outlined).is-active,
.button.is-primary.is-outlined.is-active,
.button.is-primary:not(.is-outlined).is-hovered,
.button.is-primary.is-outlined.is-hovered,
.button.is-primary:not(.is-outlined).is-focused,
.button.is-primary.is-outlined.is-focused {
  color: white;
  background-color: #115ed2;
  border-color: #115ed2;
}

.has-text-gradient {
  background: linear-gradient(to left, #0fd9de, #895bfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.has-background-gradient {
  position: relative;
  background: #00dbde;
  background: linear-gradient(to left, #0fd9de, #895bfe);
  z-index: 1;
  overflow: hidden;
}

.has-background-gradient.is-hoverable {
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}

.has-background-gradient.is-hoverable:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.has-background-image-blue {
  background-image: url('/png/background-geometrical-blue.png');
  background-clip: border-box;
  background-size: cover;
}

.has-background-image-grey {
  background-image: url('./assets/images/png/background-geometrical-grey.png');
  background-clip: border-box;
  background-size: cover;
}

.has-shadow {
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.4);
}

.has-max-width-800 {
  max-width: 800px;
  margin: 0 auto;
}

.is-rounded {
  border-radius: 16px;
}

.is-rounded-top {
  border-radius: 16px 16px 0 0;
}

.is-overflow-hidden {
  overflow: hidden;
}

.section__mailerlite {
  background-color: #444;
}

.section__entice {
  position: relative;
}

.section__entice::after {
  content: '';
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
}

.section__entice::after,
.footer {
  background-color: #444;
}

.footer .menu-label {
  color: whitesmoke;
}

.footer .menu-list a {
  display: inline-block;
}

.footer .menu-list a:hover {
  background-color: transparent;
}

.stripe-climate-badge {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: bottom;
}

.document-icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  display: inline-block;
  vertical-align: middle;
}

.footer {
  background-color: #444;
  color: #fff;
}

.footer a {
  color: #0fd9de !important;
  font-weight: normal !important;
}

/*
 * ---
 * TABS
 * ---
 */

#workflow .box {
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .tabs.is-vertical ul {
    display: block;
    flex-direction: column;
    align-items: flex-end;
    border-bottom-color: transparent;
  }

  .tabs.is-vertical ul a {
    color: #444 !important;
    justify-content: flex-start;
  }
}

.tabs li {
  margin-bottom: 1px;

  a:hover {
    text-decoration: none !important;
  }
}

.tabs li.is-active {
  background-color: #fff;

  a {
    background: linear-gradient(to left, #0fd9de, #895bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

#social-proof {
  .box-testimonial {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 4px;
    min-height: 180px;
  }

  .box-testimonial__message,
  .box-testimonial__author {
    display: flex;
    gap: 8px;
  }

  .box-testimonial__message {
    margin-bottom: 16px;
    align-items: start;
  }

  .box-testimonial__author {
    align-items: center;
  }

  .box-testimonial__double-quotes {
    width: 48px;
    height: 48px;
  }
}

#workflow {
  .workflow__wrapper {
    overflow: hidden;
    overflow-x: auto;
  }

  .workflow__steps {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    width: 800px;
    margin: 16px auto;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 3px 12px;
    overflow: hidden;
  }

  .workflow__steps li {
    position: relative;
    width: calc(800px / 3);
  }

  .workflow__steps li .workflow__step-content {
    position: relative;
    padding: 24px;
    height: 100%;
    background-color: #fff;
  }

  .workflow__steps li:not(:first-child) .workflow__step-content {
    padding-left: 36px;
  }

  .workflow__steps li:not(:last-child) {
    border-right: 2px solid #ccc;
  }

  .workflow__steps li:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: -35px;
    transform: rotate(45deg) translate(-50%, -21%);
    border: 2px solid #ccc;
    border-radius: 4px;
    border-bottom: 0;
    border-left: 0;
    width: 105px;
    height: 105px;
    background-color: #fff;
  }

  .workflow__steps li:nth-child(1) .workflow__step-content {
    z-index: 10;
  }

  .workflow__steps li:nth-child(1)::after {
    z-index: 9;
  }

  .workflow__steps li:nth-child(2) .workflow__step-content {
    z-index: 8;
  }

  .workflow__steps li:nth-child(2)::after {
    z-index: 7;
  }

  .workflow__steps li:nth-child(3) .workflow__step-content {
    z-index: 6;
  }

  .workflow__steps li:nth-child(3)::after {
    z-index: 5;
  }
}

/* Fix subtitle strong color on blue background */
.subtitle.has-text-white strong {
  color: white;
}

/* Pricing cards */
.pricing-card__badge {
  background: linear-gradient(to left, #0fd9de, #895bfe);
  color: white;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card__price {
  margin: 16px 0;
}

.pricing-card__currency {
  font-size: 2rem;
  vertical-align: top;
  line-height: 2.5rem;
  color: #4a4a4a;
}

.pricing-card__amount {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #363636;
}

.pricing-card__period {
  font-size: 1.5rem;
  color: #7a7a7a;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card__features li {
}

.pricing-card--monthly {
  background-color: rgba(255, 255, 255, 0.9) !important;
  transition: background-color 0.3s ease;
}

.pricing-card--monthly:hover {
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.pricing-card--annual {
  transform: scale(1.06);
  z-index: 2;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.25),
    0 16px 40px rgba(0, 0, 0, 0.12) !important;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card--annual {
    transform: none;
  }
}
