@charset "UTF-8";
.la-content {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}

.la-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 99px;
  background: rgba(0, 130, 236, 0.08);
  color: #0082ec;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.la-section-head {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 55px;
}
.la-section-head h2 {
  font-family: "Sedan", serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 500;
  color: #1F1F1F;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.la-section-head__sub {
  margin-top: 14px;
  font-size: 16px;
  color: rgba(31, 31, 31, 0.65);
}

.la-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.la-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .la-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.la-form {
  width: 100%;
}

.la-form__heading p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 14px;
}

.la-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

@media (min-width: 560px) {
  .la-form--hero .la-form__grid,
  .la-form--card .la-form__grid,
  .la-form--compact .la-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1300px) {
  .la-form--inline {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    flex-wrap: wrap;
    min-width: 0;
  }
  .la-form--inline .la-form__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    flex: 1 1 auto;
    min-width: 0;
    gap: 12px;
    margin-bottom: 0;
  }
  .la-form--inline .la-submit {
    margin-top: 0;
    width: auto;
    flex: 0 0 auto;
    padding-inline: 26px;
    white-space: nowrap;
  }
  .la-form--inline .la-form__fineprint {
    display: none;
  }
}
.la-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.la-field label {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(31, 31, 31, 0.6);
  letter-spacing: 0.01em;
}
.la-field input {
  height: 46px;
  min-width: 0;
  padding: 0 16px;
  border: 1px solid rgba(31, 31, 31, 0.14);
  border-radius: 8px;
  font-size: 14.5px;
  color: #1F1F1F;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.la-field input:focus {
  outline: none;
  border-color: #0082ec;
  box-shadow: 0 0 0 3px rgba(0, 130, 236, 0.12);
}
.la-field input::-moz-placeholder {
  color: rgba(31, 31, 31, 0.32);
}
.la-field input::placeholder {
  color: rgba(31, 31, 31, 0.32);
}
.la-field.field-error input {
  border-color: #d71920 !important;
}
.la-field.field-error label::after {
  content: " *";
  color: #d71920;
  font-weight: 700;
}
.la-field.shake {
  animation: laFieldShake 0.42s ease;
}

@keyframes laFieldShake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}
.field-error-message {
  margin-top: 6px;
  color: #a11a1a;
  font-size: 12px;
  line-height: 1.35;
}

.la-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 99px;
  background: #0082ec;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.4s;
}
.la-submit i {
  transition: 0.4s;
  font-size: 13px;
}
.la-submit:hover i {
  transform: translateX(5px);
}
.la-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.la-form__fineprint {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(31, 31, 31, 0.45);
  text-align: center;
}

.la-form__message {
  display: none;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13.5px;
}
.la-form__message.success {
  display: block;
  background: #e9f9ee;
  color: #116b36;
  border: 1px solid #b7e4c7;
}
.la-form__message.error {
  display: block;
  background: #fff0f0;
  color: #a11a1a;
  border: 1px solid #f0b6b6;
}

#la-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  padding-top: 120px;
  padding-bottom: 60px;
}
#la-hero .overlay-bottom {
  background: linear-gradient(to bottom, transparent, white);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 10;
}
#la-hero #wb-hero-gradient, #la-hero #wb-hero-noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}
#la-hero #wb-hero-gradient {
  z-index: 0;
}
#la-hero #wb-hero-noise {
  z-index: 1;
  opacity: 0.035;
}
#la-hero .la-hero__inner {
  position: relative;
  z-index: 5;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#la-hero .la-hero__copy {
  max-width: 640px;
}
#la-hero h1 {
  font-family: "Sedan", serif;
  font-size: clamp(36px, 7vw, 58px);
  font-weight: 500;
  color: #1F1F1F;
  line-height: 1.07;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
#la-hero__lead {
  font-size: 16px;
  color: rgba(31, 31, 31, 0.75);
  line-height: 1.5;
  max-width: 520px;
  margin: 0 0 26px;
}

.la-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 32px;
}
.la-trust-row span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1F1F1F;
  opacity: 0.75;
}
.la-trust-row i {
  color: #0082ec;
  font-size: 13px;
}

.la-hero__form {
  max-width: 520px;
}

