@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/src/assets/fonts/Plus-Jakarta-Sans_VariableFont.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  src: url("/src/assets/fonts/Material-Symbols-Outlined_VariableFont_icons.woff2") format("woff2");
  font-display: swap;
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  font-display: block;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

button {
  border: none;
  background-color: transparent;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #1a1f2c;
  background-color: #fcfdfd;
  background-image: radial-gradient(at 0% 0%, hsla(283, 34%, 59%, 0.2) 0px, transparent 50%), radial-gradient(at 100% 0%, hsla(140, 85%, 50%, 0.15) 0px, transparent 50%), radial-gradient(at 100% 100%, hsla(283, 34%, 59%, 0.1) 0px, transparent 50%), radial-gradient(at 0% 100%, hsla(140, 85%, 50%, 0.1) 0px, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
}

h2 {
  font-size: 3rem;
  font-weight: 700;
}

a {
  text-decoration: none;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text-gradient--purple {
  background: linear-gradient(135deg, #714B67 0%, #492d41 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient--green {
  background: linear-gradient(135deg, #34aa90 0%, #3ECDAE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(113, 75, 103, 0.2);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.1);
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined", sans-serif;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

@keyframes float {
  0%, 100% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.animate-float {
  animation: float 7s ease-in-out infinite;
}

.background-blobs {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.background-blobs__blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(100px);
  animation: float 7s ease-in-out infinite;
}
.background-blobs__blob--purple {
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(113, 75, 103, 0.2);
}
.background-blobs__blob--green {
  bottom: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(62, 205, 174, 0.2);
  filter: blur(120px);
  animation-delay: 2s;
}
.background-blobs__blob--blue {
  top: 40%;
  left: 30%;
  width: 400px;
  height: 400px;
  background: rgba(219, 234, 254, 0.3);
  filter: blur(90px);
}

.navbar {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 1rem;
}
.navbar__container {
  max-width: 80rem;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .navbar__inner {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .navbar__inner {
    padding: 0 2rem;
  }
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
}
.navbar__brand:hover .navbar__logo {
  transform: scale(1.05);
}
.navbar__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #000000;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.navbar__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navbar__brand-info {
  display: flex;
  flex-direction: column;
}
.navbar__brand-title {
  color: #492d41;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
.navbar__brand-subtitle {
  margin-top: 2px;
  color: #0583DE;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 840px) {
  .navbar__links {
    display: flex;
  }
}
.navbar__link {
  position: relative;
  padding-bottom: 0.25rem;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}
.navbar__link:hover {
  color: #714B67;
}
.navbar__link:hover .navbar__link-line {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.navbar__link-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #714B67;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.navbar__cta {
  display: none;
}
@media (min-width: 840px) {
  .navbar__cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}
.navbar__cta {
  padding: 0.687rem 1.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  background-color: #1a1f2c;
  border: 1px solid transparent;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.3s ease;
}
.navbar__cta:hover {
  background-color: #714B67;
  border-color: rgba(255, 255, 255, 0.2);
}
.navbar__cta:hover .navbar__cta-arrow {
  transform: translateX(4px);
}
.navbar__cta-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}
.navbar span.navbar__cta-arrow {
  font-family: "Material Symbols Outlined", sans-serif;
  font-size: 1.125rem;
  transition: transform 0.15s ease;
}
.navbar__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 1rem;
  color: #1a1f2c;
  cursor: pointer;
  transition: 0.2s ease;
}
.navbar__hamburger span {
  font-size: 1.75rem;
}
.navbar__hamburger:hover {
  background-color: rgba(113, 75, 103, 0.1);
  color: #714B67;
}
@media (min-width: 840px) {
  .navbar__hamburger {
    display: none;
  }
}
.navbar__mobile-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  right: 0;
  max-width: 80rem;
  margin: 0 auto;
  width: calc(100% - 2rem);
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}
.navbar__mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 840px) {
  .navbar__mobile-menu {
    display: none;
  }
}
.navbar__mobile-link {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1f2c;
  text-decoration: none;
  transition: color 0.2s ease;
}
.navbar__mobile-link:hover {
  color: #714B67;
}
.navbar__cta-mobile {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  min-height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  background-color: #714B67;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(113, 75, 103, 0.5);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, transform 0.3s ease;
}
.navbar__cta-mobile.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(200%);
}
.navbar__cta-mobile:hover {
  transform: scale(1.05);
  background-color: #492d41;
}
@media (min-width: 840px) {
  .navbar__cta-mobile {
    display: none;
  }
}

.footer {
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
  }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__brand-info {
  display: flex;
  flex-direction: column;
}
.footer__brand-title {
  color: #1a1f2c;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
.footer__brand-subtitle {
  margin-top: 2px;
  color: #0583DE;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer__links {
  display: flex;
  flex-direction: column;
  margin: 0.5rem 0;
  gap: 1.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__links {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
}
.footer__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: #492d41;
}
.footer__link:first-child:hover {
  color: #3CB0EE;
}
.footer__copyright {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__copyright {
    text-align: end;
  }
}

.iub__us-widget,
#iubenda-cs-banner .iubenda-cs-preferences-link {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

#iubenda-widget {
  display: none !important;
}

.hero {
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding-top: 9rem;
  padding-bottom: 2rem;
}
@media (min-width: 1024px) {
  .hero {
    padding-top: 13rem;
  }
}
.hero__container {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
  }
}
.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero .badge--purple {
  background: rgba(113, 75, 103, 0.05);
  border: 1px solid rgba(113, 75, 103, 0.1);
}
.hero .badge--purple:hover {
  background: rgba(113, 75, 103, 0.3);
  border-color: rgba(113, 75, 103, 0.6);
}
.hero .badge__dot {
  position: relative;
  display: flex;
  width: 0.5rem;
  height: 0.5rem;
}
.hero .badge__ping {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #714B67;
  border-radius: 50%;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.hero .badge__point {
  position: relative;
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
  background: #714B67;
  border-radius: 50%;
}
.hero .badge__text {
  color: #714B67;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero .badge:hover--purple {
  background: rgba(113, 75, 103, 0.05);
  border: 1px solid rgba(113, 75, 103, 0.1);
}
.hero .badge:hover .badge__ping {
  background: #1a1f2c;
  animation: ping 0.25s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.hero .badge:hover .badge__point {
  background: #1a1f2c;
}
.hero .badge:hover .badge__text {
  color: #1a1f2c;
}
.hero__title {
  color: #1a1f2c;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4.5rem;
  }
}
.hero__title .relative-wrapper {
  position: relative;
  display: inline-block;
}
.hero__title__underline {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 100%;
  height: 0.75rem;
  opacity: 0.5;
}
.hero__title__underline path {
  fill: #3ECDAE;
  stroke: #3ECDAE;
  stroke-width: 1px;
}
.hero__description {
  max-width: 32rem;
  color: #4b5563;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.625;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}
.hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: 0.3s ease;
}
.hero .btn--primary {
  background: #3ECDAE;
  color: #1a1f2c;
  box-shadow: 0 0 20px rgba(62, 205, 174, 0.5);
}
.hero .btn--primary:hover {
  background: #34aa90;
  color: #f8f9fa;
  transform: translateY(-4px);
}
.hero__social-proof {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__social-proof:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(113, 75, 103, 0.2);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.1);
}
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: fit-content;
  margin-top: 1.5rem;
  padding: 1rem 1.625rem;
  border-radius: 2rem;
}
.hero__rating {
  display: flex;
  flex-direction: column;
}
.hero .stars {
  display: flex;
  color: #eab308;
}
.hero .stars .material-symbols-outlined {
  font-size: 1rem;
}
.hero__rating-text {
  margin-top: 0.25rem;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 500;
}
.hero__rating-text strong {
  color: #1a1f2c;
  font-weight: 700;
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 600px;
  perspective: 1000px;
  margin: 0 0.5rem 2rem 0.5rem;
}
@media (min-width: 768px) {
  .hero__visual {
    margin: 0 0.5rem 3rem 0.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__visual {
    margin: 4rem 0rem 3rem 0rem;
  }
}
.hero__visual-blobs .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  animation: ping 3s infinite alternate;
}
.hero__visual-blobs .blob--1 {
  top: 5rem;
  right: 2.5rem;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(to bottom right, #3ECDAE, #34d399);
}
.hero__visual-blobs .blob--2 {
  bottom: 10rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(to bottom right, #714B67, #ec4899);
  animation-delay: 1s;
}
.hero .dashboard-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10;
  position: relative;
  width: 100%;
  max-width: 550px;
  aspect-ratio: 1;
  padding: 2rem;
  border-radius: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 30px 35px -7px rgba(0, 0, 0, 0.2);
  transform: rotateX(2deg) rotateY(-2deg) rotateZ(-2deg);
  transition: transform 0.7s ease-out;
}
.hero .dashboard-card:hover {
  transform: rotate(0);
}
.hero .dashboard-card__inner {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.hero .dashboard-card .hero__visual__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.features {
  padding: 3rem 0 6rem 0;
}
@media (min-width: 1024px) {
  .features {
    padding: 6rem 0;
  }
}
.features__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .features__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .features__header {
    margin-bottom: 5rem;
  }
}
.features .subheading {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.features .subheading--purple {
  color: #714B67;
}
.features .heading-2 {
  color: #1a1f2c;
  font-size: 2.25rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .features .heading-2 {
    font-size: 3rem;
  }
}
.features__intro {
  max-width: 28rem;
  color: #4b5563;
  font-weight: 500;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .features__intro {
    text-align: right;
  }
}
.features__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.features .feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2.5rem;
  border-radius: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .features .feature-card--highlight {
    transform: translateY(3rem);
  }
}
@media (min-width: 768px) {
  .features .feature-card--highlight:hover {
    transform: translateY(calc(3rem - 5px));
  }
}
.features .feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 2rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}
.features .feature-card__icon .material-symbols-outlined {
  font-size: 2.25rem;
}
.features .feature-card:hover .features .feature-card__icon {
  transform: rotate(6deg);
}
.features .feature-card__icon--green {
  background: linear-gradient(to bottom right, rgba(62, 205, 174, 0.2), rgba(62, 205, 174, 0.05));
  border-color: rgba(62, 205, 174, 0.1);
  color: #34aa90;
}
.features .feature-card__icon--purple {
  background: linear-gradient(to bottom right, rgba(113, 75, 103, 0.2), rgba(113, 75, 103, 0.05));
  border-color: rgba(113, 75, 103, 0.1);
  color: #714B67;
}
.features .feature-card__icon--blue {
  background: linear-gradient(to bottom right, rgba(60, 176, 238, 0.2), rgba(153, 233, 254, 0.1));
  border-color: rgba(60, 176, 238, 0.2);
  color: #113CB5;
}
.features .feature-card__title {
  margin-bottom: 1rem;
  color: #1a1f2c;
  font-size: 1.5rem;
  font-weight: 700;
}
.features .feature-card__text {
  color: #4b5563;
  font-weight: 500;
  line-height: 1.625;
}

