/* Kurumsal landing iletisim yardimcisi - chatbot degildir. */
.landing-assistant {
  --assistant-primary: #0867f2;
  --assistant-navy: #002b67;
  --assistant-deep: #00173d;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1048;
  width: 62px;
  height: 62px;
  font-family: var(--tc-body-font-family, "Satoshi-Variable"), "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
}

.landing-assistant button,
.landing-assistant a {
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
}

.landing-assistant__launcher {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: var(--tc-linear-2, linear-gradient(135deg, #0a64ff 0%, #003c87 100%));
  box-shadow: 0 14px 34px rgba(0, 43, 103, .36), inset 0 1px 0 rgba(255, 255, 255, .3);
  color: #fff;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.landing-assistant__launcher:hover,
.landing-assistant__launcher:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 43, 103, .42), inset 0 1px 0 rgba(255, 255, 255, .35);
  filter: saturate(1.08);
}

.landing-assistant__launcher:focus-visible,
.landing-assistant__bubble:focus-visible,
.landing-assistant__minimize:focus-visible,
.landing-assistant__action:focus-visible {
  outline: 3px solid rgba(84, 167, 255, .55);
  outline-offset: 3px;
}

.landing-assistant__launcher>.bi {
  position: relative;
  z-index: 2;
  font-size: 26px;
  line-height: 1;
}

.landing-assistant__launcher-ring {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(55, 151, 255, .54);
  border-radius: inherit;
  animation: landingAssistantPulse 2.8s ease-out infinite;
}

.landing-assistant__launcher-status {
  position: absolute;
  top: 2px;
  right: 1px;
  z-index: 3;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #20ce6b;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
}

.landing-assistant__bubble {
  --assistant-tail-right: 22px;
  position: absolute;
  right: 0;
  bottom: 78px;
  display: flex;
  align-items: center;
  gap: 11px;
  width: 312px;
  min-height: 78px;
  padding: 10px 19px 10px 10px;
  border: 1px solid rgba(0, 74, 156, .12);
  border-radius: 42px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 18px 48px rgba(0, 35, 90, .2), 0 4px 12px rgba(0, 35, 90, .08);
  color: #102a52;
  text-align: left;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.97);
  transform-origin: right bottom;
  transition: opacity .28s ease, visibility .28s ease, transform .34s cubic-bezier(.2, .8, .2, 1);
}

.landing-assistant__bubble::before,
.landing-assistant__bubble::after {
  content: "";
  position: absolute;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.landing-assistant__bubble::before {
  right: var(--assistant-tail-right);
  bottom: -14px;
  width: 24px;
  height: 15px;
  background: rgba(0, 74, 156, .14);
}

.landing-assistant__bubble::after {
  right: calc(var(--assistant-tail-right) + 1px);
  bottom: -12px;
  width: 22px;
  height: 14px;
  background: #fff;
}

.landing-assistant.is-bubble-visible .landing-assistant__bubble {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.landing-assistant.is-panel-open .landing-assistant__bubble {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(.97);
}

.landing-assistant__avatar {
  position: relative;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
}

.landing-assistant__avatar img {
  display: block;
  width: 56px;
  height: 56px;
  border: 3px solid #edf4ff;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.landing-assistant__avatar>span {
  position: absolute;
  right: -1px;
  bottom: 1px;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #20ce6b;
}

.landing-assistant__bubble-copy {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: 0;
}

.landing-assistant__panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: 342px;
  padding: 17px;
  overflow: hidden;
  border: 1px solid rgba(110, 174, 255, .23);
  border-radius: 22px;
  background: linear-gradient(155deg, #062c67 0%, #001a43 58%, #001331 100%);
  box-shadow: 0 24px 65px rgba(0, 25, 66, .42), inset 0 1px 0 rgba(255, 255, 255, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.97);
  transform-origin: right bottom;
  transition: opacity .26s ease, visibility .26s ease, transform .34s cubic-bezier(.2, .8, .2, 1);
}

.landing-assistant__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(55, 145, 255, .12), transparent 42%);
}

.landing-assistant.is-panel-open .landing-assistant__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.landing-assistant__panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 1px 2px 13px;
}

