.epts-cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: min(32rem, calc(100vw - 2rem));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  background: rgba(9, 14, 16, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  color: #f8fafc;
  backdrop-filter: blur(14px);
}

.epts-cookie-banner__inner,
.epts-contact-modal__panel {
  padding: 1.1rem;
}

.epts-cookie-banner__eyebrow,
.epts-contact-modal__eyebrow,
.epts-contact-button__eyebrow {
  margin: 0 0 0.35rem;
  color: #5eead4;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.epts-cookie-banner h3,
.epts-contact-modal h3 {
  margin: 0;
  font-size: 1.05rem;
}

.epts-cookie-banner p,
.epts-contact-modal p {
  margin: 0.6rem 0 0;
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.55;
}

.epts-cookie-banner__actions,
.epts-contact-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.epts-ui-button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f8fafc;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  padding: 0.78rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.epts-ui-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.epts-ui-button--primary {
  border-color: rgba(45, 212, 191, 0.4);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.32), rgba(20, 184, 166, 0.16));
}

.epts-ui-button--ghost {
  background: transparent;
}

.epts-ui-link {
  color: #99f6e4;
  text-decoration: none;
}

.epts-ui-link:hover {
  text-decoration: underline;
}

.epts-contact-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 55;
}

.epts-cookie-banner + .epts-contact-fab {
  bottom: 11.5rem;
}

.epts-contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(45, 212, 191, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(9, 14, 16, 0.94), rgba(18, 33, 36, 0.94));
  color: #f8fafc;
  cursor: pointer;
  padding: 0.9rem 1rem 0.9rem 0.95rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.epts-contact-button__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: #5eead4;
  font-size: 1.1rem;
}

.epts-contact-button__text {
  text-align: left;
}

.epts-contact-button__title {
  display: block;
  font-weight: 700;
}

.epts-contact-button__subtitle {
  display: block;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.84rem;
}

.epts-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(8px);
}

.epts-contact-modal.is-open {
  display: flex;
}

.epts-contact-modal__panel {
  width: min(42rem, 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(10, 16, 18, 0.98), rgba(16, 27, 31, 0.98));
  color: #f8fafc;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.epts-contact-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.epts-contact-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.epts-contact-modal__field--full {
  grid-column: 1 / -1;
}

.epts-contact-modal label {
  color: rgba(191, 219, 254, 0.84);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.epts-contact-modal input,
.epts-contact-modal textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  padding: 0.9rem 1rem;
}

.epts-contact-modal textarea {
  min-height: 8rem;
  resize: vertical;
}

.epts-contact-modal input:focus,
.epts-contact-modal textarea:focus {
  outline: none;
  border-color: rgba(45, 212, 191, 0.6);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.16);
}

.epts-contact-modal__status {
  min-height: 1.3rem;
  margin-top: 0.75rem;
  color: #99f6e4;
  font-size: 0.92rem;
}

.epts-contact-modal__status.is-error {
  color: #fca5a5;
}

.epts-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 720px) {
  .epts-cookie-banner,
  .epts-contact-fab {
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
  }

  .epts-cookie-banner {
    bottom: 0.75rem;
  }

  .epts-contact-fab {
    bottom: 0.75rem;
  }

  .epts-cookie-banner + .epts-contact-fab {
    bottom: 14rem;
  }

  .epts-contact-button {
    width: 100%;
    justify-content: center;
  }

  .epts-contact-modal__grid {
    grid-template-columns: 1fr;
  }
}