.wb-scan-browser {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 70px rgba(16, 19, 23, 0.16), 0 4px 18px rgba(16, 19, 23, 0.08);
  border: 1px solid rgba(16, 19, 23, 0.06);
  max-width: 560px;
  margin-inline: auto;
}

.wb-scan-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #ececec;
}

.wb-scan-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d2d2d2;
}

.wb-scan-url {
  margin-left: 10px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 12px;
  color: rgba(31, 31, 31, 0.55);
}
.wb-scan-url i {
  font-size: 10px;
}

.wb-scan-caret {
  width: 1px;
  height: 12px;
  background: rgba(31, 31, 31, 0.4);
  animation: laCaretBlink 1s step-end infinite;
}

@keyframes laCaretBlink {
  50% {
    opacity: 0;
  }
}
.wb-scan-viewport {
  position: relative;
  min-height: 360px;
}

.wb-scan-content {
  position: absolute;
  inset: 0;
  padding: 26px 24px 34px;
  background: linear-gradient(180deg, #fafafa, #f2f2f2);
  overflow: hidden;
  border-radius: 4px;
}

.wb-scan-block {
  background: rgba(31, 31, 31, 0.08);
  border-radius: 4px;
}

.b-nav {
  height: 16px;
  width: 40%;
  margin-bottom: 26px;
}

.b-hero {
  height: 96px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 6px;
  background: rgba(31, 31, 31, 0.1);
}

.b-text {
  height: 11px;
  margin-bottom: 12px;
}

.w60 {
  width: 60%;
}

.w40 {
  width: 40%;
}

.wb-scan-cards {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.b-card {
  flex: 1;
  height: 70px;
  border-radius: 6px;
}

.wb-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 130, 236, 0) 0%, #0082ec 50%, rgba(0, 130, 236, 0) 100%);
  box-shadow: 0 0 18px rgba(0, 130, 236, 0.55);
  top: 6%;
  animation: laScan 6s linear infinite;
}

@keyframes laScan {
  0% {
    top: 6%;
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  98%, 100% {
    top: 96%;
    opacity: 0;
  }
}
.wb-scan-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1d1d1d;
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px) scale(0.94);
  animation: laTagPulse 6s ease infinite;
}
.wb-scan-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e8542c;
  box-shadow: 0 0 0 3px rgba(232, 84, 44, 0.18);
}

.t1 {
  top: 28%;
  left: -2%;
  animation-delay: 0s;
}

.t2 {
  top: 46%;
  right: -2%;
  animation-delay: 1.1s;
}

.t3 {
  top: 66%;
  left: -1%;
  animation-delay: 2.4s;
}

.t4 {
  top: 84%;
  right: -2%;
  animation-delay: 3.6s;
}

@keyframes laTagPulse {
  0%, 4% {
    opacity: 0;
    transform: translateY(6px) scale(0.94);
  }
  10%, 88% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  96%, 100% {
    opacity: 0;
    transform: translateY(-6px) scale(0.96);
  }
}
@media (max-width: 1139px) {
  #la-hero {
    padding-top: 110px;
  }
  .wb-scan-browser {
    max-width: 100%;
  }
  .wb-scan-viewport {
    min-height: 300px;
    padding: 20px 16px 28px;
  }
  .wb-scan-tag {
    font-size: 11px;
    padding: 6px 11px;
  }
  .t1 {
    left: 2%;
  }
  .t2 {
    right: 2%;
  }
  .t3 {
    left: 2%;
  }
  .t4 {
    right: 2%;
  }
}
@media (min-width: 1140px) {
  #la-hero {
    padding-top: 180px;
    padding-bottom: 90px;
  }
  #la-hero .la-hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 70px;
  }
  #la-hero .la-hero__copy {
    flex: 0 0 46%;
  }
  #la-hero .la-hero__visual {
    flex: 1;
  }
}
#la-checks {
  padding-block: 90px 70px;
  background: #f6f5f2;
}