.modules {
  position: relative;
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}
@media (min-width: 1024px) {
  .modules {
    padding: 6rem 0;
  }
}
.modules__bg-blob {
  position: absolute;
  left: 0;
  top: 25%;
  z-index: -10;
  width: 16rem;
  height: 16rem;
  background: rgba(62, 205, 174, 0.05);
  border-radius: 50%;
  filter: blur(3rem);
}
.modules__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .modules__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.modules .heading-2 {
  color: #1a1f2c;
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  .modules .heading-2 {
    font-size: 3rem;
  }
}
.modules .subheading {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.modules .subheading--green {
  color: #34aa90;
}
.modules .btn-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(113, 75, 103, 0.05);
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #714B67;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.modules .btn-link span {
  transition: transform 0.15s ease;
}
.modules .btn-link:hover {
  background: #714B67;
  color: #ffffff;
}
.modules .btn-link:hover span {
  transform: translateX(4px);
}
.modules__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .modules__content {
    flex-direction: row;
    gap: 4rem;
  }
}
.modules__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modules .module-btn {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 1.5rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  border-radius: 2.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: 0.3s ease;
}
.modules .module-btn .icon-sq {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #f3f4f6;
  color: #6b7280;
  border-radius: 2rem;
  transition: 0.3s ease;
}
.modules .module-btn .icon-svg {
  width: 2rem;
  height: 2rem;
}
.modules .module-btn .icon-svg path {
  transition: fill 0.3s ease, opacity 0.3s ease;
}
.modules .module-btn__bg-decoration {
  position: absolute;
  right: 0;
  top: 0;
  width: 6rem;
  height: 6rem;
  background: rgba(62, 205, 174, 0.1);
  border-radius: 0 0 0 100%;
  transform: translate(1rem, -1rem);
  transition: 0.5s;
  opacity: 0;
}
.modules .module-btn:hover:not(.module-btn--active) {
  background: #ffffff;
  border-color: #e5e7eb;
}
.modules .module-btn:hover:not(.module-btn--active) h3 {
  color: #1a1f2c;
}
.modules .module-btn:hover:not(.module-btn--active) .icon-sq {
  background: #714B67;
}
.modules .module-btn:hover:not(.module-btn--active) .icon-svg path {
  fill: #ffffff;
}
.modules .module-btn:hover:not(.module-btn--active) .icon-svg path:nth-child(1) {
  opacity: 1;
}
.modules .module-btn:hover:not(.module-btn--active) .icon-svg path:nth-child(2) {
  opacity: 0.7;
}
.modules .module-btn:hover:not(.module-btn--active) .icon-svg path:nth-child(3) {
  opacity: 0.4;
}
.modules .module-btn:hover:not(.module-btn--active) .icon-svg path:nth-child(4) {
  opacity: 0.85;
}
.modules .module-btn:hover:not(.module-btn--active) .icon-svg path:nth-child(5) {
  opacity: 0.55;
}
.modules .module-btn:hover:not(.module-btn--active) .module-btn__bg-decoration {
  transform: scale(1.5);
  opacity: 1;
  background: rgba(113, 75, 103, 0.1);
}
.modules .module-btn--active {
  background: #ffffff;
  border-color: rgba(62, 205, 174, 0.5);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.modules .module-btn--active h3 {
  color: #1a1f2c;
}
.modules .module-btn--active .icon-sq {
  background: #3ECDAE;
  border: solid 1px #3ECDAE;
  box-shadow: 0 0 20px rgba(62, 205, 174, 0.5);
}
.modules .module-btn--active .icon-svg path {
  fill: #ffffff;
}
.modules .module-btn--active .icon-svg path:nth-child(1) {
  opacity: 1;
}
.modules .module-btn--active .icon-svg path:nth-child(2) {
  opacity: 0.7;
}
.modules .module-btn--active .icon-svg path:nth-child(3) {
  opacity: 0.4;
}
.modules .module-btn--active .icon-svg path:nth-child(4) {
  opacity: 0.85;
}
.modules .module-btn--active .icon-svg path:nth-child(5) {
  opacity: 0.55;
}
.modules .module-btn--active .module-btn__bg-decoration {
  opacity: 1;
  background: rgba(62, 205, 174, 0.1);
  transform: scale(1);
}
.modules .module-btn--active:hover {
  border-color: #3ECDAE;
}
.modules .module-btn__header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  color: #4b5563;
}
.modules .module-btn__header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
.modules .module-btn p {
  position: relative;
  z-index: 10;
  padding-left: 3.75rem;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.475em;
}
.modules__preview {
  flex: 2;
}
.modules .browser-window {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  width: 100%;
  min-height: 750px;
  height: auto;
}
@media (min-width: 640px) {
  .modules .browser-window {
    min-height: 450px;
  }
}
@media (min-width: 768px) {
  .modules .browser-window {
    min-height: 550px;
  }
}
@media (min-width: 1024px) {
  .modules .browser-window {
    min-height: 480px;
  }
}
.modules .browser-window {
  background: linear-gradient(to top right, #f3f4f6, #ffffff);
  border: 1px solid #ffffff;
  border-radius: 2.5rem;
  box-shadow: 0 30px 35px -7px rgba(0, 0, 0, 0.2);
}
.modules .browser-window__frame {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 2rem;
  overflow: hidden;
}
.modules .browser-window__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  z-index: 2;
}
.modules .browser-window .dots {
  display: flex;
  gap: 0.5rem;
}
.modules .browser-window .dots .dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}
.modules .browser-window .dots .dot--red {
  background: #f87171;
}
.modules .browser-window .dots .dot--yellow {
  background: #facc15;
}
.modules .browser-window .dots .dot--green {
  background: #4ade80;
}
.modules .browser-window .address-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 24rem;
  padding: 0.375rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
}
.modules .browser-window .address-bar .material-symbols-outlined {
  font-size: 1rem;
  padding: 0.25rem 0;
}
.modules .browser-window__content {
  position: relative;
  flex-grow: 1;
  height: 100%;
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.7s ease-out;
}
.modules .browser-window .browser-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}
.modules .browser-window .browser-img.active {
  opacity: 1;
  z-index: 2;
}
.modules .browser-window .browser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.modules .browser-window:hover .browser-window__content {
  transform: scale(1.02);
}

