:root {
  --brand-blue: #5b1a7a;
  --brand-yellow: #e8c547;
  --text: #0f172a;
  --muted: #475569;
}

/* Minimal “glue” CSS to keep layout consistent even before vendor CSS is mirrored locally */
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none
}

.topbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e5e7eb
}

.topbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px
}

.brand {
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  color: var(--brand-blue)
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap
}

.nav a {
  font-weight: 600;
  color: #0b2d57
}

.navToggle {
  display: none;
  background: var(--brand-blue);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 10px 12px;
  font-weight: 800
}

.navPanel {
  display: none;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 14px 16px
}

.navPanel[data-open="1"] {
  display: block
}

.navPanel a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid #e5e7eb;
  font-weight: 700;
  color: #0b2d57
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px
}

.hero {
  background: var(--brand-blue);
  padding: 28px 0
}

.card {
  background: #fff;
  border: 3px solid var(--brand-yellow);
  border-radius: 10px;
  padding: 18px;
  max-width: 760px;
  margin: 0 auto
}

.card h1 {
  margin: 0 0 12px 0;
  text-align: center
}

.field {
  margin: 14px 0
}

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px
}

.field input[type="text"],
.field input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #b6c6dd;
  border-radius: 6px;
  font-size: 16px
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.check input {
  width: 20px;
  height: 20px;
  margin-top: 2px
}

.btn {
  width: 100%;
  padding: 16px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 800;
  letter-spacing: .3px;
  font-size: 16px;
  cursor: pointer
}

.btn:disabled {
  opacity: .65;
  cursor: not-allowed
}

.hint {
  text-align: center;
  color: #0b2d57;
  margin-top: 10px
}

.form-status {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600
}

.form-status--info {
  background: #e0f2fe;
  color: #075985
}

.form-status--success {
  background: #dcfce7;
  color: #166534
}

.form-status--error {
  background: #fee2e2;
  color: #991b1b
}

.section-title {
  margin: 26px 0 14px 0
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px
}

.campaign {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff
}

.campaign__body {
  padding: 14px
}

.pill {
  display: inline-block;
  background: #eef2ff;
  color: #1e3a8a;
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 12px
}

.price {
  font-weight: 900;
  font-size: 20px;
  margin-top: 10px
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: 12px
}

.actions a {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800
}

.actions .ghost {
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
  background: #fff
}

.actions .solid {
  background: var(--brand-blue);
  color: #fff
}

footer {
  margin-top: 36px;
  border-top: 1px solid #e5e7eb
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 16px;
  color: var(--muted);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.footer__links a {
  color: #0b2d57;
  font-weight: 600
}

@media (max-width: 980px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width: 640px) {
  .nav {
    display: none
  }

  .navToggle {
    display: inline-flex;
    align-items: center;
    gap: 8px
  }

  .grid {
    grid-template-columns: 1fr
  }

  .footer__inner {
    grid-template-columns: 1fr
  }
}