.la-checks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 700px) {
  .la-checks__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1140px) {
  .la-checks__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.la-check {
  background: #fff;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 10px;
  padding: 28px 26px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.la-check:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(16, 19, 23, 0.08);
  border-color: rgba(0, 130, 236, 0.25);
}
.la-check__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
}
.la-check h3 {
  font-size: 18px;
  font-weight: 500;
  color: #1F1F1F;
  margin: 0 0 8px;
}
.la-check p {
  font-size: 14.5px;
  color: rgba(31, 31, 31, 0.65);
  margin: 0;
  line-height: 1.5;
}

#la-banner {
  background: #1F1F1F;
  padding-block: 70px;
}
#la-banner .la-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
#la-banner .la-field label {
  color: rgba(255, 255, 255, 0.55);
}
#la-banner .la-field input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
#la-banner .la-field input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.32);
}
#la-banner .la-field input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}
#la-banner .la-field input:focus {
  border-color: #0082ec;
  box-shadow: 0 0 0 3px rgba(0, 130, 236, 0.25);
}
#la-banner .la-form__fineprint {
  color: rgba(255, 255, 255, 0.4);
}

.la-banner__text h2 {
  font-family: "Sedan", serif;
  font-size: clamp(26px, 3.4vw, 36px);
  color: #fff;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 480px;
}
.la-banner__text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin: 0;
}

.la-banner__form {
  width: 100%;
  min-width: 0;
}

@media (min-width: 1140px) {
  #la-banner .la-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  .la-banner__form {
    flex: 1 1 auto;
    max-width: 620px;
    min-width: 0;
  }
  .la-banner__text {
    flex: 0 0 auto;
  }
}
#la-process {
  padding-block: 90px;
  background: #fff;
}

.la-process__row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 20px;
}

.la-process__line {
  display: none;
}

.la-step {
  position: relative;
  z-index: 1;
  flex: 1;
}
.la-step__number {
  font-family: "Tinos", serif;
  font-size: 56px;
  color: #0082ec;
  margin: 0 0 14px;
  line-height: 1;
}
.la-step h3 {
  font-size: 19px;
  font-weight: 500;
  color: #1F1F1F;
  margin: 0 0 10px;
}
.la-step__desc {
  font-size: 15px;
  color: rgba(31, 31, 31, 0.65);
  line-height: 1.55;
  margin: 0;
  max-width: 320px;
}

.la-step--form {
  background: #f6f5f2;
  border-radius: 14px;
  padding: 30px 26px;
  max-width: 460px;
}
.la-step--form .la-step__desc {
  max-width: none;
}

.la-step__form {
  margin-top: 22px;
}

@media (min-width: 1140px) {
  .la-process__row {
    flex-direction: row;
    gap: 50px;
    align-items: flex-start;
  }
  .la-process__line {
    display: block;
    position: absolute;
    top: 34px;
    left: 4%;
    right: 4%;
    height: 2px;
    background: rgba(31, 31, 31, 0.1);
    z-index: 0;
  }
  .la-process__line span {
    display: block;
    height: 100%;
    width: 0%;
    background: #0082ec;
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
#la-cases {
  padding-block: 90px;
  background: #f6f5f2;
}

.la-cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

@media (min-width: 860px) {
  .la-cases__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ba-slider {
  --reveal: 50%;
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: pan-y;
  box-shadow: 0 20px 50px rgba(16, 19, 23, 0.1);
}
.ba-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.ba-slider__after {
  position: absolute;
  inset: 0;
}
.ba-slider__before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
}
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-slider__handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.ba-slider__handle i {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1F1F1F;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(16, 19, 23, 0.18);
  transform: translateX(-50%);
}
.ba-slider__label {
  position: absolute;
  top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 99px;
  background: rgba(20, 23, 28, 0.65);
  color: #fff;
  backdrop-filter: blur(3px);
}
.ba-slider .label-before {
  left: 14px;
}
.ba-slider .label-after {
  right: 14px;
}
.ba-slider__caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.ba-slider.is-dragging {
  cursor: grabbing;
}

.ba-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #ececec 30%, #f6f6f6 45%, #ececec 60%);
  background-size: 200% 100%;
  animation: laShimmer 2.2s ease-in-out infinite;
  padding: 24px;
}
.ba-skeleton .sk {
  display: block;
  border-radius: 4px;
  background: rgba(31, 31, 31, 0.1);
  margin-bottom: 14px;
}
.ba-skeleton .sk-nav {
  height: 12px;
  width: 35%;
}
.ba-skeleton .sk-hero {
  height: 64px;
  width: 100%;
  margin-bottom: 18px;
}
.ba-skeleton .sk-line {
  height: 9px;
}
.ba-skeleton .w70 {
  width: 70%;
}
.ba-skeleton .w40 {
  width: 40%;
}