.apps-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  transition: visibility 0s linear 0.4s;
}
.apps-modal.is-open {
  visibility: visible;
  transition-delay: 0s;
}
.apps-modal.is-open .apps-modal__backdrop {
  opacity: 1;
}
.apps-modal.is-open .apps-modal__container {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.apps-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(73, 45, 65, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.2s ease;
  will-change: opacity;
}
.apps-modal__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  height: 85vh;
  background: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 30px 35px -7px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.apps-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}
@media (min-width: 768px) {
  .apps-modal__header {
    padding: 1.5rem 2rem;
  }
}
.apps-modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1f2c;
}
.apps-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #4b5563;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.15s ease;
}
.apps-modal__close:hover {
  background: #714B67;
  color: #f8f9fa;
  transform: rotate(90deg);
}
.apps-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
  border-top: solid #ffffff 0.5rem;
  border-bottom: solid #ffffff 0.5rem;
}
@media (min-width: 768px) {
  .apps-modal__body {
    padding: 2rem;
  }
}
.apps-modal__body::-webkit-scrollbar {
  width: 8px;
}
.apps-modal__body::-webkit-scrollbar-track {
  background: #f9fafb;
}
.apps-modal__body::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 4px;
}
.apps-modal__body::-webkit-scrollbar-thumb:hover {
  background: #4b5563;
}
.apps-modal .apps-category {
  margin-bottom: 3rem;
}
.apps-modal .apps-category:last-child {
  margin-bottom: 0;
}
.apps-modal .apps-category__title {
  margin: 0 1rem 1rem 0.5rem;
  padding-bottom: 0.6rem;
  font-size: 1.25rem;
  color: #1a1f2c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #f3f4f6;
}
@media (min-width: 768px) {
  .apps-modal .apps-category__title {
    margin: 0 1rem 1rem 0rem;
  }
}
.apps-modal .apps-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .apps-modal .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .apps-modal .apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.apps-modal .app-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f7f7f7;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  transition: all 0.15s ease;
}
.apps-modal .app-card:hover {
  box-shadow: 0 0px 3px 0 rgba(0, 0, 0, 0.1);
}
.apps-modal .app-card__icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin: 0.3rem;
}
.apps-modal .app-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.apps-modal .app-card__name {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1f2c;
}
.apps-modal .app-card__text {
  font-weight: 400;
  font-size: 0.9rem;
  color: #6b7280;
}
.apps-modal .app-card a {
  justify-items: flex-end;
  align-self: flex-end;
  margin: 0 -0.2rem -0.2rem 0;
  padding: 0.2rem;
  border-radius: 0.5rem;
  color: #6b7280;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.apps-modal .app-card a:hover {
  background-color: #3ECDAE;
  color: #f8f9fa;
}