.landing-assistant__eyebrow {
  display: block;
  margin-bottom: 3px;
  color: #83bdff;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .85px;
  text-transform: uppercase;
}

.landing-assistant__panel h2 {
  max-width: 245px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.2px;
}

.landing-assistant__minimize {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 11px;
  background: rgba(255, 255, 255, .07);
  color: #dbeaff;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.landing-assistant__minimize:hover {
  background: rgba(255, 255, 255, .13);
  transform: translateY(1px);
}

.landing-assistant__actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.landing-assistant__action {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 62px;
  padding: 8px 10px;
  border: 1px solid rgba(112, 176, 255, .18);
  border-radius: 15px;
  background: linear-gradient(100deg, rgba(20, 77, 153, .5), rgba(5, 43, 99, .72));
  color: #fff !important;
  text-align: left;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.landing-assistant__action:hover {
  border-color: rgba(117, 187, 255, .42);
  background: linear-gradient(100deg, rgba(24, 88, 177, .62), rgba(7, 49, 111, .84));
  transform: translateX(2px);
}

.landing-assistant__action-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(31, 121, 255, .18);
  color: #76b9ff;
  font-size: 20px;
}

.landing-assistant__action--whatsapp .landing-assistant__action-icon {
  background: rgba(37, 211, 102, .14);
  color: #42e080;
}

.landing-assistant__action--offer .landing-assistant__action-icon {
  background: rgba(109, 178, 255, .15);
  color: #9bd0ff;
}

.landing-assistant__action strong,
.landing-assistant__action small {
  display: block;
}

.landing-assistant__action strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.landing-assistant__action small {
  overflow: hidden;
  color: rgba(226, 239, 255, .72);
  font-size: 11px;
  font-weight: 450;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-assistant__action-arrow {
  color: rgba(226, 239, 255, .68);
  font-size: 14px;
}

@keyframes landingAssistantPulse {
  0% {
    opacity: .72;
    transform: scale(1);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.36);
  }
}

@media (max-width: 1024px) {
  .landing-assistant {
    right: auto;
    bottom: 12px;
    left: 50%;
    width: 54px;
    height: 54px;
    transform: translateX(-50%);
  }

  .landing-assistant__launcher {
    width: 54px;
    height: 54px;
  }

  .landing-assistant__launcher>.bi {
    font-size: 22px;
  }

  .landing-assistant__bubble {
    --assistant-tail-right: calc(50% - 12px);
    right: auto;
    bottom: 70px;
    left: 50%;
    width: min(306px, calc(100vw - 30px));
    min-height: 70px;
    padding: 8px 17px 8px 8px;
    transform: translate(-50%, 9px) scale(.97);
    transform-origin: center bottom;
  }

  .landing-assistant.is-bubble-visible .landing-assistant__bubble {
    transform: translate(-50%, 0) scale(1);
  }

  .landing-assistant.is-panel-open .landing-assistant__bubble {
    transform: translate(-50%, 8px) scale(.97);
  }

  .landing-assistant__avatar,
  .landing-assistant__avatar img {
    width: 52px;
    height: 52px;
  }

  .landing-assistant__avatar {
    flex-basis: 52px;
  }

  .landing-assistant__bubble-copy {
    font-size: 14px;
    line-height: 1.28;
  }

  .landing-assistant__panel {
    right: auto;
    bottom: 70px;
    left: 50%;
    width: min(342px, calc(100vw - 24px));
    padding: 14px;
    border-radius: 20px;
    transform: translate(-50%, 12px) scale(.97);
    transform-origin: center bottom;
  }

  .landing-assistant.is-panel-open .landing-assistant__panel {
    transform: translate(-50%, 0) scale(1);
  }

  .landing-assistant__panel-head {
    padding-bottom: 10px;
  }

  .landing-assistant__action {
    min-height: 58px;
  }
}

@media (max-width: 359.98px) {
  .landing-assistant__panel {
    padding: 12px;
  }

  .landing-assistant__action {
    grid-template-columns: 40px minmax(0, 1fr) 14px;
    gap: 8px;
    padding: 7px 8px;
  }

  .landing-assistant__action-icon {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .landing-assistant *,
  .landing-assistant *::before,
  .landing-assistant *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}