@keyframes laShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.la-cases__form {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 44px 32px;
  border: 1px solid rgba(31, 31, 31, 0.08);
}
.la-cases__form h3 {
  font-family: "Sedan", serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  color: #1F1F1F;
  margin: 0 0 24px;
}
.la-cases__form .la-form__fineprint {
  text-align: center;
}

#la-marquee {
  background: #0082ec;
  padding-block: 26px;
  overflow: hidden;
}

.la-marquee__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 50px;
  animation: laMarquee 26s linear infinite;
}
.la-marquee__track span {
  font-family: "Sedan", serif;
  font-size: clamp(20px, 2.6vw, 28px);
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 50px;
}
.la-marquee__track span::after {
  content: "·";
  opacity: 0.5;
}

@keyframes laMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .la-marquee__track {
    animation: none;
  }
}
#la-faq {
  padding-block: 90px;
  background: #fff;
}

.la-faq__list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.la-faq__item {
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.la-faq__item.is-open {
  border-color: rgba(0, 130, 236, 0.3);
}

.la-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 22px;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #1F1F1F;
}
.la-faq__q i {
  transition: transform 0.35s ease;
  color: rgba(31, 31, 31, 0.4);
  flex-shrink: 0;
}

.la-faq__item.is-open .la-faq__q i {
  transform: rotate(180deg);
  color: #0082ec;
}

.la-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.la-faq__a .inner {
  overflow: hidden;
}
.la-faq__a p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: rgba(31, 31, 31, 0.65);
  line-height: 1.6;
}

.la-faq__item.is-open .la-faq__a {
  grid-template-rows: 1fr;
}

#la-final {
  position: relative;
  background: radial-gradient(120% 140% at 50% 0%, #22262d 0%, #14171c 55%, #0c0e11 100%);
  padding-block: 100px;
  overflow: hidden;
}
#la-final .la-content {
  text-align: center;
  max-width: 640px;
}
#la-final h2 {
  font-family: "Sedan", serif;
  font-size: clamp(30px, 5vw, 46px);
  color: #fff;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
#la-final p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin: 0 0 40px;
}
#la-final .la-final__form {
  background: #fff;
  border-radius: 18px;
  padding: 34px 28px;
  text-align: left;
  max-width: 520px;
  margin-inline: auto;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

.la-sheet-trigger {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  display: none;
  align-items: center;
  gap: 10px;
  background: #1F1F1F;
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 15px 26px;
  font-size: 14.5px;
  font-weight: 500;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.la-sheet-trigger i {
  font-size: 12px;
  color: #0082ec;
}
.la-sheet-trigger.is-hidden {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1139px) {
  .la-sheet-trigger {
    display: flex;
  }
}
#laSheetOverlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(3px);
  z-index: 498;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#laSheetOverlay.active {
  opacity: 1;
  pointer-events: auto;
}

#laSheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 499;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 14px 22px 30px;
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 85svh;
  overflow-y: auto;
}
#laSheet.active {
  transform: translateY(0);
}
#laSheet h3 {
  font-family: "Sedan", serif;
  font-size: 24px;
  font-weight: 500;
  color: #1F1F1F;
  margin: 10px 0 4px;
}
#laSheet p {
  font-size: 14px;
  color: rgba(31, 31, 31, 0.6);
  margin: 0 0 20px;
}

.la-sheet__handle-bar {
  width: 40px;
  height: 4px;
  border-radius: 99px;
  background: rgba(31, 31, 31, 0.15);
  margin: 4px auto 10px;
}

.la-sheet__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(31, 31, 31, 0.06);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1F1F1F;
  cursor: pointer;
}/*# sourceMappingURL=nettsideanalyse.css.map */