.peppol {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
@media (min-width: 1024px) {
  .peppol {
    padding: 6rem 0;
  }
}
.peppol__bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -10;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: rgba(62, 205, 174, 0.1);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.peppol__card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.peppol__card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(113, 75, 103, 0.2);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.1);
}
.peppol__card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2.5rem;
}
@media (min-width: 768px) {
  .peppol__card {
    padding: 4rem;
  }
}
.peppol__card-blob {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  margin-top: -8rem;
  margin-right: -8rem;
  background: rgba(113, 75, 103, 0.05);
  border-radius: 50%;
  filter: blur(3rem);
  pointer-events: none;
}
.peppol__grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .peppol__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.peppol__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.peppol__title {
  color: #1a1f2c;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}
@media (min-width: 768px) {
  .peppol__title {
    font-size: 3rem;
  }
}
.peppol__desc {
  color: #4b5563;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.625;
}
.peppol__desc.text-muted {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.5;
}
.peppol__actions {
  padding-top: 0.5rem;
}
.peppol__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
}
.badge--green {
  background: rgba(62, 205, 174, 0.1);
  border: 1px solid rgba(62, 205, 174, 0.2);
  color: #34aa90;
}
.badge--green .material-symbols-outlined {
  font-size: 1.5rem;
}
.badge__text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid transparent;
  border-radius: 1.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.btn--dark {
  background: #1a1f2c;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.btn--dark .btn__icon {
  transition: 0.15s ease;
}
.btn--dark:hover {
  background: #3ECDAE;
  color: #1a1f2c;
}
.btn--dark:hover .btn__icon {
  transform: translateX(4px);
}

