.app-shell {
  padding-top: 84px;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(1, 52, 212, 0.08);
  color: #0134d4;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-card {
  overflow: hidden;
  border: 0;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #0134d4 0%, #5f8dff 100%);
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(1, 52, 212, 0.2);
}

.hero-card .card-body {
  position: relative;
}

.hero-note {
  display: inline-block;
  max-width: 42rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: #ffffff;
  color: #0134d4;
}

.hero-card .shape-one,
.hero-card .shape-two {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}

.hero-card .shape-one {
  width: 140px;
  height: 140px;
  right: -35px;
  top: -50px;
  background: #fff;
}

.hero-card .shape-two {
  width: 110px;
  height: 110px;
  left: -30px;
  bottom: -50px;
  background: #8bd3ff;
}

.install-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #fff3cd;
  border: 1px solid rgba(133, 100, 4, 0.15);
}

.install-banner p {
  margin: 0;
}

#installButton {
  white-space: nowrap;
}

.section-card {
  border: 0;
  border-radius: 1.15rem;
  box-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.06);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.section-title .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.85rem;
  background: rgba(1, 52, 212, 0.1);
  color: #0134d4;
}

.choice-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.choice-card input {
  display: none;
}

.choice-card label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 0;
  padding: 0.85rem 0.75rem;
  border: 1px solid #dfe3eb;
  border-radius: 1rem;
  background: #fff;
  color: #3d4451;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.choice-card input:checked + label {
  border-color: #0134d4;
  background: rgba(1, 52, 212, 0.1);
  color: #0134d4;
  box-shadow: 0 0.5rem 1rem rgba(1, 52, 212, 0.12);
}

.small-readonly {
  background-color: #f8faff;
}

.sticky-submit {
  position: sticky;
  bottom: 1rem;
  z-index: 4;
}

.summary-list {
  display: grid;
  gap: 0.55rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.summary-item span:first-child {
  color: #6b7280;
}

.login-actions {
  display: grid;
  gap: 0.75rem;
}

.guest-note {
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: #f8faff;
  border: 1px dashed rgba(1, 52, 212, 0.2);
  color: #5b6472;
  font-size: 0.85rem;
}

@media (max-width: 575.98px) {
  .install-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
