#trustinger-root {
  position: relative;
  z-index: 50;
}

.trustinger-trigger {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  z-index: 1200;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f4c81, #166cb8);
  color: #fff;
  padding: .85rem 1.25rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(15, 76, 129, .35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  cursor: pointer;
  text-align: center;
}

.trustinger-trigger svg { width: 1.1rem; height: 1.1rem; }

#trustinger-root.trustinger-root--footer {
  display: flex;
  justify-content: center;
  padding: .25rem 1rem .75rem;
}

.trustinger-trigger--inline {
  position: static;
  transform: none;
  left: auto;
  bottom: auto;
  width: 100%;
  margin-top: .75rem;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 76, 129, .24);
}

.trustinger-trigger--footer {
  position: static;
  transform: none;
  left: auto;
  bottom: auto;
  margin: 0 auto;
  width: min(100%, 560px);
}

.trustinger-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1300;
  background: rgba(15, 23, 42, .55);
}

.trustinger-overlay.is-open {
  display: grid;
  place-items: center;
}

.trustinger-dialog {
  width: min(920px, calc(100vw - 2rem));
  max-height: min(78vh, 860px);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(2, 6, 23, .35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.trustinger-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #e2e8f0;
}

.trustinger-close {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.trustinger-body {
  padding: 1.1rem;
  overflow: auto;
}

.trustinger-body h1,
.trustinger-body h2,
.trustinger-body h3,
.trustinger-body h4 {
  margin: 0 0 .6rem;
  line-height: 1.3;
  color: #0b2f52;
}

.trustinger-body p {
  margin: 0 0 .8rem;
  line-height: 1.6;
}

.trustinger-body a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.trustinger-body ul,
.trustinger-body ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.trustinger-body li {
  margin: 0 0 .35rem;
}

.trust-content { display: grid; gap: 1rem; font: 400 1rem/1.55 Inter, Arial, sans-serif; color: #0f172a; }
.trust-content-hero { background: linear-gradient(130deg, #f1f5f9, #e2e8f0); border-radius: 14px; padding: 1rem; }
.trust-content-section { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: .9rem; }
.trust-content-section--media img { width: 100%; height: auto; border-radius: 10px; }
.trust-content-cta { display: inline-block; margin-top: .5rem; background: #0f4c81; color: #fff; padding: .55rem .9rem; border-radius: 999px; text-decoration: none; }

.trustinger-package-1 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trustinger-package-1 a {
  display: block;
  line-height: 0;
}

.trustinger-package-1 img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .trustinger-trigger {
    min-width: 95%;
  }
  .trustinger-dialog {
    width: calc(100vw - 1rem);
    max-height: 88vh;
    border-radius: 12px;
  }

  .trustinger-package-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}