
.gbcl-wrap {
  --gbcl-primary: #1e5aa8;
  --gbcl-accent: #a10f59;
  --gbcl-background: #ffffff;
  --gbcl-button: #1e5aa8;
  --gbcl-button-text: #ffffff;
  position: relative;
  width: 100%;
  padding: 8px 0;
}

.gbcl-wrap,
.gbcl-wrap * {
  box-sizing: border-box;
}

.gbcl-wrap.elementor-widget-container,
.elementor-widget-shortcode .gbcl-wrap,
.elementor .gbcl-wrap {
  width: 100%;
  max-width: 100%;
}

.gbcl-card {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.99) 0%, var(--gbcl-background) 100%);
  border: 1px solid rgba(30, 90, 168, .10);
  box-shadow: 0 16px 36px rgba(30, 90, 168, .10);
  padding: 18px 26px;
  isolation: isolate;
}

.gbcl-card::before,
.gbcl-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
  opacity: .14;
  filter: blur(10px);
  animation: gbclFloat 10s ease-in-out infinite;
}

.gbcl-card::before {
  width: 200px;
  height: 200px;
  top: -110px;
  right: -60px;
  background: radial-gradient(circle, rgba(30, 90, 168, .8) 0%, rgba(30, 90, 168, 0) 70%);
}

.gbcl-card::after {
  width: 170px;
  height: 170px;
  left: -65px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(161, 15, 89, .75) 0%, rgba(161, 15, 89, 0) 72%);
  animation-delay: -2.5s;
}

.gbcl-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.gbcl-copy,
.gbcl-form {
  min-width: 0;
}

@media (min-width: 992px) {
  .gbcl-wrap {
    margin: 0 auto;
  }

  .gbcl-card {
    padding: 22px 34px;
  }

  .gbcl-card-grid {
    max-width: 1120px;
    margin: 0 auto;
    justify-items: center;
  }

  .gbcl-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .gbcl-form {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
  }

  .gbcl-label,
  .gbcl-disclaimer,
  .gbcl-message,
  .gbcl-subtitle {
    text-align: center;
  }

  .gbcl-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .gbcl-meta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.gbcl-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(30, 90, 168, .08);
  color: var(--gbcl-primary);
  margin-bottom: 10px;
}

.gbcl-title {
  margin: 0 0 6px;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.06;
  color: #173b70;
}

.gbcl-subtitle {
  margin: 0;
  max-width: 700px;
  color: #52637d;
  font-size: 13px;
  line-height: 1.48;
}

.gbcl-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #264b86;
  margin-bottom: 7px;
}

.gbcl-field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.gbcl-wrap input.gbcl-input,
.gbcl-input {
  width: 100%;
  min-height: 46px;
  border-radius: 13px;
  border: 1px solid rgba(30, 90, 168, .18);
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
  padding: 0 14px;
  font-size: 14px;
  color: #163154;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.gbcl-wrap input.gbcl-input:focus,
.gbcl-input:focus {
  outline: none;
  border-color: rgba(30, 90, 168, .55);
  box-shadow: 0 0 0 4px rgba(30, 90, 168, .10);
  transform: translateY(-1px);
}

.gbcl-wrap .gbcl-button,
.gbcl-wrap button.gbcl-button,
.gbcl-wrap button[type="submit"].gbcl-button {
  min-height: 46px;
  min-width: 178px;
  border: none;
  border-radius: 13px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  color: var(--gbcl-button-text);
  background: linear-gradient(135deg, var(--gbcl-button) 0%, var(--gbcl-accent) 100%);
  box-shadow: 0 10px 20px rgba(30, 90, 168, .16);
  transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.gbcl-wrap .gbcl-button:hover,
.gbcl-wrap button.gbcl-button:hover,
.gbcl-wrap button[type="submit"].gbcl-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(30, 90, 168, .2);
}

.gbcl-wrap .gbcl-button:disabled {
  opacity: .7;
  cursor: wait;
}

.gbcl-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin-top: 10px;
  color: #5b6780;
  font-size: 11px;
  line-height: 1.42;
}

.gbcl-consent input {
  margin-top: 2px;
}

.gbcl-meta-row {
  margin-top: 8px;
}

.gbcl-disclaimer {
  margin: 0;
  color: #6f7b93;
  font-size: 11px;
  line-height: 1.45;
}

.gbcl-message {
  display: none;
  margin-top: 8px;
  padding: 9px 11px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.45;
}

.gbcl-message.is-visible {
  display: block;
  animation: gbclFadeUp .32s ease;
}

.gbcl-message.is-success {
  background: rgba(30, 90, 168, .08);
  color: #173b70;
  border: 1px solid rgba(30, 90, 168, .16);
}

.gbcl-message.is-error {
  background: rgba(161, 15, 89, .06);
  color: #7d1d50;
  border: 1px solid rgba(161, 15, 89, .14);
}

.gbcl-hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.gbcl-error-box {
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff2f7;
  border: 1px solid rgba(161, 15, 89, .16);
  color: #7d1d50;
}

@keyframes gbclFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 12px, 0); }
}

@keyframes gbclFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  .gbcl-card {
    max-width: 100%;
    padding: 16px;
  }

  .gbcl-card-grid {
    gap: 16px;
  }

  .gbcl-subtitle {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .gbcl-field-row {
    grid-template-columns: 1fr;
  }

  .gbcl-wrap .gbcl-button {
    width: 100%;
    min-width: 0;
  }
}