.visual-composition {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
}
.visual-composition__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(113, 75, 103, 0.2), rgba(73, 45, 65, 0.1));
  border-radius: 9999px;
  filter: blur(24px);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.visual-composition__center {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16rem;
  height: 16rem;
  border-radius: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 30px 35px -7px rgba(0, 0, 0, 0.2);
  transform: rotate(3deg);
}
.visual-composition .icon-box-gradient {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(to top right, #714B67, #492d41);
  border-radius: 2.5rem;
  box-shadow: 0 0 20px rgba(113, 75, 103, 0.5);
}
.visual-composition .icon-box-gradient span {
  color: #ffffff;
  font-size: 3.75rem;
}
.visual-composition__float {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.visual-composition__float:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(113, 75, 103, 0.2);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.1);
}
.visual-composition__float {
  position: absolute;
  z-index: 50;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.visual-composition__float span {
  font-size: 1.875rem;
}
.visual-composition__float--1 {
  top: 0;
  right: 2.5rem;
  animation: float 7s ease-in-out infinite;
}
.visual-composition__float--2 {
  bottom: 2.5rem;
  left: 0;
  animation: float 8s ease-in-out infinite 2s;
}
.visual-composition__float img {
  width: 3rem;
  height: 3rem;
}

.process {
  position: relative;
  overflow: hidden;
  padding: 5.2rem 0;
  background-color: #1a1f2c;
}
@media (min-width: 1024px) {
  .process {
    padding: 6.2rem 0;
  }
}
.process__bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom right, #1a1f2c, #2d1b28, #1a1f2c);
}
.process__bg-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
}
.process__bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: rgba(113, 75, 103, 0.2);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.process__container {
  position: relative;
  z-index: 10;
}
.process__header {
  text-align: center;
  margin-bottom: 5rem;
}
.process__subtitle {
  display: block;
  margin-bottom: 1rem;
  color: #3ECDAE;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.process__title {
  margin-bottom: 1.725rem;
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .process__title {
    font-size: 3rem;
  }
}
.process__desc {
  max-width: 42rem;
  margin: 0 auto;
  color: #d1d5db;
  font-size: 1.125rem;
}
.process__steps {
  position: relative;
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .process__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.process__line {
  display: none;
}
@media (min-width: 768px) {
  .process__line {
    display: block;
    position: absolute;
    top: 3.5rem;
    left: 16%;
    right: 16%;
    z-index: 0;
    height: 0.25rem;
    background: linear-gradient(to right, #374151, #714B67, #374151);
    border-radius: 9999px;
  }
}
.process__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.process__step .process__circle {
  background-color: #1a1f2c;
  border-color: #374151;
}
.process__step .process__card {
  transition: all 0.3s ease;
}
.process__step:hover .process__card {
  background-color: rgba(255, 255, 255, 0.1);
}
.process__step--hover-white:hover .process__circle {
  border-color: #ffffff;
}
.process__step--hover-green:hover .process__circle {
  border-color: #3ECDAE;
}
.process__step--hover-blue:hover .process__circle {
  border-color: #3CB0EE;
}
.process__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  border-width: 4px;
  border-style: solid;
  border-radius: 50%;
  box-shadow: 0 30px 35px -7px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s ease;
}
.process__number {
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: 700;
}
.process .material-symbols-outlined {
  color: #ffffff;
  font-size: 2.2rem;
}
.process__card {
  width: 100%;
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  transition: background-color 0.3s ease;
}
.process__card-title {
  margin-top: 0.3rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.process__card-title.step-one {
  color: #ffffff;
}
.process__card-title.step-two {
  color: #3ECDAE;
}
.process__card-title.step-three {
  color: #3CB0EE;
}
.process__card-text {
  color: #9ca3af;
  line-height: 1.5;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.contact {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
@media (min-width: 1024px) {
  .contact {
    padding: 6rem 0;
  }
}
.contact__card {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 2.5rem;
  box-shadow: 0 30px 35px -7px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .contact__card {
    flex-direction: row;
  }
}
.contact__form-panel {
  padding: 2.5rem;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .contact__form-panel {
    width: 50%;
    padding: 5rem;
  }
}
.contact__title {
  margin-bottom: 1rem;
  color: #1a1f2c;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
}
.contact__desc {
  margin-bottom: 2.5rem;
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.6;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact .form-row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .contact .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact .form-group {
  display: flex;
  flex-direction: column;
}
.contact .form-label {
  display: block;
  margin-bottom: 0.725rem;
  margin-left: 0.25rem;
  padding-left: 0.75rem;
  color: #1a1f2c;
  font-size: 1rem;
  font-weight: 700;
}
.contact .form-input {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background-color: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  outline: none;
  color: #1a1f2c;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  transition: 0.3s ease;
}
.contact .form-input::placeholder {
  color: #6b7280;
  opacity: 1;
}
.contact .form-input:focus {
  background-color: #ffffff;
  border-color: #3ECDAE;
  box-shadow: 0 0 0 4px rgba(62, 205, 174, 0.1);
}
.contact textarea.form-input {
  min-height: 7.6rem;
  resize: vertical;
}
.contact .form-group-community {
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}
.contact .form-group-community .checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}
.contact .form-group-community .checkbox-container {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  user-select: none;
  padding-top: 4px;
}
.contact .form-group-community .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.contact .form-group-community .checkbox-container input:checked ~ .checkbox-checkmark {
  background-color: #3ECDAE;
  border-color: #3ECDAE;
}
.contact .form-group-community .checkbox-container input:checked ~ .checkbox-checkmark::after {
  display: block;
}
.contact .form-group-community .checkbox-container .checkbox-checkmark {
  height: 22px;
  width: 22px;
  min-width: 22px;
  flex-shrink: 0;
  background-color: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  margin-right: 12px;
  position: relative;
  transition: 0.2s ease;
}
.contact .form-group-community .checkbox-container .checkbox-checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact .form-group-community .checkbox-container .checkbox-text {
  line-height: 1.4;
}
.contact .form-group-community .info-container {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.contact .form-group-community .info-container .info-btn {
  color: #6b7280;
  cursor: pointer;
  display: flex;
  transition: 0.2s ease;
}
.contact .form-group-community .info-container .info-btn .material-symbols-outlined {
  font-size: 1.75rem;
}
.contact .form-group-community .info-container .info-btn:hover, .contact .form-group-community .info-container .info-btn.active {
  color: #3ECDAE;
}
@media (min-width: 1024px) {
  .contact .form-group-community .info-container .info-btn .material-symbols-outlined {
    font-size: 1.5rem;
  }
}
.contact .form-group-community .info-container .info-popup {
  position: absolute;
  bottom: 140%;
  z-index: 100;
  width: 325px;
  padding: 1.25rem;
  border: solid 1px #3ECDAE;
  border-radius: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
  pointer-events: none;
}
.contact .form-group-community .info-container .info-popup.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.contact .form-group-community .info-container .info-popup {
  left: 50%;
  transform: translateX(-50%) translateY(10px);
}
.contact .form-group-community .info-container .info-popup.show {
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 768px) {
  .contact .form-group-community .info-container .info-popup {
    left: auto;
    right: -10px;
    transform: translateY(10px);
  }
  .contact .form-group-community .info-container .info-popup.show {
    transform: translateY(0);
  }
  .contact .form-group-community .info-container .info-popup {
    width: calc(100vw - 80px);
    max-width: 325px;
  }
}
.contact .cf-turnstile {
  margin: -1rem 0 -1rem 0;
}
.contact .btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.35rem 0;
  background-color: #3ECDAE;
  color: #1a1f2c;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 1.5rem;
  box-shadow: 0 0 20px rgba(62, 205, 174, 0.5);
  cursor: pointer;
  transition: 0.3s ease;
}
.contact .btn-submit:hover {
  color: #f8f9fa;
  background-color: #34aa90;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
}
.contact__info-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  background-color: #1a1f2c;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .contact__info-panel {
    width: 50%;
    padding: 5rem;
  }
}
.contact__info-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.contact__info-title {
  margin-bottom: 2.1rem;
  font-size: 1.875rem;
  font-weight: 700;
}
.contact .info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}
.contact .info-item__label {
  margin-top: 0.25rem;
  margin-bottom: 0.3rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.contact .info-item__brand-sublabel {
  margin-bottom: 0.3rem;
  margin-left: 0.1rem;
  color: #99E9FE;
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}
.contact .info-item__text {
  color: #afafaf;
  line-height: 1.6;
}
.contact .icon-box-glass {
  padding: 1rem 1rem 0.8rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  backdrop-filter: blur(4px);
}
.contact .icon-box-glass .material-symbols-outlined {
  color: #3ECDAE;
  font-size: 1.5rem;
}
.contact__footer {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.contact .vat-badge {
  padding: 0.725rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}
.contact__map-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  mix-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.contact__gradient-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, #1a1f2c, transparent);
  pointer-events: none;
}

.notification-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  width: max-content;
  max-width: 90vw;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  border-top: 4px solid transparent;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  color: #1a1f2c;
  transform: translate(-50%, 3rem);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.notification-toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: all;
}
.notification-toast--success {
  border-top-color: #3ECDAE;
}
.notification-toast--success .toast-icon {
  color: #3ECDAE;
}
.notification-toast--error {
  border-top-color: #ef4444;
}
.notification-toast--error .toast-icon {
  color: #ef4444;
}

/*# sourceMappingURL=index.css.map */
